]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/sysopt.tex
added GetCurrentPage()
[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.aa-threshold}{(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\membersection{wxSystemOptions::wxSystemOptions}\label{wxsystemoptionsctor}
40
41\func{}{wxSystemOptions}{\void}
42
43Default constructor. You don't need to create an instance of wxSystemOptions
44since all of its functions are static.
45
46\membersection{wxSystemOptions::GetOption}\label{wxsystemoptionsgetoption}
47
48\constfunc{wxString}{GetOption}{\param{const wxString\&}{ name}}
49
50Gets an option. The function is case-insensitive to {\it name}.
51
52\wxheading{See also}
53
54\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
55\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint},\rtfsp
56\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
57
58\membersection{wxSystemOptions::GetOptionInt}\label{wxsystemoptionsgetoptionint}
59
60\constfunc{int}{GetOptionInt}{\param{const wxString\&}{ name}}
61
62Gets an option as an integer. The function is case-insensitive to {\it name}.
63
64\wxheading{See also}
65
66\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
67\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
68\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
69
70\membersection{wxSystemOptions::HasOption}\label{wxsystemoptionshasoption}
71
72\constfunc{bool}{HasOption}{\param{const wxString\&}{ name}}
73
74Returns true if the given option is present. The function is case-insensitive to {\it name}.
75
76\wxheading{See also}
77
78\helpref{wxSystemOptions::SetOption}{wxsystemoptionssetoption},\rtfsp
79\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
80\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint}
81
82\membersection{wxSystemOptions::SetOption}\label{wxsystemoptionssetoption}
83
84\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{const wxString\&}{ value}}
85
86\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{int}{ value}}
87
88Sets an option. The function is case-insensitive to {\it name}.
89
90\wxheading{See also}
91
92\helpref{wxSystemOptions::GetOption}{wxsystemoptionsgetoption},\rtfsp
93\helpref{wxSystemOptions::GetOptionInt}{wxsystemoptionsgetoptionint},\rtfsp
94\helpref{wxSystemOptions::HasOption}{wxsystemoptionshasoption}
95