1 \section{\class{wxSystemOptions
}}\label{wxsystemoptions
}
3 wxSystemOptions stores option/value pairs that wxWidgets itself or
4 applications can use to alter behaviour at run-time. It can be
5 used to optimize behaviour that doesn't deserve a distinct API,
6 but is still important to be able to configure.
8 These options are currently recognised by wxWidgets.
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.
16 In some circumstances the MaskBlt function can be slower than using the fallback code, especially if using
17 DC 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
19 to the current theme's values. Set this to
0 to disable this functionality, for example if you're using
20 more than
16 colours in your tool bitmaps.
}
21 \twocolitem{msw.window.no-clip-children
}{If
1, windows will not automatically get the WS
\_CLIPCHILDREN
22 style. This restores the way windows are refreshed back to the method used in versions of wxWidgets
23 earlier than
2.5.4, and for some complex window hierarchies it can reduce apparent refresh delays. You may
24 still specify wxCLIP
\_CHILDREN for individual windows.
}
25 \twocolitem{msw.notebook.themed-background
}{If set to
0, globally disables themed backgrounds on notebook
26 pages. Note that this won't disable the theme on the actual notebook background (noticeable only if there are no
28 \twocolitem{msw.staticbitmap.htclient
}{If set to
1, allows the static bitmap to respond to mouse
29 events. The default is
0, since a value of
1 can interfere with refresh in static boxes. Note that once set,
30 this option cannot be unset later in the application.
}
31 \twocolitem{msw.window.defersize
}{If set to
1, optimizes window sizing and positioning when a size event is
32 received. This can occasionally have unwanted side-effects, so is off by default.
}
38 \begin{twocollist
}\itemsep=
0pt
39 \twocolitem{{\bf Option
}}{{\bf Value
}}
40 \twocolitem{mac.window-plain-transition
}{If
1, uses a plainer transition when showing
41 a window. You can also use the symbol wxMAC
\_WINDOW\_PLAIN\_TRANSITION.
}
42 \twocolitem{window-default-variant
}{The default variant used by windows (cast to integer from the wxWindowVariant enum).
43 Also known as wxWINDOW
\_DEFAULT\_VARIANT.
}
49 \begin{twocollist
}\itemsep=
0pt
50 \twocolitem{{\bf Option
}}{{\bf Value
}}
51 \twocolitem{mgl.aa-threshold
}{Set this integer option to point
52 size below which fonts are not antialiased. Default:
10.
}
53 \twocolitem{mgl.screen-refresh
}{Screen refresh rate in Hz.
54 A reasonable default is used if not specified.
}
60 \begin{twocollist
}\itemsep=
0pt
61 \twocolitem{{\bf Option
}}{{\bf Value
}}
62 \twocolitem{motif.largebuttons
}{If
1, uses a bigger default size for wxButtons.
}
65 The compile-time option to include or exclude this functionality
66 is wxUSE
\_SYSTEM\_OPTIONS.
68 \wxheading{Derived from
}
70 \helpref{wxObject
}{wxobject
}
72 \wxheading{Include files
}
76 \latexignore{\rtfignore{\wxheading{Members
}}}
79 \membersection{wxSystemOptions::wxSystemOptions
}\label{wxsystemoptionsctor
}
81 \func{}{wxSystemOptions
}{\void}
83 Default constructor. You don't need to create an instance of wxSystemOptions
84 since all of its functions are static.
87 \membersection{wxSystemOptions::GetOption
}\label{wxsystemoptionsgetoption
}
89 \constfunc{wxString
}{GetOption
}{\param{const wxString\&
}{ name
}}
91 Gets an option. The function is case-insensitive to
{\it name
}.
93 Returns empty string if the option hasn't been set.
97 \helpref{wxSystemOptions::SetOption
}{wxsystemoptionssetoption
},
\rtfsp
98 \helpref{wxSystemOptions::GetOptionInt
}{wxsystemoptionsgetoptionint
},
\rtfsp
99 \helpref{wxSystemOptions::HasOption
}{wxsystemoptionshasoption
}
102 \membersection{wxSystemOptions::GetOptionInt
}\label{wxsystemoptionsgetoptionint
}
104 \constfunc{int
}{GetOptionInt
}{\param{const wxString\&
}{ name
}}
106 Gets an option as an integer. The function is case-insensitive to
{\it name
}.
108 If the option hasn't been set, this function returns $
0$.
112 \helpref{wxSystemOptions::SetOption
}{wxsystemoptionssetoption
},
\rtfsp
113 \helpref{wxSystemOptions::GetOption
}{wxsystemoptionsgetoption
},
\rtfsp
114 \helpref{wxSystemOptions::HasOption
}{wxsystemoptionshasoption
}
117 \membersection{wxSystemOptions::HasOption
}\label{wxsystemoptionshasoption
}
119 \constfunc{bool
}{HasOption
}{\param{const wxString\&
}{ name
}}
121 Returns
\true if the given option is present. The function is case-insensitive to
{\it name
}.
125 \helpref{wxSystemOptions::SetOption
}{wxsystemoptionssetoption
},
\rtfsp
126 \helpref{wxSystemOptions::GetOption
}{wxsystemoptionsgetoption
},
\rtfsp
127 \helpref{wxSystemOptions::GetOptionInt
}{wxsystemoptionsgetoptionint
}
130 \membersection{wxSystemOptions::IsFalse
}\label{wxsystemoptionsisfalse
}
132 \constfunc{bool
}{IsFalse
}{\param{const wxString\&
}{ name
}}
134 Returns
\true if the option with the given
\arg{name
} had been set to $
0$
135 value. This is mostly useful for boolean options for which you can't use
136 \texttt{GetOptionInt(name) ==
0} as this would also be true if the option
137 hadn't been set at all.
140 \membersection{wxSystemOptions::SetOption
}\label{wxsystemoptionssetoption
}
142 \func{void
}{SetOption
}{\param{const wxString\&
}{ name
},
\param{const wxString\&
}{ value
}}
144 \func{void
}{SetOption
}{\param{const wxString\&
}{ name
},
\param{int
}{ value
}}
146 Sets an option. The function is case-insensitive to
{\it name
}.
150 \helpref{wxSystemOptions::GetOption
}{wxsystemoptionsgetoption
},
\rtfsp
151 \helpref{wxSystemOptions::GetOptionInt
}{wxsystemoptionsgetoptionint
},
\rtfsp
152 \helpref{wxSystemOptions::HasOption
}{wxsystemoptionshasoption
}