PCL
|
Typedefs | |
using | pcl::ViewList::view_event_handler = void(Control::*)(ViewList &sender, View &view) |
Functions | |
void | pcl::ViewList::OnCurrentViewUpdated (view_event_handler handler, Control &receiver) |
void | pcl::ViewList::OnViewSelected (view_event_handler handler, Control &receiver) |
using pcl::ViewList::view_event_handler = void (Control::*)( ViewList& sender, View& view ) |
Defines the prototype of a view event handler.
A view event is generated when the user activates a view item on a ViewList control, or when she changes the current view item in a ViewList control.
sender | The control that sends a view event. |
view | The view whose associated item has been selected or activated. |
Definition at line 274 of file ViewList.h.
void pcl::ViewList::OnCurrentViewUpdated | ( | view_event_handler | handler, |
Control & | receiver | ||
) |
Sets the current view updated event handler for this ViewList control.
handler | The event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive current view updated events from this ViewList. |
void pcl::ViewList::OnViewSelected | ( | view_event_handler | handler, |
Control & | receiver | ||
) |
Sets the view selection event handler of this ViewList control.
handler | The event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive view selection events from this ViewList. |