|
cxWidgets 1.0
|
Holds application setup & exit logic, as well as the application's main frame. More...
#include <cxApp.h>


Public Member Functions | |
| cxApp () | |
| virtual | ~cxApp () |
| virtual long | mainLoop () |
| Enters the main loop. | |
| virtual long | onRun () |
| This virtual function is where the execution of a program written with cxWidgets starts. The default implementation just enters the main loop and starts handling the events until it terminates. | |
| virtual long | run () |
| Synonym for onRun(). | |
| virtual long | onInit () |
| Application initialization & startup commands will go here. | |
| virtual long | onExit () |
| Things to be done upon applicatoin exit will go here. | |
| virtual std::string | cxTypeStr () const override |
| Returns the name of the cxWidgets class. This is overridden. | |
Public Member Functions inherited from cx::cxObject | |
| cxObject () | |
| virtual | ~cxObject () |
| virtual void | beep () |
Additional Inherited Members | |
Static Public Member Functions inherited from cx::cxObject | |
| static bool | UseColors () |
| static void | UseColors (bool useIt) |
| static bool | UseBeeps () |
| static void | UseBeeps (bool useIt) |
Static Protected Attributes inherited from cx::cxObject | |
| static bool | useColors |
| Whether or not to use colors. | |
| static bool | useBeeps |
| Whether or not to enable beeping. | |
Holds application setup & exit logic, as well as the application's main frame.
This class is not finished yet and currently shouldn't be used.
| cx::cxApp::cxApp | ( | ) |
|
virtual |
|
overridevirtual |
Returns the name of the cxWidgets class. This is overridden.
in cxObject-based classes. This can be used to determine
the type of cxWidgets object that deriving classes derive from
in applications.
Reimplemented from cx::cxObject.
|
virtual |
|
virtual |
|
virtual |
Application initialization & startup commands will go here.
References cx::cxID_EXIT.
|
virtual |
This virtual function is where the execution of a program written with cxWidgets starts. The default implementation just enters the main loop and starts handling the events until it terminates.
References cx::cxID_EXIT.
Referenced by run().
|
virtual |