- 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.
-
- 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
+ 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.
+
+ 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