#include <ivfwidget/IvfHandlerBase.h>
Inheritance diagram for CIvfHandlerBase:

Public Member Functions | |
| CIvfHandlerBase () | |
| virtual | ~CIvfHandlerBase () |
| IvfClassInfo ("CIvfHandlerBase", CIvfBase) | |
| bool | isActive () |
| void | deactivate () |
| void | activate () |
Protected Member Functions | |
| virtual void | doDeactivate () |
| virtual void | doActivate () |
Ivf++ 0.9.x introduces a new UI concept called handlers. A handler is a class which implements user interface functionality by automatically attaching event handlers to CIvfWidgetBase derived classes.
Definition at line 41 of file IvfHandlerBase.h.
|
|
Class constructor |
|
|
Class destructor |
|
|
Activate handler When an handler is active it will handle events. Activating a handler will call the virtual method doActivate() for derived classes to handle special conditions when the handler changes it state. |
|
|
Activate handler When an handler is inactive it _not_ handle events. Deactivating a handler will call the virtual method doDeactivate() for derived classes to handle special conditions when the handler changes it state. |
|
|
Return active state |
1.4.6-NO