|
| | Button () |
| | Constructs an empty Button object.
|
| |
| | Button (const Button &button_) |
| | Constructs a new Button object from an existing Button object (copy constructor)
|
| |
| | Button (const Point &loc_, const std::string &title_, const WindowType containerType_) |
| | Constructs a button using a location and window container type; height is fixed.
|
| |
| | Button (const Point &loc_, const std::string &title_, const double width_) |
| | Constructs a button using a location and width; height is fixed.
|
| |
| | Button (const Rect &frame_, const std::string &title_) |
| | Constructs a text button of a specific size.
|
| |
| | Button (const Rect &frame_, const ImageWithRolloverIDs &imageIDs_) |
| | Constructs an image button of a certain size.
|
| |
| | Button (const Rect &frame_, const SVGWithRolloverIDs &svgIDs_, const Size &dims_=Size()) |
| | Constructs an image button of a certain size.
|
| |
| virtual | ~Button () |
| | Button destructor.
|
| |
| virtual Button & | operator= (const Button &rhs_) |
| | Allows one Button object to be assigned from another.
|
| |
| virtual Button * | clone () const |
| | Convenience method to clone a Button object on the heap.
|
| |
| virtual Button * | duplicate () const |
| | Convenience method to duplicate a Button object, creating a new and identical UI element to the target (but not belonging to the same containing window)
|
| |
| virtual std::string | text () const |
| | Gets the current text value of the button.
|
| |
| virtual void | setText (const std::string &text_) |
| | Sets the current text value of the button.
|
| |
| virtual StyleType | style () const |
| | Gets the current button style.
|
| |
| virtual void | setStyle (const StyleType style_) |
| | Sets the style of the button as the default, cancel, or normal button.
|
| |
| virtual void | click () |
| | Simulates a click on the button.
|
| |
| virtual Callback *const | clickCallback () const |
| | Gets the current click callback for the button.
|
| |
| virtual void | setClickCallback (const Callback &callback_) |
| | Sets the click callback for the button.
|
| |
| virtual void | doubleClick () |
| | Simulates a double-click on the button.
|
| |
| virtual Callback *const | doubleClickCallback () const |
| | Gets the current double-click callback for the button.
|
| |
| virtual void | setDoubleClickCallback (const Callback &callback_) |
| | Sets the double-click callback for the button.
|
| |
| virtual ImageWithRolloverIDs | imageIDs () const |
| | Gets the PNGI resource IDs of the widget.
|
| |
| virtual void | setImageIDs (const ImageWithRolloverIDs &ids_) |
| | Sets the PNGI resource IDs of the widget.
|
| |
| virtual SVGWithRolloverIDs | svgIDs () const |
| | Gets the SVG resource IDs of the widget.
|
| |
| virtual void | setSVGIDs (const SVGWithRolloverIDs &ids_) |
| | Sets the SVG resource IDs of the widget.
|
| |
| virtual bool | backgroundRollover () const |
| | Gets whether the background of the button should change in appearance upon mouse-over.
|
| |
| virtual void | setBackgroundRollover (const bool ro_) |
| | Sets whether the background of the button should change in appearance upon mouse-over.
|
| |
| virtual | ~Widget () |
| | Destructs a Widget.
|
| |
| virtual PlatformWidgetPtr | platformWidget () const |
| | Gets the platform-specific widget, around which the target object is wrapped.
|
| |
| virtual bool | isEmpty () const |
| | Gets whether the target Widget object is empty (constructed with the default ctor)
|
| |
| virtual bool | operator== (const Widget &rhs_) const |
| | Tests whether a given Widget object is the same as another.
|
| |
| virtual bool | operator!= (const Widget &rhs_) const |
| | Tests whether a given Widget object is not the same as another.
|
| |
| virtual Type | type () const |
| | Gets the type of the widget.
|
| |
| virtual Window *const | window () const |
| | Gets the parent window of the widget.
|
| |
| virtual Rect | frame () const |
| | Gets the widget frame.
|
| |
| virtual void | setFrame (const Rect &frame_) |
| | Sets the widget frame.
|
| |
| virtual void | offset (const double x_, const double y_) |
| | Offsets the widget from its current location by the given amounts, in 1x resolution coordinates.
|
| |
| virtual bool | enabled () |
| | Gets whether the widget is enabled.
|
| |
| virtual void | setEnabled (const bool enable_) |
| | Enables or disables the widget.
|
| |
| virtual bool | visible () |
| | Gets whether the widget is visible.
|
| |
| virtual void | setVisible (const bool visible_) |
| | Shows or hides the widget.
|
| |
| virtual void | setOrigin (const Point &p_) |
| | Convenience method to set just the origin of the target widget's frame.
|
| |
| virtual void | setSize (const Size &s_) |
| | Convenience method to set just the size of the target widget's frame.
|
| |
| virtual void | setWidth (const double w_) |
| | Convenience method to set just the width of the target widget's frame.
|
| |
| virtual void | setHeight (const double h_) |
| | Convenience method to set just the height of the target widget's frame.
|
| |
| virtual bool | hasFocus () const |
| | Gets whether the widget currently has focus.
|
| |
| virtual void | focus () const |
| | Forces the widget to have focus, taking it from any other focused widget of the same window.
|
| |
| virtual Callback *const | focusCallback () const |
| | Gets the current focus callback for the widget.
|
| |
| virtual void | setFocusCallback (const Callback &callback_) |
| | Sets the focus callback for the widget.
|
| |
| virtual void | blur () const |
| | Removes focus from the widget.
|
| |
| virtual Callback *const | blurCallback () const |
| | Gets the current blur callback for the widget.
|
| |
| virtual void | setBlurCallback (const Callback &callback_) |
| | Sets the blur callback for the widget.
|
| |
| virtual std::string | tooltip () const |
| | Gets the tool tip string for the widget.
|
| |
| virtual void | setTooltip (const std::string &tip_) |
| | Sets the tool tip string for the widget.
|
| |
| virtual void | update () |
| | Force the widget to update (i.e. cause it to redraw)
|
| |
|
| static double | idealHeight (const std::string &text_, const double width_, const WindowType containerType_) |
| | Gets the ideal height for a button, given its title and a known width.
|
| |
| static double | idealWidth (const std::string &text_, const double height_, const WindowType containerType_) |
| | Gets the ideal width for a button, given its title and a known height.
|
| |
| static bool | isCoreWidget (const PlatformWidgetPtr widget_) |
| | Gets whether the given platform widget is a hdi_core widget.
|
| |
| static std::unique_ptr< Widget > | lastClickedWidget () |
| | Gets the last widget that received a click event (either by the user or programmatically)
|
| |
| static std::unique_ptr< Widget > | lastValueChangingWidget () |
| | Gets the last widget that received a value changing event (either by the user or programmatically)
|
| |
| static std::unique_ptr< Widget > | lastValueChangedWidget () |
| | Gets the last widget that received a value changed event (either by the user or programmatically)
|
| |
| static std::unique_ptr< Widget > | lastDropWidget () |
| | Gets the last widget that received a drag-and-drop drop event (either by the user or programmatically)
|
| |
| static std::unique_ptr< Widget > | lastPotentialReorderWidget () |
| | Gets the last widget that received a potential-reorder event.
|
| |
| static std::unique_ptr< Widget > | lastReorderWidget () |
| | Gets the last widget that received a reorder event.
|
| |
Button widget, which can be either the default button, cancel button, or normal button in a dialog, and optionally contain an image.