X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3ec4a23f50e12b2e7d780543bc87744d1b4a00b4..d6f582e704041c4b133893183270d4853ea34bac:/docs/latex/wx/app.tex?ds=sidebyside diff --git a/docs/latex/wx/app.tex b/docs/latex/wx/app.tex index b96f27b08d..1c50ac52eb 100644 --- a/docs/latex/wx/app.tex +++ b/docs/latex/wx/app.tex @@ -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} @@ -652,13 +675,16 @@ wxWidgets. \membersection{wxApp::SetUseBestVisual}\label{wxappsetusebestvisual} -\func{void}{SetUseBestVisual}{\param{bool}{ flag}} +\func{void}{SetUseBestVisual}{\param{bool}{ flag}, \param{bool}{ forceTrueColour = false}} Allows the programmer to specify whether the application will use the best visual on systems that support several visual on the same display. This is typically the case under Solaris and IRIX, where the default visual is only 8-bit whereas certain applications are supposed to run in TrueColour mode. +If \arg{forceTrueColour} is true then the application will try to force +using a TrueColour visual and abort the app if none is found. + Note that this function has to be called in the constructor of the {\tt wxApp} instance and won't have any effect when called later on.