#include <plucker-desktop.h>
Inheritance diagram for the_app:

Public Methods |
|
| virtual bool | OnInit () |
| Override wxApp base class OnInit() function for startup code. |
|
| virtual int | OnExit () |
| Override base class wxApp's OnExit() function. |
|
| void | set_application_return_code (int return_code) |
| Set the return code returned by application when it terminates. |
|
| wxLocale * | get_application_locale () |
| Accessor. Get a pointer to the locale (tranlation) for the application. |
|
Protected Attributes |
|
| wxLocale | m_locale |
| The locale (translation) the application will be using. |
|
|
|
Accessor. Get a pointer to the locale (tranlation) for the application.
|
|
|
Override base class wxApp's OnExit() function. This code is executed when the application is about to terminate. This is the place to call functions that delete globals, etc.
|
|
|
Override wxApp base class OnInit() function for startup code. This is the 'Main program' equivalent: the program execution "starts" here. The function is called on application startup and is a good place for the app initialization [doing it here and not in the constructor allows to have an error
|