]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/sysopt.tex
Removed wxDataViewViewColumn since it is redundant.
[wxWidgets.git] / docs / latex / wx / sysopt.tex
CommitLineData
0cbff120
JS
1\section{\class{wxSystemOptions}}\label{wxsystemoptions}
2
fc2171bd 3wxSystemOptions stores option/value pairs that wxWidgets itself or
0cbff120
JS
4applications can use to alter behaviour at run-time. It can be
5used to optimize behaviour that doesn't deserve a distinct API,
6but is still important to be able to configure.
7
b0dd9c00
JS
8These options are currently recognised by wxWidgets.
9
10\wxheading{Windows}
0cbff120
JS
11
12\twocolwidtha{7cm}
13\begin{twocollist}\itemsep=0pt
14\twocolitem{{\bf Option}}{{\bf Value}}
15\twocolitem{no-maskblt}{1 to never use WIN32's MaskBlt function, 0 to allow it to be used where possible. Default: 0.
0cbff120 16In some circumstances the MaskBlt function can be slower than using the fallback code, especially if using
b0dd9c00
JS
17DC cacheing. By default, MaskBlt will be used where it is implemented by the operating system and driver.}
18\twocolitem{msw.remap}{If 1 (the default), wxToolBar bitmap colours will be remapped
6fdd4565
JS
19to the current theme's values. Set this to 0 to disable this functionality, for example if you're using
20more than 16 colours in your tool bitmaps.}
b0dd9c00
JS
21\twocolitem{msw.window.no-clip-children}{If 1, windows will not automatically get the WS\_CLIPCHILDREN
22style. This restores the way windows are refreshed back to the method used in versions of wxWidgets
23earlier than 2.5.4, and for some complex window hierarchies it can reduce apparent refresh delays. You may
24still specify wxCLIP\_CHILDREN for individual windows.}
25\twocolitem{msw.notebook.themed-background}{If set to 0, globally disables themed backgrounds on notebook
26pages. Note that this won't disable the theme on the actual notebook background (noticeable only if there are no
27pages).}
8e44f3ca
JS
28\twocolitem{msw.staticbox.optimized-paint}{If set to 0, switches off optimized wxStaticBox painting.
29Setting this to 0 causes more flicker, but allows applications to paint graphics on the parent of a static box
30(the optimized refresh causes any such drawing to disappear).}
afcc11bb
VZ
31\twocolitem{msw.display.directdraw}{If set to 1, use DirectDraw-based implementation of
32\helpref{wxDisplay}{wxdisplay}. By default the standard Win32 functions are
33used.}
b0dd9c00
JS
34\end{twocollist}
35
a95a6eb4
VZ
36\wxheading{GTK}
37
38\twocolwidtha{7cm}
39\begin{twocollist}\itemsep=0pt
40\twocolitem{{\bf Option}}{{\bf Value}}
41\twocolitem{gtk.tlw.can-set-transparent}{\helpref{wxTopLevelWindow::CanSetTransparent()}{wxtoplevelwindowcansettransparent}
42method normally tries to detect automatically whether transparency for top
43level windows is currently supported, however this may sometimes fail and this
44option allows to override the automatic detection. Setting it to $1$ makes the
45transparency be always available (setting it can still fail, of course) and
46setting it to $0$ makes it always unavailable.}
9d0e0377
VZ
47\twocolitem{gtk.desktop}{This option can be set to override the default desktop
48environment determination. Supported values are \texttt{GNOME} and \texttt{KDE}.}
a95a6eb4
VZ
49\end{twocollist}
50
b0dd9c00
JS
51\wxheading{Mac}
52
53\twocolwidtha{7cm}
54\begin{twocollist}\itemsep=0pt
55\twocolitem{{\bf Option}}{{\bf Value}}
56\twocolitem{mac.window-plain-transition}{If 1, uses a plainer transition when showing
57a window. You can also use the symbol wxMAC\_WINDOW\_PLAIN\_TRANSITION.}
58\twocolitem{window-default-variant}{The default variant used by windows (cast to integer from the wxWindowVariant enum).
59Also known as wxWINDOW\_DEFAULT\_VARIANT.}
152e99d7 60\twocolitem{mac.listctrl.always\_use\_generic}{Tells wxListCtrl to use the generic
da97b260
KO
61control even when it is capable of using the native control instead.
62Also knwon as wxMAC\_ALWAYS\_USE\_GENERIC\_LISTCTRL.}
b0dd9c00
JS
63\end{twocollist}
64
65\wxheading{MGL}
66
67\twocolwidtha{7cm}
68\begin{twocollist}\itemsep=0pt
69\twocolitem{{\bf Option}}{{\bf Value}}
70\twocolitem{mgl.aa-threshold}{Set this integer option to point
71size below which fonts are not antialiased. Default: 10.}
72\twocolitem{mgl.screen-refresh}{Screen refresh rate in Hz.
73A reasonable default is used if not specified.}
74\end{twocollist}
75
76\wxheading{Motif}
77
78\twocolwidtha{7cm}
79\begin{twocollist}\itemsep=0pt
80\twocolitem{{\bf Option}}{{\bf Value}}
81\twocolitem{motif.largebuttons}{If 1, uses a bigger default size for wxButtons.}
0cbff120
JS
82\end{twocollist}
83
84The compile-time option to include or exclude this functionality
85is wxUSE\_SYSTEM\_OPTIONS.
86
87\wxheading{Derived from}
88
89\helpref{wxObject}{wxobject}
90
91\wxheading{Include files}
92
93<wx/sysopt.h>
94
95\latexignore{\rtfignore{\wxheading{Members}}}
96
82a16d7e 97
08f1d438 98\membersection{wxSystemOptions::wxSystemOptions}\label{wxsystemoptionsctor}
0cbff120
JS
99
100\func{}{wxSystemOptions}{\void}
101
102Default constructor. You don't need to create an instance of wxSystemOptions
103since all of its functions are static.
104
82a16d7e 105
0cbff120
JS
106\membersection{wxSystemOptions::GetOption}\label{wxsystemoptionsgetoption}
107
108\constfunc{wxString}{GetOption}{\param{const wxString\&}{ name}}
109
110Gets an option. The function is case-insensitive to {\it name}.
111
82a16d7e
VZ
112Returns empty string if the option hasn't been set.
113
0cbff120
JS
114\wxheading{See also}
115
116\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
117\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint},\rtfsp
118\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
119
82a16d7e 120
0cbff120
JS
121\membersection{wxSystemOptions::GetOptionInt}\label{wxsystemoptionsgetoptionint}
122
123\constfunc{int}{GetOptionInt}{\param{const wxString\&}{ name}}
124
125Gets an option as an integer. The function is case-insensitive to {\it name}.
126
82a16d7e
VZ
127If the option hasn't been set, this function returns $0$.
128
0cbff120
JS
129\wxheading{See also}
130
131\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
132\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
133\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
134
82a16d7e 135
0cbff120
JS
136\membersection{wxSystemOptions::HasOption}\label{wxsystemoptionshasoption}
137
138\constfunc{bool}{HasOption}{\param{const wxString\&}{ name}}
139
82a16d7e 140Returns \true if the given option is present. The function is case-insensitive to {\it name}.
0cbff120
JS
141
142\wxheading{See also}
143
144\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
145\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
146\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint}
147
82a16d7e 148
8de6b9bb
VZ
149\membersection{wxSystemOptions::IsFalse}\label{wxsystemoptionsisfalse}
150
151\constfunc{bool}{IsFalse}{\param{const wxString\&}{ name}}
152
153Returns \true if the option with the given \arg{name} had been set to $0$
154value. This is mostly useful for boolean options for which you can't use
155\texttt{GetOptionInt(name) == 0} as this would also be true if the option
156hadn't been set at all.
157
158
0cbff120
JS
159\membersection{wxSystemOptions::SetOption}\label{wxsystemoptionssetoption}
160
161\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{const wxString\&}{ value}}
162
163\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{int}{ value}}
164
165Sets an option. The function is case-insensitive to {\it name}.
166
167\wxheading{See also}
168
169\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
170\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint},\rtfsp
171\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
172