PCL
|
Typedefs | |
using | pcl::Dialog::execute_event_handler = void(Control::*)(Dialog &sender) |
using | pcl::Dialog::return_event_handler = void(Control::*)(Dialog &sender, int retCode) |
Functions | |
void | pcl::Dialog::OnExecute (execute_event_handler handler, Control &receiver) |
void | pcl::Dialog::OnReturn (return_event_handler handler, Control &receiver) |
using pcl::Dialog::execute_event_handler = void (Control::*)( Dialog& sender ) |
using pcl::Dialog::return_event_handler = void (Control::*)( Dialog& sender, int retCode ) |
Defines the prototype of a dialog return event handler.
A dialog return event is generated when a dialog control terminates execution by invoking its Return() member function.
void pcl::Dialog::OnExecute | ( | execute_event_handler | handler, |
Control & | receiver | ||
) |
Sets the execution event handler for this dialog.
handler | The dialog execution event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive execution events from this dialog. |
void pcl::Dialog::OnReturn | ( | return_event_handler | handler, |
Control & | receiver | ||
) |
Sets the return event handler for this dialog.
handler | The dialog return event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive return events from this dialog. |