]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xmlres.h
better native font support for wxGTK
[wxWidgets.git] / include / wx / xrc / xmlres.h
CommitLineData
56d2f750
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xmlres.h
3// Purpose: XML resources
4// Author: Vaclav Slavik
5// Created: 2000/03/05
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_XMLRES_H_
12#define _WX_XMLRES_H_
13
14#ifdef __GNUG__
15#pragma interface "xmlres.h"
16#endif
17
18#include "wx/defs.h"
19#include "wx/string.h"
20#include "wx/dynarray.h"
21#include "wx/datetime.h"
22#include "wx/list.h"
23#include "wx/gdicmn.h"
792064e9
VS
24#include "wx/filesys.h"
25#include "wx/bitmap.h"
26#include "wx/icon.h"
56d2f750 27
999d9a9f 28#include "wx/xrc/xml.h"
ea89ec17 29
1ad83f6b
VS
30class WXDLLEXPORT wxMenu;
31class WXDLLEXPORT wxMenuBar;
32class WXDLLEXPORT wxDialog;
33class WXDLLEXPORT wxPanel;
34class WXDLLEXPORT wxWindow;
1486ed87 35class WXDLLEXPORT wxFrame;
792064e9 36class WXDLLEXPORT wxToolBar;
56d2f750 37
ea89ec17 38class WXXMLDLLEXPORT wxXmlResourceHandler;
56d2f750 39
56d2f750 40
1ce70313
VS
41// These macros indicate current version of XML resources (this information is
42// encoded in root node of XRC file as "version" property).
43//
44// Rules for increasing version number:
45// - change it only if you made incompatible change to the format. Addition of new
46// attribute to control handler is _not_ incompatible change, because older
47// versions of the library may ignore it.
48// - if you change version number, follow these steps:
49// - set major, minor and release numbers to respective version numbers of
50// the wxWindows library (see wx/version.h)
51// - reset revision to 0 unless the first three are same as before, in which
52// case you should increase revision by one
53#define WX_XMLRES_CURRENT_VERSION_MAJOR 2
54#define WX_XMLRES_CURRENT_VERSION_MINOR 3
55#define WX_XMLRES_CURRENT_VERSION_RELEASE 0
56#define WX_XMLRES_CURRENT_VERSION_REVISION 1
57#define WX_XMLRES_CURRENT_VERSION_STRING "2.3.0.1"
58
59#define WX_XMLRES_CURRENT_VERSION \
60 (WX_XMLRES_CURRENT_VERSION_MAJOR * 256*256*256 + \
61 WX_XMLRES_CURRENT_VERSION_MINOR * 256*256 + \
62 WX_XMLRES_CURRENT_VERSION_RELEASE * 256 + \
63 WX_XMLRES_CURRENT_VERSION_REVISION)
56d2f750 64
ea89ec17 65class WXXMLDLLEXPORT wxXmlResourceDataRecord
56d2f750 66{
eb8671f2
VS
67public:
68 wxXmlResourceDataRecord() : Doc(NULL), Time(wxDateTime::Now()) {}
69 ~wxXmlResourceDataRecord() {delete Doc;}
70
71 wxString File;
72 wxXmlDocument *Doc;
73 wxDateTime Time;
56d2f750
VS
74};
75
ea89ec17
RD
76
77#ifdef WXXMLISDLL
1ad83f6b 78WX_DECLARE_EXPORTED_OBJARRAY(wxXmlResourceDataRecord, wxXmlResourceDataRecords);
ea89ec17
RD
79#else
80WX_DECLARE_OBJARRAY(wxXmlResourceDataRecord, wxXmlResourceDataRecords);
81#endif
56d2f750 82
daa85ee3
VS
83enum wxXmlResourceFlags
84{
85 wxXRC_USE_LOCALE = 1,
86 wxXRC_NO_SUBCLASSING = 2
87};
ea89ec17
RD
88
89// This class holds XML resources from one or more .xml files
56d2f750 90// (or derived forms, either binary or zipped -- see manual for
ea89ec17 91// details).
ea89ec17 92class WXXMLDLLEXPORT wxXmlResource : public wxObject
56d2f750 93{
eb8671f2 94public:
daa85ee3
VS
95 // Ctor.
96 // Flags: wxXRC_USE_LOCALE
97 // translatable strings will be translated via _()
98 // wxXRC_NO_SUBCLASSING
99 // subclass property of object nodes will be ignored
100 // (useful for previews in XRC editors)
101 wxXmlResource(int flags = wxXRC_USE_LOCALE);
102 wxXmlResource(const wxString& filemask, int flags = wxXRC_USE_LOCALE);
eb8671f2 103 ~wxXmlResource();
824e8eaa 104
eb8671f2
VS
105 // Loads resources from XML files that match given filemask.
106 // This method understands VFS (see filesys.h).
107 bool Load(const wxString& filemask);
108
109 // Initialize handlers for all supported controls/windows. This will
110 // make the executable quite big because it forces linking against
111 // most of wxWin library
112 void InitAllHandlers();
113
114 // Initialize only specific handler (or custom handler). Convention says
115 // that handler name is equal to control's name plus 'XmlHandler', e.g.
116 // wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. XML resource compiler
ea89ec17 117 // (xmlres) can create include file that contains initialization code for
eb8671f2
VS
118 // all controls used within the resource.
119 void AddHandler(wxXmlResourceHandler *handler);
120
121 // Removes all handlers
122 void ClearHandlers();
123
124 // Loads menu from resource. Returns NULL on failure.
125 wxMenu *LoadMenu(const wxString& name);
126
127 // Loads menubar from resource. Returns NULL on failure.
4a1b9596
VS
128 wxMenuBar *LoadMenuBar(wxWindow *parent, const wxString& name);
129 wxMenuBar *LoadMenuBar(const wxString& name) { return LoadMenuBar(NULL, name); }
56d2f750 130
792064e9 131#if wxUSE_TOOLBAR
eb8671f2
VS
132 // Loads toolbar
133 wxToolBar *LoadToolBar(wxWindow *parent, const wxString& name);
792064e9
VS
134#endif
135
eb8671f2
VS
136 // Loads dialog. dlg points to parent window (if any). Second form
137 // is used to finish creation of already existing instance (main reason
138 // for this is that you may want to use derived class with new event table)
139 // Example (typical usage):
140 // MyDialog dlg;
141 // wxTheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog");
142 // dlg->ShowModal();
143 wxDialog *LoadDialog(wxWindow *parent, const wxString& name);
144 bool LoadDialog(wxDialog *dlg, wxWindow *parent, const wxString& name);
145
146 // Loads panel. panel points to parent window (if any). Second form
147 // is used to finish creation of already existing instance.
148 wxPanel *LoadPanel(wxWindow *parent, const wxString& name);
149 bool LoadPanel(wxPanel *panel, wxWindow *parent, const wxString& name);
150
151 bool LoadFrame(wxFrame* frame, wxWindow *parent, const wxString& name);
152
153 // Loads bitmap or icon resource from file:
154 wxBitmap LoadBitmap(const wxString& name);
155 wxIcon LoadIcon(const wxString& name);
ea89ec17 156
e6c3f404
VS
157 // Attaches unknown control into given panel/window/dialog:
158 // (unknown controls are used in conjunction with <object class="unknown">)
159 bool AttachUnknownControl(const wxString& name, wxWindow *control,
160 wxWindow *parent = NULL);
eb8671f2
VS
161
162 // Returns numeric ID that is equivalent to string id used in XML
163 // resource. To be used in event tables
164 // Macro XMLID is provided for convenience
00393283 165 static int GetXMLID(const wxChar *str_id);
ea89ec17 166
1ce70313
VS
167 // Returns version info (a.b.c.d = d+ 256*c + 256^2*b + 256^3*a)
168 long GetVersion() const { return m_version; }
ea89ec17 169
1ce70313
VS
170 // Compares resources version to argument. Returns -1 if resources version
171 // is less than the argument, +1 if greater and 0 if they equal.
172 int CompareVersion(int major, int minor, int release, int revision) const
ea89ec17 173 { return GetVersion() -
1ce70313 174 (major*256*256*256 + minor*256*256 + release*256 + revision); }
824e8eaa
VS
175
176 // Singleton accessors:
177
178 // Gets global resources object or create one if none exists
179 static wxXmlResource *Get();
180 // Sets global resources object and returns pointer to previous one (may be NULL).
181 static wxXmlResource *Set(wxXmlResource *res);
eb8671f2
VS
182
183protected:
184 // Scans resources list for unloaded files and loads them. Also reloads
185 // files that have been modified since last loading.
186 void UpdateResources();
187
188 // Finds resource (calls UpdateResources) and returns node containing it
47793ab8
VS
189 wxXmlNode *FindResource(const wxString& name, const wxString& classname, bool recursive = FALSE);
190 wxXmlNode *DoFindResource(wxXmlNode *parent, const wxString& name, const wxString& classname, bool recursive);
eb8671f2
VS
191
192 // Creates resource from info in given node:
193 wxObject *CreateResFromNode(wxXmlNode *node, wxObject *parent, wxObject *instance = NULL);
194
daa85ee3 195 int GetFlags() { return m_flags; }
eb8671f2
VS
196
197private:
1ce70313 198 long m_version;
ea89ec17 199
daa85ee3 200 int m_flags;
eb8671f2
VS
201 wxList m_handlers;
202 wxXmlResourceDataRecords m_data;
792064e9 203#if wxUSE_FILESYSTEM
eb8671f2
VS
204 wxFileSystem m_curFileSystem;
205 wxFileSystem& GetCurFileSystem() { return m_curFileSystem; }
792064e9
VS
206#endif
207
eb8671f2 208 friend class wxXmlResourceHandler;
824e8eaa
VS
209
210 // singleton instance:
211 static wxXmlResource *ms_instance;
56d2f750
VS
212};
213
214
824e8eaa
VS
215// This is here only for backward compatibility. Do NOT use!!
216#define wxTheXmlResource wxXmlResource::Get()
56d2f750
VS
217
218// This macro translates string identifier (as used in XML resource,
219// e.g. <menuitem id="my_menu">...</menuitem>) to integer id that is needed by
220// wxWindows event tables.
221// Example:
222// BEGIN_EVENT_TABLE(MyFrame, wxFrame)
223// EVT_MENU(XMLID("quit"), MyFrame::OnQuit)
224// EVT_MENU(XMLID("about"), MyFrame::OnAbout)
225// EVT_MENU(XMLID("new"), MyFrame::OnNew)
226// EVT_MENU(XMLID("open"), MyFrame::OnOpen)
ea89ec17 227// END_EVENT_TABLE()
45a24817
VS
228
229#define XMLID(str_id) \
a559d708 230 wxXmlResource::GetXMLID(wxT(str_id))
45a24817
VS
231
232
45a24817
VS
233// This macro returns pointer to particular control in dialog
234// created using XML resources. You can use it to set/get values from
235// controls.
236// Example:
237// wxDialog dlg;
238// wxTheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog");
a559d708 239// XMLCTRL(dlg, "my_textctrl", wxTextCtrl)->SetValue(wxT("default value"));
45a24817 240
9c9fc51b
VS
241#ifdef __WXDEBUG__
242#define XMLCTRL(window, id, type) \
243 (wxDynamicCast((window).FindWindow(XMLID(id)), type))
244#else
45a24817
VS
245#define XMLCTRL(window, id, type) \
246 ((type*)((window).FindWindow(XMLID(id))))
9c9fc51b 247#endif
56d2f750
VS
248
249
ea89ec17 250class WXXMLDLLEXPORT wxXmlResourceHandler : public wxObject
56d2f750 251{
eb8671f2
VS
252public:
253 wxXmlResourceHandler();
254 virtual ~wxXmlResourceHandler() {}
255
256 // Creates object (menu, dialog, control, ...) from XML node.
257 // Should check for validity.
258 // parent is higher-level object (usually window, dialog or panel)
259 // that is often neccessary to create resource
260 // if instance != NULL it should not create new instance via 'new' but
261 // rather use this one and call its Create method
ea89ec17 262 wxObject *CreateResource(wxXmlNode *node, wxObject *parent,
eb8671f2
VS
263 wxObject *instance);
264
265 // This one is called from CreateResource after variables
266 // were filled
267 virtual wxObject *DoCreateResource() = 0;
268
269 // Returns TRUE if it understands this node and can create
270 // resource from it, FALSE otherwise.
271 virtual bool CanHandle(wxXmlNode *node) = 0;
272
273 void SetParentResource(wxXmlResource *res) { m_resource = res; }
274
275
276protected:
277
278 wxXmlResource *m_resource;
279 wxArrayString m_styleNames;
280 wxArrayInt m_styleValues;
281
282 // Variables (filled by CreateResource)
283 wxXmlNode *m_node;
284 wxString m_class;
285 wxObject *m_parent, *m_instance;
286 wxWindow *m_parentAsWindow, *m_instanceAsWindow;
287
288 // --- Handy methods:
289
290 // Returns true if the node has property class equal to classname,
291 // e.g. <object class="wxDialog">
292 bool IsOfClass(wxXmlNode *node, const wxString& classname)
293 { return node->GetPropVal(wxT("class"), wxEmptyString) == classname; }
294
295 // Gets node content from wxXML_ENTITY_NODE
296 // (the problem is, <tag>content<tag> is represented as
297 // wxXML_ENTITY_NODE name="tag", content=""
ea89ec17 298 // |-- wxXML_TEXT_NODE or
eb8671f2
VS
299 // wxXML_CDATA_SECTION_NODE name="" content="content"
300 wxString GetNodeContent(wxXmlNode *node);
301
302 // Check to see if a param exists
ea89ec17 303 bool HasParam(const wxString& param);
eb8671f2
VS
304
305 // Finds the node or returns NULL
306 wxXmlNode *GetParamNode(const wxString& param);
307 wxString GetParamValue(const wxString& param);
308
309 // Add style flag (e.g. wxMB_DOCKABLE) to list of flags
310 // understood by this handler
311 void AddStyle(const wxString& name, int value);
312
313 // Add styles common to all wxWindow-derived classes
314 void AddWindowStyles();
315
316 // Gets style flags from text in form "flag | flag2| flag3 |..."
317 // Only understads flags added with AddStyle
318 int GetStyle(const wxString& param = wxT("style"), int defaults = 0);
319
320 // Gets text from param and does some convertions:
321 // - replaces \n, \r, \t by respective chars (according to C syntax)
322 // - replaces $ by & and $$ by $ (needed for $File => &File because of XML)
323 // - calls wxGetTranslations (unless disabled in wxXmlResource)
324 wxString GetText(const wxString& param);
325
326 // Return XMLID
327 int GetID();
328 wxString GetName();
329
330 // Get bool flag (1,t,yes,on,true are TRUE, everything else is FALSE)
331 bool GetBool(const wxString& param, bool defaultv = FALSE);
332
333 // Get integer value from param
334 long GetLong( const wxString& param, long defaultv = 0 );
335
336 // Get colour in HTML syntax (#RRGGBB)
337 wxColour GetColour(const wxString& param);
338
339 // Get size/position (may be in dlg units):
340 wxSize GetSize(const wxString& param = wxT("size"));
341 wxPoint GetPosition(const wxString& param = wxT("pos"));
342
343 // Get dimension (may be in dlg units):
344 wxCoord GetDimension(const wxString& param, wxCoord defaultv = 0);
345
346 // Get bitmap:
1ce70313 347 wxBitmap GetBitmap(const wxString& param = wxT("bitmap"),
eb8671f2 348 wxSize size = wxDefaultSize);
1ce70313 349 wxIcon GetIcon(const wxString& param = wxT("icon"),
eb8671f2
VS
350 wxSize size = wxDefaultSize);
351
352 // Get font:
353 wxFont GetFont(const wxString& param = wxT("font"));
354
355 // Sets common window options:
356 void SetupWindow(wxWindow *wnd);
357
358 void CreateChildren(wxObject *parent, bool this_hnd_only = FALSE);
359 void CreateChildrenPrivately(wxObject *parent, wxXmlNode *rootnode = NULL);
ea89ec17 360 wxObject *CreateResFromNode(wxXmlNode *node,
eb8671f2
VS
361 wxObject *parent, wxObject *instance = NULL)
362 { return m_resource->CreateResFromNode(node, parent, instance); }
363
364 // helper
150e58d8 365#if wxUSE_FILESYSTEM
eb8671f2 366 wxFileSystem& GetCurFileSystem() { return m_resource->GetCurFileSystem(); }
150e58d8 367#endif
56d2f750
VS
368};
369
daa85ee3
VS
370
371// Programmer-friendly macros for writing XRC handlers:
372
373#define XRC_ADD_STYLE(style) AddStyle(wxT(#style), style)
374#define ADD_STYLE XRC_ADD_STYLE /* deprecated, don't use!! */
375
376#define XRC_MAKE_INSTANCE(variable, classname) \
377 classname *variable = NULL; \
378 if (m_instance) \
379 variable = wxStaticCast(m_instance, classname); \
380 if (!variable) \
381 variable = new classname;
56d2f750
VS
382
383
daa85ee3 384// FIXME -- remove this $%^#$%#$@# as soon as Ron checks his changes in!!
ea89ec17 385void wxXmlInitResourceModule();
56d2f750
VS
386
387#endif // _WX_XMLRES_H_