Added explicit information about which functions and macros are declared in what headers from last commit.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
8cd06fb5a2
commit
027c1c27be
@ -671,6 +671,8 @@ wxApp *wxTheApp;
|
|||||||
::wxTheApp pointer is that the latter is of type wxApp* and so wouldn't
|
::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
|
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.
|
not present in wxApp while wxGetApp() returns the object of the right type.
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
wxAppDerivedClass& wxGetApp();
|
wxAppDerivedClass& wxGetApp();
|
||||||
|
|
||||||
@ -688,6 +690,8 @@ wxAppDerivedClass& wxGetApp();
|
|||||||
is 1 and under Windows platform this requires a compiler with support for
|
is 1 and under Windows platform this requires a compiler with support for
|
||||||
SEH (structured exception handling) which currently means only Microsoft
|
SEH (structured exception handling) which currently means only Microsoft
|
||||||
Visual C++ or a recent Borland C++ version.
|
Visual C++ or a recent Borland C++ version.
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
bool wxHandleFatalExceptions(bool doIt = true);
|
bool wxHandleFatalExceptions(bool doIt = true);
|
||||||
|
|
||||||
@ -702,12 +706,16 @@ bool wxHandleFatalExceptions(bool doIt = true);
|
|||||||
|
|
||||||
This function may be called several times but wxUninitialize() must be
|
This function may be called several times but wxUninitialize() must be
|
||||||
called for each successful call to this function.
|
called for each successful call to this function.
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
bool wxInitialize();
|
bool wxInitialize();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This function is for use in console (wxBase) programs only. It must be called
|
This function is for use in console (wxBase) programs only. It must be called
|
||||||
once for each previous successful call to wxInitialize().
|
once for each previous successful call to wxInitialize().
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
void wxUninitialize();
|
void wxUninitialize();
|
||||||
|
|
||||||
@ -718,6 +726,8 @@ void wxUninitialize();
|
|||||||
some other event would get sent. This is also useful for sending events
|
some other event would get sent. This is also useful for sending events
|
||||||
between two threads and is used by the corresponding functions
|
between two threads and is used by the corresponding functions
|
||||||
wxPostEvent() and wxEvtHandler::AddPendingEvent().
|
wxPostEvent() and wxEvtHandler::AddPendingEvent().
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
void wxWakeUpIdle();
|
void wxWakeUpIdle();
|
||||||
|
|
||||||
@ -727,6 +737,8 @@ void wxWakeUpIdle();
|
|||||||
@deprecated
|
@deprecated
|
||||||
This function is kept only for backwards compatibility. Please use
|
This function is kept only for backwards compatibility. Please use
|
||||||
the wxApp::Yield method instead in any new code.
|
the wxApp::Yield method instead in any new code.
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
bool wxYield();
|
bool wxYield();
|
||||||
|
|
||||||
@ -736,6 +748,8 @@ bool wxYield();
|
|||||||
afterwards. If @a win is not @NULL, this window will remain enabled,
|
afterwards. If @a win is not @NULL, this window will remain enabled,
|
||||||
allowing the implementation of some limited user interaction.
|
allowing the implementation of some limited user interaction.
|
||||||
Returns the result of the call to ::wxYield.
|
Returns the result of the call to ::wxYield.
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
bool wxSafeYield(wxWindow* win = NULL, bool onlyIfNeeded = false);
|
bool wxSafeYield(wxWindow* win = NULL, bool onlyIfNeeded = false);
|
||||||
|
|
||||||
@ -749,6 +763,8 @@ bool wxSafeYield(wxWindow* win = NULL, bool onlyIfNeeded = false);
|
|||||||
@note This overload of wxEntry is available under all platforms.
|
@note This overload of wxEntry is available under all platforms.
|
||||||
|
|
||||||
@see wxEntryStart()
|
@see wxEntryStart()
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
int wxEntry(int& argc, wxChar** argv);
|
int wxEntry(int& argc, wxChar** argv);
|
||||||
|
|
||||||
@ -772,6 +788,7 @@ int wxEntry(int& argc, wxChar** argv);
|
|||||||
}
|
}
|
||||||
@endcode
|
@endcode
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
int wxEntry(HINSTANCE hInstance,
|
int wxEntry(HINSTANCE hInstance,
|
||||||
HINSTANCE hPrevInstance = NULL,
|
HINSTANCE hPrevInstance = NULL,
|
||||||
@ -791,6 +808,8 @@ int wxEntry(HINSTANCE hInstance,
|
|||||||
Should only be used in an emergency: normally the top-level frame
|
Should only be used in an emergency: normally the top-level frame
|
||||||
should be deleted (after deleting all other frames) to terminate the
|
should be deleted (after deleting all other frames) to terminate the
|
||||||
application. See wxCloseEvent and wxApp.
|
application. See wxCloseEvent and wxApp.
|
||||||
|
|
||||||
|
@header{wx/app.h}
|
||||||
*/
|
*/
|
||||||
void wxExit();
|
void wxExit();
|
||||||
|
|
||||||
|
@ -1475,6 +1475,8 @@ public:
|
|||||||
see wxImage.
|
see wxImage.
|
||||||
|
|
||||||
@see wxImage, wxImageHandler
|
@see wxImage, wxImageHandler
|
||||||
|
|
||||||
|
@header{wx/image.h}
|
||||||
*/
|
*/
|
||||||
void wxInitAllImageHandlers();
|
void wxInitAllImageHandlers();
|
||||||
|
|
||||||
|
@ -21,6 +21,8 @@
|
|||||||
|
|
||||||
Notice that parameters @c argc and @c argv may be modified by this
|
Notice that parameters @c argc and @c argv may be modified by this
|
||||||
function.
|
function.
|
||||||
|
|
||||||
|
@header{wx/init.h}
|
||||||
*/
|
*/
|
||||||
bool wxEntryStart(int& argc, wxChar** argv);
|
bool wxEntryStart(int& argc, wxChar** argv);
|
||||||
|
|
||||||
@ -32,6 +34,8 @@ bool wxEntryStart(int& argc, wxChar** argv);
|
|||||||
|
|
||||||
@note Under Windows CE platform, and only there, the type of @a pCmdLine is
|
@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.
|
@c wchar_t *, otherwise it is @c char *, even in Unicode build.
|
||||||
|
|
||||||
|
@header{wx/init.h}
|
||||||
*/
|
*/
|
||||||
bool wxEntryStart(HINSTANCE hInstance,
|
bool wxEntryStart(HINSTANCE hInstance,
|
||||||
HINSTANCE hPrevInstance = NULL,
|
HINSTANCE hPrevInstance = NULL,
|
||||||
@ -40,6 +44,8 @@ bool wxEntryStart(HINSTANCE hInstance,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Free resources allocated by a successful call to wxEntryStart().
|
Free resources allocated by a successful call to wxEntryStart().
|
||||||
|
|
||||||
|
@header{wx/init.h}
|
||||||
*/
|
*/
|
||||||
void wxEntryCleanup();
|
void wxEntryCleanup();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user