git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52602
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
::wxTheApp pointer is that the latter is of type wxApp* and so wouldn't
allow you to access the functions specific to your application class but
not present in wxApp while wxGetApp() returns the object of the right type.
::wxTheApp pointer is that the latter is of type wxApp* and so wouldn't
allow you to access the functions specific to your application class but
not present in wxApp while wxGetApp() returns the object of the right type.
*/
wxAppDerivedClass& wxGetApp();
*/
wxAppDerivedClass& wxGetApp();
is 1 and under Windows platform this requires a compiler with support for
SEH (structured exception handling) which currently means only Microsoft
Visual C++ or a recent Borland C++ version.
is 1 and under Windows platform this requires a compiler with support for
SEH (structured exception handling) which currently means only Microsoft
Visual C++ or a recent Borland C++ version.
*/
bool wxHandleFatalExceptions(bool doIt = true);
*/
bool wxHandleFatalExceptions(bool doIt = true);
This function may be called several times but wxUninitialize() must be
called for each successful call to this function.
This function may be called several times but wxUninitialize() must be
called for each successful call to this function.
*/
bool wxInitialize();
/**
This function is for use in console (wxBase) programs only. It must be called
once for each previous successful call to wxInitialize().
*/
bool wxInitialize();
/**
This function is for use in console (wxBase) programs only. It must be called
once for each previous successful call to wxInitialize().
*/
void wxUninitialize();
*/
void wxUninitialize();
some other event would get sent. This is also useful for sending events
between two threads and is used by the corresponding functions
wxPostEvent() and wxEvtHandler::AddPendingEvent().
some other event would get sent. This is also useful for sending events
between two threads and is used by the corresponding functions
wxPostEvent() and wxEvtHandler::AddPendingEvent().
@deprecated
This function is kept only for backwards compatibility. Please use
the wxApp::Yield method instead in any new code.
@deprecated
This function is kept only for backwards compatibility. Please use
the wxApp::Yield method instead in any new code.
afterwards. If @a win is not @NULL, this window will remain enabled,
allowing the implementation of some limited user interaction.
Returns the result of the call to ::wxYield.
afterwards. If @a win is not @NULL, this window will remain enabled,
allowing the implementation of some limited user interaction.
Returns the result of the call to ::wxYield.
*/
bool wxSafeYield(wxWindow* win = NULL, bool onlyIfNeeded = false);
*/
bool wxSafeYield(wxWindow* win = NULL, bool onlyIfNeeded = false);
@note This overload of wxEntry is available under all platforms.
@see wxEntryStart()
@note This overload of wxEntry is available under all platforms.
@see wxEntryStart()
*/
int wxEntry(int& argc, wxChar** argv);
*/
int wxEntry(int& argc, wxChar** argv);
*/
int wxEntry(HINSTANCE hInstance,
HINSTANCE hPrevInstance = NULL,
*/
int wxEntry(HINSTANCE hInstance,
HINSTANCE hPrevInstance = NULL,
Should only be used in an emergency: normally the top-level frame
should be deleted (after deleting all other frames) to terminate the
application. See wxCloseEvent and wxApp.
Should only be used in an emergency: normally the top-level frame
should be deleted (after deleting all other frames) to terminate the
application. See wxCloseEvent and wxApp.
see wxImage.
@see wxImage, wxImageHandler
see wxImage.
@see wxImage, wxImageHandler
*/
void wxInitAllImageHandlers();
*/
void wxInitAllImageHandlers();
Notice that parameters @c argc and @c argv may be modified by this
function.
Notice that parameters @c argc and @c argv may be modified by this
function.
*/
bool wxEntryStart(int& argc, wxChar** argv);
*/
bool wxEntryStart(int& argc, wxChar** argv);
@note Under Windows CE platform, and only there, the type of @a pCmdLine is
@c wchar_t *, otherwise it is @c char *, even in Unicode build.
@note Under Windows CE platform, and only there, the type of @a pCmdLine is
@c wchar_t *, otherwise it is @c char *, even in Unicode build.
*/
bool wxEntryStart(HINSTANCE hInstance,
HINSTANCE hPrevInstance = NULL,
*/
bool wxEntryStart(HINSTANCE hInstance,
HINSTANCE hPrevInstance = NULL,
/**
Free resources allocated by a successful call to wxEntryStart().
/**
Free resources allocated by a successful call to wxEntryStart().
*/
void wxEntryCleanup();
*/
void wxEntryCleanup();