]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/sysopt.tex
Missing wxWindow member, manual decorations to pure text list of changes.
[wxWidgets.git] / docs / latex / wx / sysopt.tex
... / ...
CommitLineData
1\section{\class{wxSystemOptions}}\label{wxsystemoptions}
2
3wxSystemOptions stores option/value pairs that wxWidgets itself or
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
8These options are currently recognised by wxWidgets:
9
10\twocolwidtha{7cm}
11\begin{twocollist}\itemsep=0pt
12\twocolitem{{\bf Option}}{{\bf Value}}
13\twocolitem{no-maskblt}{1 to never use WIN32's MaskBlt function, 0 to allow it to be used where possible. Default: 0.
14
15In some circumstances the MaskBlt function can be slower than using the fallback code, especially if using
16DC cacheing. By default, MaskBlt will be used where it is implemented by the operating system and driver.
17}
18\twocolitem{mgl.aa-threshold}{(wxMGL only) Set this integer option to point
19size below which fonts are not antialiased. Default: 10.
20}
21\twocolitem{mgl.screen-refresh}{(wxMGL only) Screen refresh rate in Hz.
22Reasonable default is used if not specified.
23}
24\end{twocollist}
25
26The compile-time option to include or exclude this functionality
27is wxUSE\_SYSTEM\_OPTIONS.
28
29\wxheading{Derived from}
30
31\helpref{wxObject}{wxobject}
32
33\wxheading{Include files}
34
35<wx/sysopt.h>
36
37\latexignore{\rtfignore{\wxheading{Members}}}
38
39
40\membersection{wxSystemOptions::wxSystemOptions}\label{wxsystemoptionsctor}
41
42\func{}{wxSystemOptions}{\void}
43
44Default constructor. You don't need to create an instance of wxSystemOptions
45since all of its functions are static.
46
47
48\membersection{wxSystemOptions::GetOption}\label{wxsystemoptionsgetoption}
49
50\constfunc{wxString}{GetOption}{\param{const wxString\&}{ name}}
51
52Gets an option. The function is case-insensitive to {\it name}.
53
54Returns empty string if the option hasn't been set.
55
56\wxheading{See also}
57
58\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
59\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint},\rtfsp
60\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
61
62
63\membersection{wxSystemOptions::GetOptionInt}\label{wxsystemoptionsgetoptionint}
64
65\constfunc{int}{GetOptionInt}{\param{const wxString\&}{ name}}
66
67Gets an option as an integer. The function is case-insensitive to {\it name}.
68
69If the option hasn't been set, this function returns $0$.
70
71\wxheading{See also}
72
73\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
74\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
75\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
76
77
78\membersection{wxSystemOptions::HasOption}\label{wxsystemoptionshasoption}
79
80\constfunc{bool}{HasOption}{\param{const wxString\&}{ name}}
81
82Returns \true if the given option is present. The function is case-insensitive to {\it name}.
83
84\wxheading{See also}
85
86\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
87\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
88\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint}
89
90
91\membersection{wxSystemOptions::SetOption}\label{wxsystemoptionssetoption}
92
93\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{const wxString\&}{ value}}
94
95\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{int}{ value}}
96
97Sets an option. The function is case-insensitive to {\it name}.
98
99\wxheading{See also}
100
101\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
102\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint},\rtfsp
103\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
104