|
| enum | StateType { StateMixed = -1
, StateOff = 0
, StateOn = 1
} |
| | Describes the state of a checkbox.
|
| |
| enum | Type {
UnknownType = 0
, BoxType = 10
, ButtonType = 20
, CheckboxType = 30
,
ColumnViewType = 40
, ComboBoxType = 50
, ColorWellType = 60
, CustomType = 70
,
DividerType = 80
, HierarchicalColumnViewType = 85
, HierarchicalViewType = 90
, LabelType = 100
,
ListViewType = 110
, PopupMenuType = 120
, RadioButtonType = 130
, SliderType = 140
,
StepperType = 150
, TextFieldType = 160
, TextViewType = 170
, WebViewType = 180
} |
| | Supported widget types.
|
| |
|
| | Checkbox () |
| | Constructs an empty Checkbox object.
|
| |
| | Checkbox (const Checkbox &checkbox_) |
| | Constructs a new Checkbox object from an existing Checkbox object (copy constructor)
|
| |
| | Checkbox (const Point &loc_, const std::string &label_, const WindowType containerType_, const StateType state_=StateOff) |
| | Constructs a checkbox (using a StateType) and a window container type.
|
| |
| | Checkbox (const Point &loc_, const std::string &label_, const double width_, const StateType state_=StateOff) |
| | Constructs a checkbox (using a StateType)
|
| |
| virtual | ~Checkbox () |
| | Checkbox destructor.
|
| |
| virtual Checkbox & | operator= (const Checkbox &rhs_) |
| | Allows one Checkbox object to be assigned from another.
|
| |
| virtual Checkbox * | clone () const |
| | Convenience method to clone a Checkbox object on the heap.
|
| |
| virtual Checkbox * | duplicate () const |
| | Convenience method to duplicate a Checkbox object, creating a new and identical UI element to the target (but not belonging to the same containing window)
|
| |
| virtual StateType | state () const |
| | Gets the checkbox state.
|
| |
| virtual void | setState (const StateType state_) |
| | Sets the checkbox state.
|
| |
| virtual void | setChecked (const bool checked_) |
| | Alternate setter for the checkbox state.
|
| |
| virtual void | click () |
| | Simulates a click on the checkbox.
|
| |
| virtual Callback *const | clickCallback () const |
| | Gets the current click callback for the checkbox.
|
| |
| virtual void | setClickCallback (const Callback &callback_) |
| | Sets the click callback for the checkbox.
|
| |
| virtual | ~Widget () |
| | Destructs a Widget.
|
| |
| virtual Widget * | clone () const =0 |
| | Convenience method to clone a Widget object in memory, taking its subclass type into account.
|
| |
| virtual Widget * | duplicate () const =0 |
| | Convenience method to duplicate a Widget object, creating a new and identical UI element to the target (but not belonging to the same containing window)
|
| |
| 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 std::string | text () const |
| | Gets the current text value of the widget.
|
| |
| virtual void | setText (const std::string &text_) |
| | Sets the current text value of the widget.
|
| |
| 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 | idealWidth (const std::string &text_, const double height_, const WindowType containerType_) |
| | Gets the ideal width for a checkbox, given its label 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.
|
| |
Checkbox widget, which has both a checkbox "button" and a text label to its right.