PCL
|
Typedefs | |
using | pcl::Slider::range_event_handler = void(Control::*)(Slider &sender, int minValue, int maxValue) |
using | pcl::SpinBox::range_event_handler = void(Control::*)(SpinBox &sender, int minValue, int maxValue) |
using | pcl::Slider::value_event_handler = void(Control::*)(Slider &sender, int value) |
Functions | |
void | pcl::Slider::OnRangeUpdated (range_event_handler handler, Control &receiver) |
void | pcl::Slider::OnValueUpdated (value_event_handler handler, Control &receiver) |
using pcl::Slider::range_event_handler = void (Control::*)( Slider& sender, int minValue, int maxValue ) |
Defines the prototype of a slider range event handler.
A slider range event is generated when the range of a slider control is changed.
sender | The control that sends a slider range event. |
minValue,maxValue | The current minimum and maximum values of the slider, respectively. |
using pcl::SpinBox::range_event_handler = void (Control::*)( SpinBox& sender, int minValue, int maxValue ) |
Defines the prototype of a spin box range event handler.
A spin box range event is generated when the range of a spin box control is changed.
sender | The control that sends a spin box range event. |
minValue,maxValue | The current minimum and maximum values of the spin box, respectively. |
using pcl::Slider::value_event_handler = void (Control::*)( Slider& sender, int value ) |
void pcl::Slider::OnRangeUpdated | ( | range_event_handler | handler, |
Control & | receiver | ||
) |
Sets the slider range event handler for this Slider control.
handler | The slider range event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive slider range events from this Slider. |
void pcl::Slider::OnValueUpdated | ( | value_event_handler | handler, |
Control & | receiver | ||
) |
Sets the slider value event handler for this Slider control.
handler | The slider value event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive slider value events from this Slider. |