|
xentara-workbench-plugin v1.0.1
The Xentara Workbench Plugin Framework
|
A spin box for entering numeric values. More...
#include <xentara/workbench/bindings/SpinBox.hpp>
Inheritance diagram for xentara::workbench::bindings::SpinBox< Type >:Classes | |
| struct | Options |
| Options for the binding. More... | |
Public Member Functions | |
| template<Bindable< Type > Property> | |
| SpinBox (PropertyController &propertyController, Property &property, Options options) | |
| Constructor that accesses the variable holding a property’s value directly. | |
| template<typename Object , Getter< Type, Object > GetterType, Setter< Type, Object > SetterType> | |
| SpinBox (const PropertyHandle &property, Object &object, GetterType get, SetterType set, Options options) | |
| Constructor that uses a getter and setter to access a property. | |
Public Member Functions inherited from xentara::workbench::bindings::AbstractSpinBox | |
| virtual | ~AbstractSpinBox ()=0 |
| Virtual destructor. | |
A spin box for entering numeric values.
| xentara::workbench::bindings::SpinBox< Type >::SpinBox | ( | PropertyController & | propertyController, |
| Property & | property, | ||
| Options | options | ||
| ) |
Constructor that accesses the variable holding a property’s value directly.
| propertyController | The property controller that manages the property |
| property | A reference to the variable holding the property’s value. |
| options | The binding options |
| xentara::workbench::bindings::SpinBox< Type >::SpinBox | ( | const PropertyHandle & | property, |
| Object & | object, | ||
| GetterType | get, | ||
| SetterType | set, | ||
| Options | options | ||
| ) |
Constructor that uses a getter and setter to access a property.
| property | A handle to the bound property |
| object | The object on which the getter and setter should be called |
| get | The getter function |
| set | The setter function |
| options | The binding options |