|
| | Slider () |
| | Constructs an empty Slider object.
|
| |
| | Slider (const Slider &slider_) |
| | Constructs a new Slider object from an existing Slider object (copy constructor)
|
| |
| | Slider (const Point &loc_, const double value_, const double width_) |
| | Constructs a slider.
|
| |
| virtual | ~Slider () |
| | Slider destructor.
|
| |
| virtual Slider & | operator= (const Slider &rhs_) |
| | Allows one Slider object to be assigned from another.
|
| |
| virtual Slider * | clone () const |
| | Convenience method to clone a Slider object on the heap.
|
| |
| virtual Slider * | duplicate () const |
| | Convenience method to duplicate a Slider object, creating a new and identical UI element to the target (but not belonging to the same containing window)
|
| |
| virtual double | value () const |
| | Gets the current value of the slider.
|
| |
| virtual void | setValue (const double value_) |
| | Sets the current value of the slider.
|
| |
| virtual void | valueChanging () |
| | Simulates the value of the slider changing.
|
| |
| virtual Callback *const | valueChangingCallback () const |
| | Gets the value changing callback for the slider.
|
| |
| virtual void | setValueChangingCallback (const Callback &callback_) |
| | Sets the value changing callback.
|
| |
| 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)
|
| |
|
| 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.
|
| |
| 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.
|
| |
| void * | _impl () const |
| | Internal use only.
|
| |
| | Widget () |
| | Constructs an empty Widget object.
|
| |
| | Widget (const Widget &w_) |
| | Constructs a new Widget object from an existing Widget object (copy constructor)
|
| |
| | Widget (pui::Widget *&) |
| | Internal use only.
|
| |
| virtual Widget & | operator= (const Widget &) |
| | Internal use only.
|
| |
|
void * | _data |
| | Private implementation data.
|
| |
Slider widget, which has a sliding interface to allow for arbitrary value selections from 0.0 to 1.0.