#include <wx/apptrait.h>
Note that wxAppTraits is an abstract class since it contains many pure virtual functions. In fact, by default, wxWidgets creates a wxConsoleAppTraits object for console applications (i.e. those applications linked against wxBase library only - see the Library List page) and a wxGUIAppTraits object for GUI applications. Both these classes are derived by wxAppTraits and represent concrete implementation of the wxAppTraits interface.
Public Member Functions | |
| virtual wxConfigBase * | CreateConfig () |
| virtual wxFontMapper * | CreateFontMapper ()=0 |
| virtual wxLog * | CreateLogTarget ()=0 |
| virtual wxMessageOutput * | CreateMessageOutput ()=0 |
| virtual wxRendererNative * | CreateRenderer ()=0 |
| virtual wxString | GetDesktopEnvironment () const =0 |
| virtual wxStandardPaths & | GetStandardPaths () |
| virtual wxPortId | GetToolkitVersion (int *major=NULL, int *minor=NULL) const =0 |
| virtual bool | HasStderr ()=0 |
| virtual bool | IsUsingUniversalWidgets () const =0 |
| virtual bool | ShowAssertDialog (const wxString &msg)=0 |
| virtual wxConfigBase* wxAppTraits::CreateConfig | ( | ) | [virtual] |
Called by wxWidgets to create the default configuration object for the application. The default version creates a registry-based wxRegConfig class under MSW and wxFileConfig under all other platforms.
The wxApp::GetAppName and wxApp::GetVendorName methods are used to determine the registry key or file name.
| virtual wxFontMapper* wxAppTraits::CreateFontMapper | ( | ) | [pure virtual] |
Creates the global font mapper object used for encodings/charset mapping.
| virtual wxLog* wxAppTraits::CreateLogTarget | ( | ) | [pure virtual] |
| virtual wxMessageOutput* wxAppTraits::CreateMessageOutput | ( | ) | [pure virtual] |
Creates the global object used for printing out messages.
| virtual wxRendererNative* wxAppTraits::CreateRenderer | ( | ) | [pure virtual] |
Returns the renderer to use for drawing the generic controls (return value may be NULL in which case the default renderer for the current platform is used); this is used in GUI mode only and always returns NULL in console.
| virtual wxString wxAppTraits::GetDesktopEnvironment | ( | ) | const [pure virtual] |
This method returns the name of the desktop environment currently running in a Unix desktop. Currently only "KDE" or "GNOME" are supported and the code uses the X11 session protocol vendor name to figure out, which desktop environment is running. The method returns an empty string otherwise and on all other platforms.
| virtual wxStandardPaths& wxAppTraits::GetStandardPaths | ( | ) | [virtual] |
Returns the wxStandardPaths object for the application. It's normally the same for wxBase and wxGUI except in the case of wxMac and wxCocoa.
| virtual wxPortId wxAppTraits::GetToolkitVersion | ( | int * | major = NULL, |
|
| int * | minor = NULL | |||
| ) | const [pure virtual] |
Returns the wxWidgets port ID used by the running program and eventually fills the given pointers with the values of the major and minor digits of the native toolkit currently used.
The version numbers returned are thus detected at run-time and not compile-time (except when this is not possible e.g. wxMotif).
E.g. if your program is using wxGTK port this function will return wxPORT_GTK and put in given pointers the versions of the GTK library in use. See wxPlatformInfo for more details.
| virtual bool wxAppTraits::HasStderr | ( | ) | [pure virtual] |
Returns true if fprintf(stderr) goes somewhere, false otherwise.
| virtual bool wxAppTraits::IsUsingUniversalWidgets | ( | ) | const [pure virtual] |
Returns true if the library was built as wxUniversal. Always returns false for wxBase-only apps.
| virtual bool wxAppTraits::ShowAssertDialog | ( | const wxString & | msg | ) | [pure virtual] |
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.
|
[ top ] |