]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/txrc.tex
compilation fixed after recent wxHTML changes
[wxWidgets.git] / docs / latex / wx / txrc.tex
CommitLineData
d958c9bd
JS
1\section{XML-based resource system overview}\label{xrcoverview}
2
3Classes: \helpref{wxXmlResource}{wxxmlresource}, \helpref{wxXmlResourceHandler}{wxxmlresourcehandler}
4
bd330a69
JS
5{\bf IMPORTANT NOTE:} XRC is not yet a part of the core wxWindows library, so
6please see the next section for how to compile and link it. Otherwise if you
7try to use it, you will get link errors.
8
d958c9bd
JS
9The XML-based resource system, known as XRC, allows user interface elements such as
10dialogs, menu bars and toolbars, to be stored in text files and loaded into
11the application at run-time. XRC files can also be compiled into binary XRS files or C++
f9363b96
VS
12code (the former makes it possible to store all resources in since file and the latter
13is useful when you want to embed the resources into the executable).
d958c9bd
JS
14
15There are several advantages to using XRC resources.
16
17\begin{itemize}\itemsep=0pt
18\item Recompiling and linking an application is not necessary if the
19resources change.
20\item If you use a dialog designers that generates C++ code, it can be hard
21to reintegrate this into existing C++ code. Separation of resources and code
22is a more elegant solution.
23\item You can choose between different alternative resource files at run time, if necessary.
24\item The XRC format uses sizers for flexibility, allowing dialogs to be resizable
25and highly portable.
26\item The XRC format is a wxWindows standard,
27and can be generated or postprocessed by any program that understands it. As it is based
28on the XML standard, existing XML editors can be used for simple editing purposes.
29\end{itemize}
30
31XRC was written by Vaclav Slavik.
32
33\subsection{Compiling and using XRC}\label{compilingxrc}
34
35XRC can be found under the 'contrib' hierarchy, in the following directories:
36
37\begin{verbatim}
38 contrib/src/xrc ; XRC source
39 contrib/include/wx/xrc ; XRC headers
40 contrib/samples/xrc ; XRC sample
41 contrib/utils/wxrc ; XRC resource compiler
42 contrib/utils/wxrcedit ; XRC editor (in progress)
43\end{verbatim}
44
45To compile XRC:
46
47\begin{itemize}\itemsep=0pt
48\item Under Windows using VC++, open the contrib/src/xrc/XrcVC.dsw project
49and compile. Also compile contrib/utils/wxrc using wxBase if you wish to compile
50resource files.
51\item Under Unix, XRC should be configured when you configured
52wxWindows. Make XRC by changing directory to contrib/src/xrc and
53type 'make'. Similarly compile contrib/utils/wxrc using wxBase if you wish to compile
54resource files. {\bf Note:} there is currently a
55problem with the wxWindows build system that means that
56only the static version of library can be built at present.
57\end{itemize}
58
59To use XRC:
60
61\begin{itemize}\itemsep=0pt
62\item Under Windows using VC++, link with wxxrc[d].lib.
63\item Under Unix, link with libwxxrc[d].a.
64\end{itemize}
65
66\subsection{XRC concepts}\label{xrcconcepts}
67
68These are the typical steps for using XRC files in your application.
69
70\begin{itemize}\itemsep=0pt
71\item Include the appropriate headers: normally "wx/xrc/xmlres.h" will suffice;
f9363b96
VS
72\item If you are going to use \helpref{XRS files}{binaryresourcefiles}, install
73wxFileSystem ZIP handler first with {\tt wxFileSystem::AddHandler(new wxZipFSHandler);}
9ecce691
VS
74\item call {\tt wxXmlResource::Get()->InitAllHandlers()} from your wxApp::OnInit function,
75and then call {\tt wxXmlResource::Get()->Load("myfile.xrc")} to load the resource file;
d958c9bd 76\item to create a dialog from a resource, create it using the default constructor, and then
7af3ca16 77load using for example {\tt wxXmlResource::Get()->LoadDialog(\&dlg, this, "dlg1");}
9ecce691
VS
78\item set up event tables as usual but use the {\tt XRCID(str)} macro to translate from XRC string names
79to a suitable integer identifier, for example {\tt EVT\_MENU(XRCID("quit"), MyFrame::OnQuit)}.
d958c9bd
JS
80\end{itemize}
81
82To create an XRC file, use one of the following methods.
83
7af3ca16 84\begin{itemize}\itemsep=0pt
d958c9bd 85\item Create the file by hand;
d8908b52
JS
86\item use \urlref{wxDesigner}{http://www.roebling.de}, a commercial dialog designer/RAD tool;
87\item use \urlref{XRCed}{http://www.mema.ucl.ac.be/~rolinsky/xrced/}, a wxPython-based
88dialog editor that you can find in the {\tt wxPython/tools} subdirectory of the wxWindows
89CVS archive;
90\item use \urlref{wxWorkshop}{http://wxworkshop.sourceforge.net} (under development);
91\item use wxrcedit ({\tt utils/contrib/wxrcedit}) (under development);
92\item convert WIN32 RC files to XRC with the tool in {\tt contrib/utils/convertrc}.
d958c9bd
JS
93\end{itemize}
94
95It is highly recommended that you use a tool such as wxDesigner, since it's fiddly writing
96XRC files by hand.
97
98You can use \helpref{wxXmlResource::Load}{wxxmlresourceload} in a number of ways.
f9363b96
VS
99You can pass an XRC file (XML-based text resource file)
100or a \helpref{zip-compressed file}{binaryresourcefiles} (extension ZIP or XRS) containing other XRC.
d958c9bd 101
f9363b96 102You can also use \helpref{embedded C++ resources}{embeddedresource}
d958c9bd
JS
103
104\subsection{Using binary resource files}\label{binaryresourcefiles}
105
f9363b96
VS
106To compile binary resource files, use the command-line wxrc utility. It takes one or more file parameters
107(the input XRC files) and the following switches and options:
7af3ca16 108\begin{itemize}\itemsep=0pt
d958c9bd
JS
109\item -h (--help): show a help message
110\item -v (--verbose): show verbose logging information
f9363b96 111\item -c (--cpp-code): write C++ source rather than a XRS file
d958c9bd
JS
112\item -u (--uncompressed): do not compress XML files (C++ only)
113\item -g (--gettext): output .po catalog (to stdout, or a file if -o is used)
114\item -n (--function) <name>: specify C++ function name (use with -c)
115\item -o (--output) <filename>: specify the output file, such as resource.xrs or resource.cpp
116\item -l (--list-of-handlers) <filename>: output a list of necessary handlers to this file
117\end{itemize}
118
119For example:
d958c9bd
JS
120\begin{verbatim}
121 % wxrc resource.wrc
122 % wxrc resource.wrc -o resource.wrs
123 % wxrc resource.wrc -v -c -o resource.cpp
124\end{verbatim}
125
f9363b96
VS
126\wxheading{Note}
127
128XRS file is esentially a renamed ZIP archive which means that you can manipulate
129it with standard ZIP tools. Note that if you are using XRS files, you have
130to initialize \helpref{wxFileSystem}{wxfilesystem} ZIP handler first! It is a simple
131thing to do:
132\begin{verbatim}
133 #include <wx/filesys.h>
134 #include <wx/fs_zip.h>
135 ...
136 wxFileSystem::AddHandler(new wxZipFSHandler);
137\end{verbatim}
138
139\subsection{Using embedded resources}\label{embeddedresource}
140
141It is sometimes useful to embed resources in the executable itself instead
142of loading external file (e.g. when your app is small and consists only of one
143exe file). XRC provides means to convert resources into regular C++ file that
144can be compiled and included in the executable.
145
146Use the {\tt -c} switch to
147{\tt wxrc} utility to produce C++ file with embedded resources. This file will
148contain a function called {\it InitXmlResource} (unless you override this with
149a command line switch). Use it to load the resource:
150\begin{verbatim}
96aba1e9
VS
151 extern void InitXMLResource(); // defined in generated file
152 ...
f9363b96
VS
153 wxXmlResource::Get()->InitAllHandlers();
154 InitXmlResource();
155 ...
156\end{verbatim}
157
d958c9bd
JS
158\subsection{XRC C++ sample}\label{xrccppsample}
159
160This is the C++ source file (xrcdemo.cpp) for the XRC sample.
161
162\begin{verbatim}
88bed4b4 163#include "wx/wx.h"
d958c9bd
JS
164#include "wx/image.h"
165#include "wx/xrc/xmlres.h"
166
d958c9bd
JS
167// the application icon
168#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)
169 #include "rc/appicon.xpm"
170#endif
171
172// ----------------------------------------------------------------------------
173// private classes
174// ----------------------------------------------------------------------------
175
176// Define a new application type, each program should derive a class from wxApp
177class MyApp : public wxApp
178{
179public:
180 // override base class virtuals
181 // ----------------------------
182
183 // this one is called on application startup and is a good place for the app
184 // initialization (doing it here and not in the ctor allows to have an error
185 // return: if OnInit() returns false, the application terminates)
186 virtual bool OnInit();
187};
188
189// Define a new frame type: this is going to be our main frame
190class MyFrame : public wxFrame
191{
192public:
193 // ctor(s)
194 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
195
196 // event handlers (these functions should _not_ be virtual)
197 void OnQuit(wxCommandEvent& event);
198 void OnAbout(wxCommandEvent& event);
199 void OnDlg1(wxCommandEvent& event);
200 void OnDlg2(wxCommandEvent& event);
201
202private:
203 // any class wishing to process wxWindows events must use this macro
204 DECLARE_EVENT_TABLE()
205};
206
207// ----------------------------------------------------------------------------
208// event tables and other macros for wxWindows
209// ----------------------------------------------------------------------------
210
d958c9bd 211BEGIN_EVENT_TABLE(MyFrame, wxFrame)
094eb71a
VS
212 EVT_MENU(XRCID("menu_quit"), MyFrame::OnQuit)
213 EVT_MENU(XRCID("menu_about"), MyFrame::OnAbout)
214 EVT_MENU(XRCID("menu_dlg1"), MyFrame::OnDlg1)
215 EVT_MENU(XRCID("menu_dlg2"), MyFrame::OnDlg2)
d958c9bd
JS
216END_EVENT_TABLE()
217
d958c9bd
JS
218IMPLEMENT_APP(MyApp)
219
d958c9bd
JS
220// ----------------------------------------------------------------------------
221// the application class
222// ----------------------------------------------------------------------------
223
224// 'Main program' equivalent: the program execution "starts" here
225bool MyApp::OnInit()
226{
227 wxImage::AddHandler(new wxGIFHandler);
228 wxXmlResource::Get()->InitAllHandlers();
229 wxXmlResource::Get()->Load("rc/resource.xrc");
230
231 MyFrame *frame = new MyFrame("XML resources demo",
232 wxPoint(50, 50), wxSize(450, 340));
cc81d32f
VS
233 frame->Show(true);
234 return true;
d958c9bd
JS
235}
236
237// ----------------------------------------------------------------------------
238// main frame
239// ----------------------------------------------------------------------------
240
241// frame constructor
242MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
243 : wxFrame((wxFrame *)NULL, -1, title, pos, size)
244{
245 SetIcon(wxICON(appicon));
246
247 SetMenuBar(wxXmlResource::Get()->LoadMenuBar("mainmenu"));
248 SetToolBar(wxXmlResource::Get()->LoadToolBar(this, "toolbar"));
249}
250
d958c9bd 251// event handlers
d958c9bd
JS
252void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
253{
cc81d32f
VS
254 // true is to force the frame to close
255 Close(true);
d958c9bd
JS
256}
257
258void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
259{
260 wxString msg;
261 msg.Printf( _T("This is the about dialog of XML resources demo.\n")
262 _T("Welcome to %s"), wxVERSION_STRING);
263
264 wxMessageBox(msg, "About XML resources demo", wxOK | wxICON_INFORMATION, this);
265}
266
267void MyFrame::OnDlg1(wxCommandEvent& WXUNUSED(event))
268{
269 wxDialog dlg;
270 wxXmlResource::Get()->LoadDialog(&dlg, this, "dlg1");
271 dlg.ShowModal();
272}
273
d958c9bd
JS
274void MyFrame::OnDlg2(wxCommandEvent& WXUNUSED(event))
275{
276 wxDialog dlg;
277 wxXmlResource::Get()->LoadDialog(&dlg, this, "dlg2");
278 dlg.ShowModal();
279}
280\end{verbatim}
281
282\subsection{XRC resource file sample}\label{xrcsample}
283
284This is the XML file (resource.xrc) for the XRC sample.
285
286\begin{verbatim}
287<?xml version="1.0"?>
9ecce691 288<resource version="2.3.0.1">
d958c9bd
JS
289 <object class="wxMenuBar" name="mainmenu">
290 <style>wxMB_DOCKABLE</style>
291 <object class="wxMenu" name="menu_file">
9ecce691 292 <label>_File</label>
d958c9bd
JS
293 <style>wxMENU_TEAROFF</style>
294 <object class="wxMenuItem" name="menu_about">
9ecce691 295 <label>_About...</label>
d958c9bd
JS
296 <bitmap>filesave.gif</bitmap>
297 </object>
298 <object class="separator"/>
299 <object class="wxMenuItem" name="menu_dlg1">
300 <label>Dialog 1</label>
301 </object>
302 <object class="wxMenuItem" name="menu_dlg2">
303 <label>Dialog 2</label>
304 </object>
305 <object class="separator"/>
306 <object class="wxMenuItem" name="menu_quit">
9ecce691 307 <label>E_xit\tAlt-X</label>
d958c9bd
JS
308 </object>
309 </object>
310 </object>
311 <object class="wxToolBar" name="toolbar">
312 <style>wxTB_FLAT|wxTB_DOCKABLE</style>
313 <margins>2,2</margins>
314 <object class="tool" name="menu_open">
315 <bitmap>fileopen.gif</bitmap>
316 <tooltip>Open catalog</tooltip>
317 </object>
318 <object class="tool" name="menu_save">
319 <bitmap>filesave.gif</bitmap>
320 <tooltip>Save catalog</tooltip>
321 </object>
322 <object class="tool" name="menu_update">
323 <bitmap>update.gif</bitmap>
324 <tooltip>Update catalog - synchronize it with sources</tooltip>
325 </object>
326 <separator/>
327 <object class="tool" name="menu_quotes">
328 <bitmap>quotes.gif</bitmap>
329 <toggle>1</toggle>
330 <tooltip>Display quotes around the string?</tooltip>
331 </object>
332 <object class="separator"/>
333 <object class="tool" name="menu_fuzzy">
334 <bitmap>fuzzy.gif</bitmap>
335 <tooltip>Toggled if selected string is fuzzy translation</tooltip>
336 <toggle>1</toggle>
337 </object>
338 </object>
339 <object class="wxDialog" name="dlg1">
340 <object class="wxBoxSizer">
341 <object class="sizeritem">
342 <object class="wxBitmapButton">
343 <bitmap>fuzzy.gif</bitmap>
344 <focus>fileopen.gif</focus>
345 </object>
346 </object>
347 <object class="sizeritem">
348 <object class="wxPanel">
349 <object class="wxStaticText">
350 <label>fdgdfgdfgdfg</label>
351 </object>
352 <style>wxSUNKEN_BORDER</style>
353 </object>
354 <flag>wxALIGN_CENTER</flag>
355 </object>
356 <object class="sizeritem">
357 <object class="wxButton">
358 <label>Buttonek</label>
359 </object>
360 <border>10d</border>
361 <flag>wxALL</flag>
362 </object>
363 <object class="sizeritem">
364 <object class="wxHtmlWindow">
365 <htmlcode>&lt;h1&gt;Hi,&lt;/h1&gt;man</htmlcode>
366 <size>100,45d</size>
367 </object>
368 </object>
369 <object class="sizeritem">
370 <object class="wxNotebook">
371 <object class="notebookpage">
372 <object class="wxPanel">
373 <object class="wxBoxSizer">
374 <object class="sizeritem">
375 <object class="wxHtmlWindow">
376 <htmlcode>Hello, we are inside a &lt;u&gt;NOTEBOOK&lt;/u&gt;...</htmlcode>
377 <size>50,50d</size>
378 </object>
379 <option>1</option>
380 </object>
381 </object>
382 </object>
383 <label>Page</label>
384 </object>
385 <object class="notebookpage">
386 <object class="wxPanel">
387 <object class="wxBoxSizer">
388 <object class="sizeritem">
389 <object class="wxHtmlWindow">
390 <htmlcode>Hello, we are inside a &lt;u&gt;NOTEBOOK&lt;/u&gt;...</htmlcode>
391 <size>50,50d</size>
392 </object>
393 </object>
394 </object>
395 </object>
396 <label>Page 2</label>
397 </object>
398 <usenotebooksizer>1</usenotebooksizer>
399 </object>
400 <flag>wxEXPAND</flag>
401 </object>
402 <orient>wxVERTICAL</orient>
403 </object>
404 </object>
405 <object class="wxDialog" name="dlg2">
406 <object class="wxBoxSizer">
407 <orient>wxVERTICAL</orient>
408 <object class="sizeritem" name="dfgdfg">
409 <object class="wxTextCtrl">
410 <size>200,200d</size>
411 <style>wxTE_MULTILINE|wxSUNKEN_BORDER</style>
412 <value>Hello, this is an ordinary multiline\n textctrl....</value>
413 </object>
414 <option>1</option>
415 <flag>wxEXPAND|wxALL</flag>
416 <border>10</border>
417 </object>
418 <object class="sizeritem">
419 <object class="wxBoxSizer">
420 <object class="sizeritem">
421 <object class="wxButton" name="wxID_OK">
422 <label>Ok</label>
423 <default>1</default>
424 </object>
425 </object>
426 <object class="sizeritem">
427 <object class="wxButton" name="wxID_CANCEL">
428 <label>Cancel</label>
429 </object>
430 <border>10</border>
431 <flag>wxLEFT</flag>
432 </object>
433 </object>
434 <flag>wxLEFT|wxRIGHT|wxBOTTOM|wxALIGN_RIGHT</flag>
435 <border>10</border>
436 </object>
437 </object>
438 <title>Second testing dialog</title>
439 </object>
440</resource>
441\end{verbatim}
442
443\subsection{XRC file format}\label{xrcfileformat}
444
1c0c339c
JS
445Please see Technical Note 14 (docs/tech/tn0014.txt) in your wxWindows
446distribution.
d8908b52
JS
447
448\subsection{Adding new resource handlers}\label{newresourcehandlers}
d958c9bd 449
d8908b52 450Coming soon.
d958c9bd 451