]>
git.saurik.com Git - wxWidgets.git/blob - interface/apptrait.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxAppTraits class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 The @b wxAppTraits class defines various configurable aspects of a wxApp.
14 You can access it using wxApp::GetTraits function and you can
15 create your own wxAppTraits overriding the
16 wxApp::CreateTraits function.
18 By default, wxWidgets creates a @c wxConsoleAppTraits object for console
20 (i.e. those applications linked against wxBase library only - see the
21 @ref overview_librarieslist "Libraries list" page) and a @c wxGUIAppTraits
29 @ref overview_wxappoverview "wxApp overview", wxApp
35 Called by wxWidgets to create the default configuration object for the
36 application. The default version creates a registry-based
37 wxRegConfig class under MSW and
38 wxFileConfig under all other platforms. The
39 wxApp wxApp::GetAppName and
40 wxApp::GetVendorName methods are used to determine the
41 registry key or file name.
43 virtual wxConfigBase
* CreateConfig();
46 Creates the global font mapper object used for encodings/charset mapping.
48 virtual wxFontMapper
* CreateFontMapper();
51 Creates the default log target for the application.
53 virtual wxLog
* CreateLogTarget();
56 Creates the global object used for printing out messages.
58 virtual wxMessageOutput
* CreateMessageOutput();
61 Returns the renderer to use for drawing the generic controls (return value may
63 in which case the default renderer for the current platform is used);
64 this is used in GUI mode only and always returns @NULL in console.
66 NOTE: returned pointer will be deleted by the caller.
68 virtual wxRendererNative
* CreateRenderer();
71 This method returns the name of the desktop environment currently
72 running in a Unix desktop. Currently only "KDE" or "GNOME" are
73 supported and the code uses the X11 session protocol vendor name
74 to figure out, which desktop environment is running. The method
75 returns an empty string otherwise and on all other platforms.
77 virtual wxString
GetDesktopEnvironment();
80 Returns the wxStandardPaths object for the application.
81 It's normally the same for wxBase and wxGUI except in the case of wxMac and
84 virtual wxStandardPaths
GetStandardPaths();
87 Returns the wxWidgets port ID used by the running program and eventually
88 fills the given pointers with the values of the major and minor digits
89 of the native toolkit currently used.
90 The version numbers returned are thus detected at run-time and not compile-time
91 (except when this is not possible e.g. wxMotif).
93 E.g. if your program is using wxGTK port this function will return wxPORT_GTK
95 put in given pointers the versions of the GTK library in use.
97 See wxPlatformInfo for more details.
99 virtual wxPortId
GetToolkitVersion(int * major
= @NULL
,
100 int * minor
= @NULL
);
103 Returns @true if @c fprintf(stderr) goes somewhere, @false otherwise.
105 virtual bool HasStderr();
108 Returns @true if the library was built as wxUniversal. Always returns
109 @false for wxBase-only apps.
111 bool IsUsingUniversalWidgets();
114 Shows the assert dialog with the specified message in GUI mode or just prints
115 the string to stderr in console mode.
117 Returns @true to suppress subsequent asserts, @false to continue as before.
119 virtual bool ShowAssertDialog(const wxString
& msg
);