|
| SliderHandle () |
| Creates and empty slider handle. More...
|
|
| SliderHandle (ThreadedUpdatableSlider *sl, GUIWidget *w, QLCDNumber *lcd=0) |
| create a slider handle More...
|
|
QLCDNumber * | getDisplay () |
| retuns the QLCDNumber that is used as display More...
|
|
void | setMin (int min) |
| set the min value More...
|
|
void | setMax (int max) |
| set the max value More...
|
|
void | setRange (int min, int max) |
| set the range of the slider More...
|
|
void | setValue (int val) |
| set the current value of the slider More...
|
|
void | setAll (int min, int max, int val) |
| sets all parameters of a slider More...
|
|
int | getMin () const |
| returns the current min. of the slider More...
|
|
int | getMax () const |
| returns the current max. of the slider More...
|
|
int | getValue () const |
| returns the current value of the slider More...
|
|
void | operator= (int val) |
| assigns a new value to the slider (equal to setValue) More...
|
|
virtual void | registerCallback (const GUI::Callback &cb, const std::string &events="value") |
| overloaded method for registering callbacks to specific slider events More...
|
|
virtual void | removeCallbacks () |
| empties both callback locations (GUIHandleBase and ThreadedUpdatableSlider) More...
|
|
virtual void | registerCallback (const GUI::Callback &cb, const std::string &events="all") |
| import the other register callback method More...
|
|
virtual void | registerCallback (const GUI::ComplexCallback &cb, const std::string &events="all") |
| import the other register callback method More...
|
|
Public Member Functions inherited from icl::qt::GUIHandle< ThreadedUpdatableSlider > |
const ThreadedUpdatableSlider * | operator * () const |
| use the *-oprator to get the wrapped component (const) More...
|
|
ThreadedUpdatableSlider *& | operator * () |
| use the *-oprator to get the wrapped component (unconst) More...
|
|
ThreadedUpdatableSlider * | operator-> () |
| this can be used for direct access to wrapped type More...
|
|
const ThreadedUpdatableSlider * | operator-> () const |
| this can be used for direct access to wrapped type More...
|
|
bool | isNull () const |
| returns whether wrapped pointer is null or not More...
|
|
void | enable () |
| enables the wrapped GUI component More...
|
|
void | disable () |
| disables the wrapped GUI component More...
|
|
Public Member Functions inherited from icl::qt::GUIHandleBase |
virtual | ~GUIHandleBase () |
| virtual destructor More...
|
|
GUIWidget * | getGUIWidget () |
| returns parent GUIWidget pointer More...
|
|
virtual void | registerCallback (const GUI::ComplexCallback &cb, const std::string &events="all") |
| registers a complex callback on this gui component More...
|
|
virtual void | cb () |
| envokes all registered callbacks More...
|
|