Symbol: CalcView
src/apps/deskcalc/CalcView.cpp
1092
CalcView::_EvaluateThread(void* data)
src/apps/deskcalc/CalcView.cpp
1094
CalcView* calcView = reinterpret_cast<CalcView*>(data);
src/apps/deskcalc/CalcView.cpp
1133
CalcView::_Init(BMessage* settings)
src/apps/deskcalc/CalcView.cpp
1150
CalcView::_LoadSettings(BMessage* archive)
src/apps/deskcalc/CalcView.cpp
1208
CalcView::_ParseCalcDesc(const char** keypadDescription)
src/apps/deskcalc/CalcView.cpp
1248
CalcView::_PressKey(int key)
src/apps/deskcalc/CalcView.cpp
1321
CalcView::_PressKey(const char* label)
src/apps/deskcalc/CalcView.cpp
1330
CalcView::_KeyForLabel(const char* label) const
src/apps/deskcalc/CalcView.cpp
1343
CalcView::_FlashKey(int32 key, uint32 flashFlags)
src/apps/deskcalc/CalcView.cpp
1364
CalcView::_Colorize()
src/apps/deskcalc/CalcView.cpp
1379
CalcView::_CreatePopUpMenu(bool addKeypadModeMenuItems)
src/apps/deskcalc/CalcView.cpp
1420
CalcView::_ExpressionRect() const
src/apps/deskcalc/CalcView.cpp
1431
CalcView::_KeypadRect() const
src/apps/deskcalc/CalcView.cpp
1444
CalcView::_MarkKeypadItems(uint8 keypad_mode)
src/apps/deskcalc/CalcView.cpp
1468
CalcView::_FetchAppIcon(BBitmap* into)
src/apps/deskcalc/CalcView.cpp
1485
CalcView::_IsEmbedded()
src/apps/deskcalc/CalcView.cpp
1492
CalcView::_SetEnabled(bool enable)
src/apps/deskcalc/CalcView.cpp
171
struct CalcView::CalcKey {
src/apps/deskcalc/CalcView.cpp
183
CalcView*
src/apps/deskcalc/CalcView.cpp
184
CalcView::Instantiate(BMessage* archive)
src/apps/deskcalc/CalcView.cpp
189
return new CalcView(archive);
src/apps/deskcalc/CalcView.cpp
193
CalcView::CalcView(BRect frame, rgb_color rgbBaseColor, BMessage* settings)
src/apps/deskcalc/CalcView.cpp
226
CalcView::CalcView(BMessage* archive)
src/apps/deskcalc/CalcView.cpp
260
CalcView::~CalcView()
src/apps/deskcalc/CalcView.cpp
270
CalcView::AttachedToWindow()
src/apps/deskcalc/CalcView.cpp
293
CalcView::MessageReceived(BMessage* message)
src/apps/deskcalc/CalcView.cpp
482
CalcView::Draw(BRect updateRect)
src/apps/deskcalc/CalcView.cpp
589
CalcView::MouseDown(BPoint point)
src/apps/deskcalc/CalcView.cpp
649
CalcView::MouseUp(BPoint point)
src/apps/deskcalc/CalcView.cpp
665
CalcView::KeyDown(const char* bytes, int32 numBytes)
src/apps/deskcalc/CalcView.cpp
720
CalcView::MakeFocus(bool focused)
src/apps/deskcalc/CalcView.cpp
736
CalcView::FrameResized(float width, float height)
src/apps/deskcalc/CalcView.cpp
767
CalcView::Archive(BMessage* archive, bool deep) const
src/apps/deskcalc/CalcView.cpp
774
const_cast<CalcView*>(this)->AddChild(fExpressionTextView);
src/apps/deskcalc/CalcView.cpp
793
CalcView::Cut()
src/apps/deskcalc/CalcView.cpp
801
CalcView::Copy()
src/apps/deskcalc/CalcView.cpp
825
CalcView::Paste(BMessage* message)
src/apps/deskcalc/CalcView.cpp
893
CalcView::SaveSettings(BMessage* archive) const
src/apps/deskcalc/CalcView.cpp
933
CalcView::Evaluate()
src/apps/deskcalc/CalcView.cpp
971
CalcView::FlashKey(const char* bytes, int32 numBytes)
src/apps/deskcalc/CalcView.cpp
982
CalcView::ToggleAutoNumlock(void)
src/apps/deskcalc/CalcView.cpp
990
CalcView::SetDegreeMode(bool degrees)
src/apps/deskcalc/CalcView.cpp
999
CalcView::SetKeypadMode(uint8 mode)
src/apps/deskcalc/CalcView.h
43
class _EXPORT CalcView : public BView {
src/apps/deskcalc/CalcView.h
46
static CalcView* Instantiate(BMessage* archive);
src/apps/deskcalc/CalcView.h
49
CalcView(BRect frame,
src/apps/deskcalc/CalcView.h
52
CalcView(BMessage* archive);
src/apps/deskcalc/CalcView.h
53
virtual ~CalcView();
src/apps/deskcalc/CalcWindow.cpp
48
fCalcView = new CalcView(Frame(), baseColor, settings);
src/apps/deskcalc/CalcWindow.h
17
class CalcView;
src/apps/deskcalc/CalcWindow.h
33
CalcView* View() const { return fCalcView; };
src/apps/deskcalc/CalcWindow.h
36
CalcView* fCalcView;
src/apps/deskcalc/ExpressionTextView.cpp
28
ExpressionTextView::ExpressionTextView(BRect frame, CalcView* calcView)
src/apps/deskcalc/ExpressionTextView.h
18
class CalcView;
src/apps/deskcalc/ExpressionTextView.h
23
CalcView* calcView);
src/apps/deskcalc/ExpressionTextView.h
59
CalcView* fCalcView;