Lines Matching defs:CalcView

14 #include "CalcView.h"
52 #define B_TRANSLATION_CONTEXT "CalcView"
74 // Basic mode size limits are defined in CalcView.h so
171 struct CalcView::CalcKey {
183 CalcView*
184 CalcView::Instantiate(BMessage* archive)
186 if (!validate_instantiation(archive, "CalcView"))
189 return new CalcView(archive);
193 CalcView::CalcView(BRect frame, rgb_color rgbBaseColor, BMessage* settings)
226 CalcView::CalcView(BMessage* archive)
260 CalcView::~CalcView()
270 CalcView::AttachedToWindow()
293 CalcView::MessageReceived(BMessage* message)
482 CalcView::Draw(BRect updateRect)
589 CalcView::MouseDown(BPoint point)
649 CalcView::MouseUp(BPoint point)
665 CalcView::KeyDown(const char* bytes, int32 numBytes)
720 CalcView::MakeFocus(bool focused)
736 CalcView::FrameResized(float width, float height)
767 CalcView::Archive(BMessage* archive, bool deep) const
774 const_cast<CalcView*>(this)->AddChild(fExpressionTextView);
786 ret = archive->AddString("class", "CalcView");
793 CalcView::Cut()
801 CalcView::Copy()
825 CalcView::Paste(BMessage* message)
893 CalcView::SaveSettings(BMessage* archive) const
933 CalcView::Evaluate()
971 CalcView::FlashKey(const char* bytes, int32 numBytes)
982 CalcView::ToggleAutoNumlock(void)
990 CalcView::SetDegreeMode(bool degrees)
999 CalcView::SetKeypadMode(uint8 mode)
1092 CalcView::_EvaluateThread(void* data)
1094 CalcView* calcView = reinterpret_cast<CalcView*>(data);
1133 CalcView::_Init(BMessage* settings)
1150 CalcView::_LoadSettings(BMessage* archive)
1176 puts("Missing rgbBaseColor from CalcView archive!\n");
1188 puts("Missing expression text from CalcView archive.\n");
1208 CalcView::_ParseCalcDesc(const char** keypadDescription)
1248 CalcView::_PressKey(int key)
1321 CalcView::_PressKey(const char* label)
1330 CalcView::_KeyForLabel(const char* label) const
1343 CalcView::_FlashKey(int32 key, uint32 flashFlags)
1364 CalcView::_Colorize()
1379 CalcView::_CreatePopUpMenu(bool addKeypadModeMenuItems)
1420 CalcView::_ExpressionRect() const
1431 CalcView::_KeypadRect() const
1444 CalcView::_MarkKeypadItems(uint8 keypad_mode)
1468 CalcView::_FetchAppIcon(BBitmap* into)
1482 // Returns whether or not CalcView is embedded somewhere, most likely
1485 CalcView::_IsEmbedded()
1492 CalcView::_SetEnabled(bool enable)