prototype fixes (this time including pure virtual function detection)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52771 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-24 22:17:25 +00:00
parent f270e1ddda
commit d2aa927a57
12 changed files with 115 additions and 111 deletions

View File

@@ -10,14 +10,18 @@
@class wxAppTraits
@wxheader{apptrait.h}
The @b wxAppTraits class defines various configurable aspects of a wxApp.
You can access it using wxApp::GetTraits function and you can create your
own wxAppTraits overriding the wxApp::CreateTraits function.
The wxAppTraits class defines various configurable aspects of a wxApp.
You can access it using wxApp::GetTraits() function and you can create your
own wxAppTraits overriding the wxApp::CreateTraits() function.
By default, wxWidgets creates a @c wxConsoleAppTraits object for console
applications (i.e. those applications linked against wxBase library only -
see the @ref page_libs page) and a @c wxGUIAppTraits object for GUI
Note that wxAppTraits is an abstract class since it contains many
pure virtual functions.
In fact, by default, wxWidgets creates a @c wxConsoleAppTraits object for
console applications (i.e. those applications linked against wxBase library
only - see the @ref page_libs page) and a @c wxGUIAppTraits object for GUI
applications.
Both these classes are derived by wxAppTraits and represent concrete
implementation of the wxAppTraits interface.
@library{wxbase}
@category{appmanagement}
@@ -40,7 +44,7 @@ public:
/**
Creates the global font mapper object used for encodings/charset mapping.
*/
virtual wxFontMapper* CreateFontMapper();
virtual wxFontMapper* CreateFontMapper() = 0;
/**
Creates a wxLog class for the application to use for logging errors.
@@ -48,12 +52,12 @@ public:
@see wxLog
*/
virtual wxLog* CreateLogTarget();
virtual wxLog* CreateLogTarget() = 0;
/**
Creates the global object used for printing out messages.
*/
virtual wxMessageOutput* CreateMessageOutput();
virtual wxMessageOutput* CreateMessageOutput() = 0;
/**
Returns the renderer to use for drawing the generic controls (return
@@ -63,7 +67,7 @@ public:
@note the returned pointer needs to be deleted by the caller.
*/
virtual wxRendererNative* CreateRenderer();
virtual wxRendererNative* CreateRenderer() = 0;
/**
This method returns the name of the desktop environment currently
@@ -72,7 +76,7 @@ public:
to figure out, which desktop environment is running. The method
returns an empty string otherwise and on all other platforms.
*/
virtual wxString GetDesktopEnvironment() const;
virtual wxString GetDesktopEnvironment() const = 0;
/**
Returns the wxStandardPaths object for the application.
@@ -98,24 +102,24 @@ public:
and put in given pointers the versions of the GTK library in use.
See wxPlatformInfo for more details.
*/
virtual wxPortId GetToolkitVersion(int* major = NULL, int* minor = NULL) const;
virtual wxPortId GetToolkitVersion(int* major = NULL, int* minor = NULL) const = 0;
/**
Returns @true if @c fprintf(stderr) goes somewhere, @false otherwise.
*/
virtual bool HasStderr();
virtual bool HasStderr() = 0;
/**
Returns @true if the library was built as wxUniversal.
Always returns @false for wxBase-only apps.
*/
virtual bool IsUsingUniversalWidgets() const;
virtual bool IsUsingUniversalWidgets() const = 0;
/**
Shows the assert dialog with the specified message in GUI mode or just prints
the string to stderr in console mode.
Returns @true to suppress subsequent asserts, @false to continue as before.
*/
virtual bool ShowAssertDialog(const wxString& msg);
virtual bool ShowAssertDialog(const wxString& msg) = 0;
};