]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/apptraits.tex
More docs.
[wxWidgets.git] / docs / latex / wx / apptraits.tex
index 9e97999a2828cd287e9619fe1c62f0a54b16b679..6c15c18363e2641f2a793683cf0a8cc91201004a 100644 (file)
@@ -36,38 +36,37 @@ None
 \latexignore{\rtfignore{\wxheading{Members}}}
 
 
-\membersection{wxAppTraits::GetToolkitVersion}\label{wxapptraitsgettoolkitversion}
+\membersection{wxAppTraits::CreateFontMapper}\label{wxapptraitscreatefontmapper}
 
-\func{virtual wxPortId}{GetToolkitVersion}{\param{int *}{major = NULL}, \param{int *}{minor = NULL}}
+\func{virtual wxFontMapper *}{CreateFontMapper}{\void}
 
-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.
+Creates the global font mapper object used for encodings/charset mapping.
 
-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 \helpref{wxPlatformInfo}{wxplatforminfo} for more details.
 
+\membersection{wxAppTraits::CreateLogTarget}\label{wxapptraitscreatelogtarget}
 
+\func{virtual wxLog *}{CreateLogTarget}{\void}
 
-\membersection{wxAppTraits::HasStderr}\label{wxapptraitshasstderr}
+Creates the default log target for the application.
 
-\func{virtual bool}{HasStderr}{\void}
 
-Returns \true if {\tt fprintf(stderr)} goes somewhere, \false otherwise.
+\membersection{wxAppTraits::CreateMessageOutput}\label{wxapptraitscreatemessageoutput}
 
+\func{virtual wxMessageOutput *}{CreateMessageOutput}{\void}
 
+Creates the global object used for printing out messages.
 
-\membersection{wxAppTraits::ShowAssertDialog}\label{wxapptraitsshowassertdialog}
 
-\func{virtual bool}{ShowAssertDialog}{\param{const wxString \&}{ msg}}
+\membersection{wxAppTraits::CreateRenderer}\label{wxapptraitscreaterenderer}
 
-Shows the assert dialog with the specified message in GUI mode or just prints
-the string to stderr in console mode.
+\func{virtual wxRendererNative *}{CreateRenderer}{\void}
 
-Returns \true to suppress subsequent asserts, \false to continue as before.
+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.
 
+NOTE: returned pointer will be deleted by the caller.
 
 
 \membersection{wxAppTraits::GetStandardPaths}\label{wxapptraitsgetstandardpaths}
@@ -77,40 +76,40 @@ Returns \true to suppress subsequent asserts, \false to continue as before.
 Returns the wxStandardPaths object for the application.
 It's normally the same for wxBase and wxGUI except in the case of wxMac and wxCocoa.
 
+\membersection{wxAppTraits::GetToolkitVersion}\label{wxapptraitsgettoolkitversion}
 
+\func{virtual wxPortId}{GetToolkitVersion}{\param{int *}{major = NULL}, \param{int *}{minor = NULL}}
 
-\membersection{wxAppTraits::CreateRenderer}\label{wxapptraitscreaterenderer}
-
-\func{virtual wxRendererNative *}{CreateRenderer}{\void}
-
-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.
-
-NOTE: returned pointer will be deleted by the caller.
-
-
+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.
 
-\membersection{wxAppTraits::CreateLogTarget}\label{wxapptraitscreatelogtarget}
+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.
 
-\func{virtual wxLog *}{CreateLogTarget}{\void}
+See \helpref{wxPlatformInfo}{wxplatforminfo} for more details.
 
-Creates the default log target for the application.
 
+\membersection{wxAppTraits::HasStderr}\label{wxapptraitshasstderr}
 
+\func{virtual bool}{HasStderr}{\void}
 
-\membersection{wxAppTraits::CreateMessageOutput}\label{wxapptraitscreatemessageoutput}
+Returns \true if {\tt fprintf(stderr)} goes somewhere, \false otherwise.
 
-\func{virtual wxMessageOutput *}{CreateMessageOutput}{\void}
 
-Creates the global object used for printing out messages.
+\membersection{wxAppTraits::IsUsingUniversalWidgets}\label{wxapptraitsisusinguniversalwidgets}
 
+\constfunc{bool}{IsUsingUniversalWidgets}{\void}
 
+Returns \true if the library was built as wxUniversal. Always returns
+\false for wxBase-only apps.
 
-\membersection{wxAppTraits::CreateFontMapper}\label{wxapptraitscreatefontmapper}
 
-\func{virtual wxFontMapper *}{CreateFontMapper}{\void}
+\membersection{wxAppTraits::ShowAssertDialog}\label{wxapptraitsshowassertdialog}
 
-Creates the global font mapper object used for encodings/charset mapping.
+\func{virtual bool}{ShowAssertDialog}{\param{const wxString \&}{ msg}}
 
+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.