]> git.saurik.com Git - wxWidgets.git/commitdiff
documentation for wxAppTraits (patch 1518295 from Francesco)
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 24 Jul 2006 18:20:18 +0000 (18:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 24 Jul 2006 18:20:18 +0000 (18:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40288 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/app.tex
docs/latex/wx/apptraits.tex [new file with mode: 0644]
docs/latex/wx/classes.tex

index b96f27b08ddb449c07de71d41df1a9100aa2275e..76e50a1c1e9fc419573d74361a6d4506a76c4081 100644 (file)
@@ -74,6 +74,18 @@ implementation returns a new wxLogGui class.
 \helpref{wxLog}{wxlog}
 
 
+\membersection{wxApp::CreateTraits}\label{wxappcreatetraits}
+
+\func{virtual wxAppTraits *}{CreateTraits}{\void}
+
+Creates the \helpref{wxAppTraits}{wxapptraits} object when \helpref{GetTraits}{wxappgettraits}
+needs it for the first time.
+
+\wxheading{See also}
+
+\helpref{wxAppTraits}{wxapptraits}
+
+
 \membersection{wxApp::Dispatch}\label{wxappdispatch}
 
 \func{virtual void}{Dispatch}{\void}
@@ -178,6 +190,17 @@ function will find the first top-level window (frame or dialog) and return that.
 \helpref{SetTopWindow}{wxappsettopwindow}
 
 
+
+\membersection{wxApp::GetTraits}\label{wxappgettraits}
+
+\func{wxAppTraits *}{GetTraits}{\void}
+
+Returns a pointer to the \helpref{wxAppTraits}{wxapptraits} object for the application.
+If you want to customize the \helpref{wxAppTraits}{wxapptraits} object, you must override the
+\helpref{CreateTraits}{wxappcreatetraits} function.
+
+
+
 \membersection{wxApp::GetUseBestVisual}\label{wxappgetusebestvisual}
 
 \constfunc{bool}{GetUseBestVisual}{\void}
diff --git a/docs/latex/wx/apptraits.tex b/docs/latex/wx/apptraits.tex
new file mode 100644 (file)
index 0000000..f50a1c0
--- /dev/null
@@ -0,0 +1,109 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Name:        apptraits.tex
+%% Purpose:     wxAppTraits
+%% Author:      Francesco Montorsi
+%% Modified by:
+%% Created:     5-7-2006
+%% RCS-ID:      $Id$
+%% Copyright:   (c) wxWidgets Team
+%% License:     wxWindows license
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\section{\class{wxAppTraits}}\label{wxapptraits}
+
+The {\bf wxAppTraits} class defines various configurable aspects of a \helpref{wxApp}{wxapp}.
+You can access it using \helpref{wxApp::GetTraits}{wxappgettraits} function and you can
+create your own \helpref{wxAppTraits}{wxapptraits} overriding the
+\helpref{wxApp::CreateTraits}{wxappcreatetraits} function.
+
+By default, wxWidgets creates a {\tt wxConsoleAppTraits} object for console applications
+(i.e. those applications linked against wxBase library only - see the
+\helpref{Libraries list}{librarieslist} page) and a {\tt wxGUIAppTraits} object for GUI
+applications.
+
+\wxheading{Derived from}
+
+None
+
+\wxheading{Include files}
+
+<wx/apptrait.h>
+
+\wxheading{See also}
+
+\helpref{wxApp overview}{wxappoverview}, \helpref{wxApp}{wxapp}
+
+\latexignore{\rtfignore{\wxheading{Members}}}
+
+
+\membersection{wxAppTraits::GetToolkitInfo}\label{wxapptraitsgettoolkitinfo}
+
+\func{virtual wxToolkitInfo \&}{GetToolkitInfo}{\void}
+
+Returns information about which toolkit is running. See \helpref{wxToolkitInfo}{wxtoolkitinfo}
+for more details.
+
+
+\membersection{wxAppTraits::HasStderr}\label{wxapptraitshasstderr}
+
+\func{virtual bool}{HasStderr}{\void}
+
+Returns \true if {\tt fprintf(stderr)} goes somewhere, \false otherwise.
+
+
+
+\membersection{wxAppTraits::ShowAssertDialog}\label{wxapptraitsshowassertdialog}
+
+\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.
+
+
+
+\membersection{wxAppTraits::GetStandardPaths}\label{wxapptraitsgetstandardpaths}
+
+\func{virtual wxStandardPaths \&}{GetStandardPaths}{\void}
+
+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::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.
+
+
+
+\membersection{wxAppTraits::CreateLogTarget}\label{wxapptraitscreatelogtarget}
+
+\func{virtual wxLog *}{CreateLogTarget}{\void}
+
+Creates the default log target for the application.
+
+
+
+\membersection{wxAppTraits::CreateMessageOutput}\label{wxapptraitscreatemessageoutput}
+
+\func{virtual wxMessageOutput *}{CreateMessageOutput}{\void}
+
+Creates the global object used for printing out messages.
+
+
+
+\membersection{wxAppTraits::CreateFontMapper}\label{wxapptraitscreatefontmapper}
+
+\func{virtual wxFontMapper *}{CreateFontMapper}{\void}
+
+Creates the global font mapper object used for encodings/charset mapping.
+
+
index 30138b1fb6dcc22789c11b8cd12fd51627792090..befff7981cf9704dc059aaeff52955c4b4c1f766 100644 (file)
@@ -11,6 +11,7 @@
 \input activexcontainer.tex
 \input activexevt.tex
 \input app.tex
+\input apptraits.tex
 \input archive.tex
 \input array.tex
 \input arrstrng.tex