PCL
|
Typedefs | |
using | pcl::SpinBox::value_event_handler = void(Control::*)(SpinBox &sender, int value) |
Functions | |
void | pcl::SpinBox::OnRangeUpdated (range_event_handler handler, Control &receiver) |
void | pcl::SpinBox::OnValueUpdated (value_event_handler handler, Control &receiver) |
using pcl::SpinBox::value_event_handler = void (Control::*)( SpinBox& sender, int value ) |
void pcl::SpinBox::OnRangeUpdated | ( | range_event_handler | handler, |
Control & | receiver | ||
) |
Sets the slider range event handler for this SpinBox 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 SpinBox. |
void pcl::SpinBox::OnValueUpdated | ( | value_event_handler | handler, |
Control & | receiver | ||
) |
Sets the spin box value event handler for this SpinBox control.
handler | The spin box value event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive spin box value events from this SpinBox. |