]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/xmlres.tex
mention that Wait() relocks the mutex before returning (patch 1482390)
[wxWidgets.git] / docs / latex / wx / xmlres.tex
... / ...
CommitLineData
1%
2% automatically generated by HelpGen $Revision$ from
3% xmlres.h at 22/Jan/02 23:08:28
4%
5
6\section{\class{wxXmlResource}}\label{wxxmlresource}
7
8This is the main class for interacting with the XML-based resource system.
9
10The class holds XML resources from one or more .xml files, binary files or zip archive files.
11
12See \helpref{XML-based resource system overview}{xrcoverview} for details.
13
14\wxheading{Derived from}
15
16\helpref{wxObject}{wxobject}
17
18\wxheading{Include files}
19
20<wx/xrc/xmlres.h>
21
22\wxheading{Constants}
23
24\begin{verbatim}
25enum wxXmlResourceFlags
26{
27 wxXRC_USE_LOCALE = 1,
28 wxXRC_NO_SUBCLASSING = 2,
29 wxXRC_NO_RELOADING = 4
30};
31\end{verbatim}
32
33\latexignore{\rtfignore{\wxheading{Members}}}
34
35
36\membersection{wxXmlResource::wxXmlResource}\label{wxxmlresourcector}
37
38\func{}{wxXmlResource}{\param{const wxString\& }{filemask}, \param{int }{flags = wxXRC\_USE\_LOCALE}}
39
40Constructor.
41
42\docparam{filemask}{The XRC file, archive file, or wildcard specification that will be used to
43load all resource files inside a zip archive.}
44
45\docparam{flags}{wxXRC\_USE\_LOCALE: translatable strings will be translated via \_().
46wxXRC\_NO\_SUBCLASSING: subclass property of object nodes will be ignored
47(useful for previews in XRC editors).}
48
49\func{}{wxXmlResource}{\param{int }{flags = wxXRC\_USE\_LOCALE}}
50
51Constructor.
52
53\docparam{flags}{wxXRC\_USE\_LOCALE: translatable strings will be translated via \_().
54wxXRC\_NO\_SUBCLASSING: subclass property of object nodes will be ignored
55(useful for previews in XRC editors). wxXRC\_NO\_RELOADING will prevent the
56XRC files from being reloaded from disk in case they have been modified there
57since being last loaded (may slightly speed up loading them).}
58
59
60\membersection{wxXmlResource::\destruct{wxXmlResource}}\label{wxxmlresourcedtor}
61
62\func{}{\destruct{wxXmlResource}}{\void}
63
64Destructor.
65
66
67\membersection{wxXmlResource::AddHandler}\label{wxxmlresourceaddhandler}
68
69\func{void}{AddHandler}{\param{wxXmlResourceHandler* }{handler}}
70
71Initializes only a specific handler (or custom handler). Convention says
72that the handler name is equal to the control's name plus 'XmlHandler', for example
73wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. The XML resource compiler
74(wxxrc) can create include file that contains initialization code for
75all controls used within the resource.
76
77
78\membersection{wxXmlResource::AttachUnknownControl}\label{wxxmlresourceattachunknowncontrol}
79
80\func{bool}{AttachUnknownControl}{\param{const wxString\& }{name}, \param{wxWindow* }{control}, \param{wxWindow* }{parent = NULL}}
81
82Attaches an unknown control to the given panel/window/dialog.
83Unknown controls are used in conjunction with <object class="unknown">.
84
85
86\membersection{wxXmlResource::ClearHandlers}\label{wxxmlresourceclearhandlers}
87
88\func{void}{ClearHandlers}{\void}
89
90Removes all handlers.
91
92
93\membersection{wxXmlResource::CompareVersion}\label{wxxmlresourcecompareversion}
94
95\constfunc{int}{CompareVersion}{\param{int }{major}, \param{int }{minor}, \param{int }{release}, \param{int }{revision}}
96
97Compares the XRC version to the argument. Returns -1 if the XRC version
98is less than the argument, +1 if greater, and 0 if they equal.
99
100
101\membersection{wxXmlResource::Get}\label{wxxmlresourceget}
102
103\func{wxXmlResource*}{Get}{\void}
104
105Gets the global resources object or creates one if none exists.
106
107
108\membersection{wxXmlResource::GetFlags}\label{wxxmlresourcegetflags}
109
110\func{int}{GetFlags}{\void}
111
112Returns flags, which may be a bitlist of wxXRC\_USE\_LOCALE and wxXRC\_NO\_SUBCLASSING.
113
114
115\membersection{wxXmlResource::GetVersion}\label{wxxmlresourcegetversion}
116
117\constfunc{long}{GetVersion}{\void}
118
119Returns version information (a.b.c.d = d+ 256*c + 256\textasciicircum2*b + 256\textasciitilde3*a).
120
121
122\membersection{wxXmlResource::GetXRCID}\label{wxxmlresourcegetxmlid}
123
124\func{int}{GetXRCID}{\param{const wxChar* }{str\_id}, \param{int }{value\_if\_not\_found = -2}}
125
126Returns a numeric ID that is equivalent to the string ID used in an XML
127resource. If an unknown \arg{str\_id} is requested (i.e. other than wxID\_XXX
128or integer), a new record is created which associates the given string with
129a number. If \arg{value\_if\_not\_found} is \texttt{wxID\_NONE}, the number is obtained via
130\helpref{wxNewId()}{wxnewid}. Otherwise \arg{value\_if\_not\_found} is used.
131Macro {\tt XRCID(name)} is provided for convenient use in event tables.
132
133\membersection{wxXmlResource::InitAllHandlers}\label{wxxmlresourceinitallhandlers}
134
135\func{void}{InitAllHandlers}{\void}
136
137Initializes handlers for all supported controls/windows. This will
138make the executable quite big because it forces linking against
139most of the wxWidgets library.
140
141
142\membersection{wxXmlResource::Load}\label{wxxmlresourceload}
143
144\func{bool}{Load}{\param{const wxString\& }{filemask}}
145
146Loads resources from XML files that match given filemask.
147This method understands VFS (see filesys.h).
148
149
150\membersection{wxXmlResource::LoadBitmap}\label{wxxmlresourceloadbitmap}
151
152\func{wxBitmap}{LoadBitmap}{\param{const wxString\& }{name}}
153
154Loads a bitmap resource from a file.
155
156
157\membersection{wxXmlResource::LoadDialog}\label{wxxmlresourceloaddialog}
158
159\func{wxDialog*}{LoadDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{name}}
160
161Loads a dialog. {\it dlg} points to a parent window (if any).
162
163\func{bool}{LoadDialog}{\param{wxDialog* }{dlg}, \param{wxWindow* }{parent}, \param{const wxString\& }{name}}
164
165Loads a dialog. {\it dlg} points to parent window (if any).
166
167This form is used to finish creation of an already existing instance (the main reason
168for this is that you may want to use derived class with a new event table).
169
170Example:
171
172\begin{verbatim}
173 MyDialog dlg;
174 wxTheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog");
175 dlg->ShowModal();
176\end{verbatim}
177
178
179\membersection{wxXmlResource::LoadFrame}\label{wxxmlresourceloadframe}
180
181\func{bool}{LoadFrame}{\param{wxFrame* }{frame}, \param{wxWindow* }{parent}, \param{const wxString\& }{name}}
182
183Loads a frame.
184
185
186\membersection{wxXmlResource::LoadIcon}\label{wxxmlresourceloadicon}
187
188\func{wxIcon}{LoadIcon}{\param{const wxString\& }{name}}
189
190Loads an icon resource from a file.
191
192
193\membersection{wxXmlResource::LoadMenu}\label{wxxmlresourceloadmenu}
194
195\func{wxMenu*}{LoadMenu}{\param{const wxString\& }{name}}
196
197Loads menu from resource. Returns NULL on failure.
198
199
200\membersection{wxXmlResource::LoadMenuBar}\label{wxxmlresourceloadmenubar}
201
202\func{wxMenuBar*}{LoadMenuBar}{\param{wxWindow* }{parent}, \param{const wxString\& }{name}}
203
204Loads a menubar from resource. Returns NULL on failure.
205
206\func{wxMenuBar*}{LoadMenuBar}{\param{const wxString\& }{name}}
207
208Loads a menubar from resource. Returns NULL on failure.
209
210
211\membersection{wxXmlResource::LoadPanel}\label{wxxmlresourceloadpanel}
212
213\func{wxPanel*}{LoadPanel}{\param{wxWindow* }{parent}, \param{const wxString\& }{name}}
214
215Loads a panel. {\it panel} points to parent window (if any).
216
217\func{bool}{LoadPanel}{\param{wxPanel* }{panel}, \param{wxWindow* }{parent}, \param{const wxString\& }{name}}
218
219Loads a panel. {\it panel} points to parent window (if any). This form
220is used to finish creation of an already existing instance.
221
222
223\membersection{wxXmlResource::LoadToolBar}\label{wxxmlresourceloadtoolbar}
224
225\func{wxToolBar*}{LoadToolBar}{\param{wxWindow* }{parent}, \param{const wxString\& }{name}}
226
227Loads a toolbar.
228
229
230\membersection{wxXmlResource::Set}\label{wxxmlresourceset}
231
232\func{wxXmlResource*}{Set}{\param{wxXmlResource* }{res}}
233
234Sets the global resources object and returns a pointer to the previous one (may be NULL).
235
236
237\membersection{wxXmlResource::SetFlags}\label{wxxmlresourcesetflags}
238
239\func{void}{SetFlags}{\param{int }{flags}}
240
241Sets flags (bitlist of wxXRC\_USE\_LOCALE and wxXRC\_NO\_SUBCLASSING).
242
243
244\membersection{wxXmlResource::Unload}\label{wxxmlresourceunload}
245
246\func{bool}{Unload}{\param{const wxString\& }{filename}}
247
248This function unloads a resource previously loaded by
249\helpref{Load()}{wxxmlresourceload}.
250
251Returns \true if the resource was successfully unloaded and \false if it hasn't
252been found in the list of loaded resources.
253