Lines Matching refs:BAlert

12 //!	BAlert displays a modal alert window.
72 _BAlertFilter_(BAlert* Alert);
78 BAlert* fAlert;
96 BAlert::BAlert()
106 BAlert::BAlert(const char *title, const char *text, const char *button1,
117 BAlert::BAlert(const char *title, const char *text, const char *button1,
128 BAlert::BAlert(BMessage* data)
156 BAlert::~BAlert()
165 BAlert::Instantiate(BMessage* data)
167 if (!validate_instantiation(data, "BAlert"))
170 return new(std::nothrow) BAlert(data);
175 BAlert::Archive(BMessage* data, bool deep) const
208 BAlert::Type() const
215 BAlert::SetType(alert_type type)
222 BAlert::SetText(const char* text)
229 BAlert::SetIcon(BBitmap* bitmap)
236 BAlert::SetButtonSpacing(button_spacing spacing)
243 BAlert::SetButtonWidth(button_width width)
250 BAlert::SetShortcut(int32 index, char key)
258 BAlert::Shortcut(int32 index) const
268 BAlert::Go()
314 BAlert::Go(BInvoker* invoker)
324 BAlert::MessageReceived(BMessage* msg)
357 BAlert::FrameResized(float newWidth, float newHeight)
364 BAlert::AddButton(const char* label, char key)
379 BAlert::CountButtons() const
386 BAlert::ButtonAt(int32 index) const
396 BAlert::TextView() const
403 BAlert::ResolveSpecifier(BMessage* msg, int32 index,
411 BAlert::GetSupportedSuites(BMessage* data)
418 BAlert::DispatchMessage(BMessage* msg, BHandler* handler)
425 BAlert::Quit()
432 BAlert::QuitRequested()
440 BAlert::AlertPosition(float width, float height)
463 BAlert::Perform(perform_code code, void* _data)
468 BAlert::SetLayout(data->layout);
476 void BAlert::_ReservedAlert1() {}
477 void BAlert::_ReservedAlert2() {}
478 void BAlert::_ReservedAlert3() {}
482 BAlert::_Init(const char* text, const char* button0, const char* button1,
526 BAlert::_CreateTypeIcon()
560 FTRACE((stderr, "BAlert::_CreateTypeIcon() - No memory for bitmap\n"));
573 BAlert::_CreateButton(int32 which, const char* label)
591 BAlert::_Prepare()
653 // Hidden by BAlert::AlertPosition()
769 _BAlertFilter_::_BAlertFilter_(BAlert* alert)