]>
Commit | Line | Data |
---|---|---|
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 | #if defined(__GNUG__) && !defined(__APPLE__) | |
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" | |
24 | #include "wx/filesys.h" | |
25 | #include "wx/bitmap.h" | |
26 | #include "wx/icon.h" | |
27 | #include "wx/artprov.h" | |
28 | ||
29 | #include "wx/xml/xml.h" | |
30 | ||
31 | #ifdef WXMAKINGDLL_XRC | |
32 | #define WXDLLIMPEXP_XRC WXEXPORT | |
33 | #elif defined(WXUSINGDLL) | |
34 | #define WXDLLIMPEXP_XRC WXIMPORT | |
35 | #else // not making nor using DLL | |
36 | #define WXDLLIMPEXP_XRC | |
37 | #endif | |
38 | ||
39 | class WXDLLEXPORT wxMenu; | |
40 | class WXDLLEXPORT wxMenuBar; | |
41 | class WXDLLEXPORT wxDialog; | |
42 | class WXDLLEXPORT wxPanel; | |
43 | class WXDLLEXPORT wxWindow; | |
44 | class WXDLLEXPORT wxFrame; | |
45 | class WXDLLEXPORT wxToolBar; | |
46 | ||
47 | class WXDLLIMPEXP_XRC wxXmlResourceHandler; | |
48 | class WXDLLIMPEXP_XRC wxXmlSubclassFactory; | |
49 | class WXDLLIMPEXP_XRC wxXmlSubclassFactoriesList; | |
50 | class wxXmlResourceModule; | |
51 | ||
52 | ||
53 | // These macros indicate current version of XML resources (this information is | |
54 | // encoded in root node of XRC file as "version" property). | |
55 | // | |
56 | // Rules for increasing version number: | |
57 | // - change it only if you made incompatible change to the format. Addition | |
58 | // of new attribute to control handler is _not_ incompatible change, because | |
59 | // older versions of the library may ignore it. | |
60 | // - if you change version number, follow these steps: | |
61 | // - set major, minor and release numbers to respective version numbers of | |
62 | // the wxWidgets library (see wx/version.h) | |
63 | // - reset revision to 0 unless the first three are same as before, | |
64 | // in which case you should increase revision by one | |
65 | #define WX_XMLRES_CURRENT_VERSION_MAJOR 2 | |
66 | #define WX_XMLRES_CURRENT_VERSION_MINOR 3 | |
67 | #define WX_XMLRES_CURRENT_VERSION_RELEASE 0 | |
68 | #define WX_XMLRES_CURRENT_VERSION_REVISION 1 | |
69 | #define WX_XMLRES_CURRENT_VERSION_STRING _T("2.3.0.1") | |
70 | ||
71 | #define WX_XMLRES_CURRENT_VERSION \ | |
72 | (WX_XMLRES_CURRENT_VERSION_MAJOR * 256*256*256 + \ | |
73 | WX_XMLRES_CURRENT_VERSION_MINOR * 256*256 + \ | |
74 | WX_XMLRES_CURRENT_VERSION_RELEASE * 256 + \ | |
75 | WX_XMLRES_CURRENT_VERSION_REVISION) | |
76 | ||
77 | class WXDLLIMPEXP_XRC wxXmlResourceDataRecord | |
78 | { | |
79 | public: | |
80 | wxXmlResourceDataRecord() : Doc(NULL), Time(wxDateTime::Now()) {} | |
81 | ~wxXmlResourceDataRecord() {delete Doc;} | |
82 | ||
83 | wxString File; | |
84 | wxXmlDocument *Doc; | |
85 | wxDateTime Time; | |
86 | }; | |
87 | ||
88 | ||
89 | WX_DECLARE_USER_EXPORTED_OBJARRAY(wxXmlResourceDataRecord, | |
90 | wxXmlResourceDataRecords, | |
91 | WXDLLIMPEXP_XRC); | |
92 | ||
93 | enum wxXmlResourceFlags | |
94 | { | |
95 | wxXRC_USE_LOCALE = 1, | |
96 | wxXRC_NO_SUBCLASSING = 2, | |
97 | wxXRC_NO_RELOADING = 4 | |
98 | }; | |
99 | ||
100 | // This class holds XML resources from one or more .xml files | |
101 | // (or derived forms, either binary or zipped -- see manual for | |
102 | // details). | |
103 | class WXDLLIMPEXP_XRC wxXmlResource : public wxObject | |
104 | { | |
105 | public: | |
106 | // Constructor. | |
107 | // Flags: wxXRC_USE_LOCALE | |
108 | // translatable strings will be translated via _() | |
109 | // wxXRC_NO_SUBCLASSING | |
110 | // subclass property of object nodes will be ignored | |
111 | // (useful for previews in XRC editors) | |
112 | wxXmlResource(int flags = wxXRC_USE_LOCALE); | |
113 | ||
114 | // Constructor. | |
115 | // Flags: wxXRC_USE_LOCALE | |
116 | // translatable strings will be translated via _() | |
117 | // wxXRC_NO_SUBCLASSING | |
118 | // subclass property of object nodes will be ignored | |
119 | // (useful for previews in XRC editors) | |
120 | wxXmlResource(const wxString& filemask, int flags = wxXRC_USE_LOCALE); | |
121 | ||
122 | // Destructor. | |
123 | ~wxXmlResource(); | |
124 | ||
125 | // Loads resources from XML files that match given filemask. | |
126 | // This method understands VFS (see filesys.h). | |
127 | bool Load(const wxString& filemask); | |
128 | ||
129 | // Initialize handlers for all supported controls/windows. This will | |
130 | // make the executable quite big because it forces linking against | |
131 | // most of the wxWidgets library. | |
132 | void InitAllHandlers(); | |
133 | ||
134 | // Initialize only a specific handler (or custom handler). Convention says | |
135 | // that handler name is equal to the control's name plus 'XmlHandler', for | |
136 | // example wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. The XML resource | |
137 | // compiler (xmlres) can create include file that contains initialization | |
138 | // code for all controls used within the resource. | |
139 | void AddHandler(wxXmlResourceHandler *handler); | |
140 | ||
141 | // Add a new handler at the begining of the handler list | |
142 | void InsertHandler(wxXmlResourceHandler *handler); | |
143 | ||
144 | // Removes all handlers | |
145 | void ClearHandlers(); | |
146 | ||
147 | // Registers subclasses factory for use in XRC. This function is not meant | |
148 | // for public use, please see the comment above wxXmlSubclassFactory | |
149 | // definition. | |
150 | static void AddSubclassFactory(wxXmlSubclassFactory *factory); | |
151 | ||
152 | // Loads menu from resource. Returns NULL on failure. | |
153 | wxMenu *LoadMenu(const wxString& name); | |
154 | ||
155 | // Loads menubar from resource. Returns NULL on failure. | |
156 | wxMenuBar *LoadMenuBar(wxWindow *parent, const wxString& name); | |
157 | ||
158 | // Loads menubar from resource. Returns NULL on failure. | |
159 | wxMenuBar *LoadMenuBar(const wxString& name) { return LoadMenuBar(NULL, name); } | |
160 | ||
161 | #if wxUSE_TOOLBAR | |
162 | // Loads a toolbar. | |
163 | wxToolBar *LoadToolBar(wxWindow *parent, const wxString& name); | |
164 | #endif | |
165 | ||
166 | // Loads a dialog. dlg points to parent window (if any). | |
167 | wxDialog *LoadDialog(wxWindow *parent, const wxString& name); | |
168 | ||
169 | // Loads a dialog. dlg points to parent window (if any). This form | |
170 | // is used to finish creation of already existing instance (main reason | |
171 | // for this is that you may want to use derived class with new event table) | |
172 | // Example (typical usage): | |
173 | // MyDialog dlg; | |
174 | // wxTheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog"); | |
175 | // dlg->ShowModal(); | |
176 | bool LoadDialog(wxDialog *dlg, wxWindow *parent, const wxString& name); | |
177 | ||
178 | // Loads a panel. panel points to parent window (if any). | |
179 | wxPanel *LoadPanel(wxWindow *parent, const wxString& name); | |
180 | ||
181 | // Loads a panel. panel points to parent window (if any). This form | |
182 | // is used to finish creation of already existing instance. | |
183 | bool LoadPanel(wxPanel *panel, wxWindow *parent, const wxString& name); | |
184 | ||
185 | // Loads a frame. | |
186 | wxFrame *LoadFrame(wxWindow* parent, const wxString& name); | |
187 | bool LoadFrame(wxFrame* frame, wxWindow *parent, const wxString& name); | |
188 | ||
189 | // Load an object from the resource specifying both the resource name and | |
190 | // the classname. This lets you load nonstandard container windows. | |
191 | wxObject *LoadObject(wxWindow *parent, const wxString& name, | |
192 | const wxString& classname); | |
193 | ||
194 | // Load an object from the resource specifying both the resource name and | |
195 | // the classname. This form lets you finish the creation of an existing | |
196 | // instance. | |
197 | bool LoadObject(wxObject *instance, wxWindow *parent, const wxString& name, | |
198 | const wxString& classname); | |
199 | ||
200 | // Loads a bitmap resource from a file. | |
201 | wxBitmap LoadBitmap(const wxString& name); | |
202 | ||
203 | // Loads an icon resource from a file. | |
204 | wxIcon LoadIcon(const wxString& name); | |
205 | ||
206 | // Attaches an unknown control to the given panel/window/dialog. | |
207 | // Unknown controls are used in conjunction with <object class="unknown">. | |
208 | bool AttachUnknownControl(const wxString& name, wxWindow *control, | |
209 | wxWindow *parent = NULL); | |
210 | ||
211 | // Returns a numeric ID that is equivalent to the string id used in an XML | |
212 | // resource. To be used in event tables. | |
213 | // Macro XRCID is provided for convenience | |
214 | static int GetXRCID(const wxChar *str_id); | |
215 | ||
216 | // Returns version information (a.b.c.d = d+ 256*c + 256^2*b + 256^3*a). | |
217 | long GetVersion() const { return m_version; } | |
218 | ||
219 | // Compares resources version to argument. Returns -1 if resources version | |
220 | // is less than the argument, +1 if greater and 0 if they equal. | |
221 | int CompareVersion(int major, int minor, int release, int revision) const | |
222 | { return GetVersion() - | |
223 | (major*256*256*256 + minor*256*256 + release*256 + revision); } | |
224 | ||
225 | //// Singleton accessors. | |
226 | ||
227 | // Gets the global resources object or creates one if none exists. | |
228 | static wxXmlResource *Get(); | |
229 | ||
230 | // Sets the global resources object and returns a pointer to the previous one (may be NULL). | |
231 | static wxXmlResource *Set(wxXmlResource *res); | |
232 | ||
233 | // Returns flags, which may be a bitlist of wxXRC_USE_LOCALE and wxXRC_NO_SUBCLASSING. | |
234 | int GetFlags() const { return m_flags; } | |
235 | // Set flags after construction. | |
236 | void SetFlags(int flags) { m_flags = flags; } | |
237 | ||
238 | protected: | |
239 | // Scans the resources list for unloaded files and loads them. Also reloads | |
240 | // files that have been modified since last loading. | |
241 | bool UpdateResources(); | |
242 | ||
243 | // Finds a resource (calls UpdateResources) and returns a node containing it. | |
244 | wxXmlNode *FindResource(const wxString& name, const wxString& classname, bool recursive = false); | |
245 | ||
246 | // Helper function: finds a resource (calls UpdateResources) and returns a node containing it. | |
247 | wxXmlNode *DoFindResource(wxXmlNode *parent, const wxString& name, const wxString& classname, bool recursive); | |
248 | ||
249 | // Creates a resource from information in the given node | |
250 | // (Uses only 'handlerToUse' if != NULL) | |
251 | wxObject *CreateResFromNode(wxXmlNode *node, wxObject *parent, | |
252 | wxObject *instance = NULL, | |
253 | wxXmlResourceHandler *handlerToUse = NULL); | |
254 | ||
255 | private: | |
256 | long m_version; | |
257 | ||
258 | int m_flags; | |
259 | wxList m_handlers; | |
260 | wxXmlResourceDataRecords m_data; | |
261 | #if wxUSE_FILESYSTEM | |
262 | wxFileSystem m_curFileSystem; | |
263 | wxFileSystem& GetCurFileSystem() { return m_curFileSystem; } | |
264 | #endif | |
265 | ||
266 | friend class wxXmlResourceHandler; | |
267 | friend class wxXmlResourceModule; | |
268 | ||
269 | static wxXmlSubclassFactoriesList *ms_subclassFactories; | |
270 | ||
271 | // singleton instance: | |
272 | static wxXmlResource *ms_instance; | |
273 | }; | |
274 | ||
275 | ||
276 | // This macro translates string identifier (as used in XML resource, | |
277 | // e.g. <menuitem id="my_menu">...</menuitem>) to integer id that is needed by | |
278 | // wxWidgets event tables. | |
279 | // Example: | |
280 | // BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
281 | // EVT_MENU(XRCID("quit"), MyFrame::OnQuit) | |
282 | // EVT_MENU(XRCID("about"), MyFrame::OnAbout) | |
283 | // EVT_MENU(XRCID("new"), MyFrame::OnNew) | |
284 | // EVT_MENU(XRCID("open"), MyFrame::OnOpen) | |
285 | // END_EVENT_TABLE() | |
286 | ||
287 | #define XRCID(str_id) \ | |
288 | wxXmlResource::GetXRCID(wxT(str_id)) | |
289 | ||
290 | ||
291 | // This macro returns pointer to particular control in dialog | |
292 | // created using XML resources. You can use it to set/get values from | |
293 | // controls. | |
294 | // Example: | |
295 | // wxDialog dlg; | |
296 | // wxXmlResource::Get()->LoadDialog(&dlg, mainFrame, "my_dialog"); | |
297 | // XRCCTRL(dlg, "my_textctrl", wxTextCtrl)->SetValue(wxT("default value")); | |
298 | ||
299 | #ifdef __WXDEBUG__ | |
300 | #define XRCCTRL(window, id, type) \ | |
301 | (wxDynamicCast((window).FindWindow(XRCID(id)), type)) | |
302 | #else | |
303 | #define XRCCTRL(window, id, type) \ | |
304 | ((type*)((window).FindWindow(XRCID(id)))) | |
305 | #endif | |
306 | ||
307 | // wxXmlResourceHandler is an abstract base class for resource handlers | |
308 | // capable of creating a control from an XML node. | |
309 | ||
310 | class WXDLLIMPEXP_XRC wxXmlResourceHandler : public wxObject | |
311 | { | |
312 | DECLARE_ABSTRACT_CLASS(wxXmlResourceHandler) | |
313 | public: | |
314 | // Constructor. | |
315 | wxXmlResourceHandler(); | |
316 | ||
317 | // Destructor. | |
318 | virtual ~wxXmlResourceHandler() {} | |
319 | ||
320 | // Creates an object (menu, dialog, control, ...) from an XML node. | |
321 | // Should check for validity. | |
322 | // parent is a higher-level object (usually window, dialog or panel) | |
323 | // that is often neccessary to create the resource. | |
324 | // If instance is non-NULL it should not create a new instance via 'new' but | |
325 | // should rather use this one, and call its Create method. | |
326 | wxObject *CreateResource(wxXmlNode *node, wxObject *parent, | |
327 | wxObject *instance); | |
328 | ||
329 | // This one is called from CreateResource after variables | |
330 | // were filled. | |
331 | virtual wxObject *DoCreateResource() = 0; | |
332 | ||
333 | // Returns true if it understands this node and can create | |
334 | // a resource from it, false otherwise. | |
335 | virtual bool CanHandle(wxXmlNode *node) = 0; | |
336 | ||
337 | // Sets the parent resource. | |
338 | void SetParentResource(wxXmlResource *res) { m_resource = res; } | |
339 | ||
340 | protected: | |
341 | wxXmlResource *m_resource; | |
342 | wxArrayString m_styleNames; | |
343 | wxArrayInt m_styleValues; | |
344 | ||
345 | // Variables (filled by CreateResource) | |
346 | wxXmlNode *m_node; | |
347 | wxString m_class; | |
348 | wxObject *m_parent, *m_instance; | |
349 | wxWindow *m_parentAsWindow, *m_instanceAsWindow; | |
350 | ||
351 | // --- Handy methods: | |
352 | ||
353 | // Returns true if the node has a property class equal to classname, | |
354 | // e.g. <object class="wxDialog">. | |
355 | bool IsOfClass(wxXmlNode *node, const wxString& classname) | |
356 | { return node->GetPropVal(wxT("class"), wxEmptyString) == classname; } | |
357 | ||
358 | // Gets node content from wxXML_ENTITY_NODE | |
359 | // The problem is, <tag>content<tag> is represented as | |
360 | // wxXML_ENTITY_NODE name="tag", content="" | |
361 | // |-- wxXML_TEXT_NODE or | |
362 | // wxXML_CDATA_SECTION_NODE name="" content="content" | |
363 | wxString GetNodeContent(wxXmlNode *node); | |
364 | ||
365 | // Check to see if a parameter exists. | |
366 | bool HasParam(const wxString& param); | |
367 | ||
368 | // Finds the node or returns NULL. | |
369 | wxXmlNode *GetParamNode(const wxString& param); | |
370 | ||
371 | // Finds the parameter value or returns the empty string. | |
372 | wxString GetParamValue(const wxString& param); | |
373 | ||
374 | // Add a style flag (e.g. wxMB_DOCKABLE) to the list of flags | |
375 | // understood by this handler. | |
376 | void AddStyle(const wxString& name, int value); | |
377 | ||
378 | // Add styles common to all wxWindow-derived classes. | |
379 | void AddWindowStyles(); | |
380 | ||
381 | // Gets style flags from text in form "flag | flag2| flag3 |..." | |
382 | // Only understads flags added with AddStyle | |
383 | int GetStyle(const wxString& param = wxT("style"), int defaults = 0); | |
384 | ||
385 | // Gets text from param and does some conversions: | |
386 | // - replaces \n, \r, \t by respective chars (according to C syntax) | |
387 | // - replaces _ by & and __ by _ (needed for _File => &File because of XML) | |
388 | // - calls wxGetTranslations (unless disabled in wxXmlResource) | |
389 | wxString GetText(const wxString& param, bool translate = true); | |
390 | ||
391 | // Returns the XRCID. | |
392 | int GetID(); | |
393 | ||
394 | // Returns the resource name. | |
395 | wxString GetName(); | |
396 | ||
397 | // Gets a bool flag (1, t, yes, on, true are true, everything else is false). | |
398 | bool GetBool(const wxString& param, bool defaultv = false); | |
399 | ||
400 | // Gets the integer value from the parameter. | |
401 | long GetLong( const wxString& param, long defaultv = 0 ); | |
402 | ||
403 | // Gets colour in HTML syntax (#RRGGBB). | |
404 | wxColour GetColour(const wxString& param); | |
405 | ||
406 | // Gets the size (may be in dialog units). | |
407 | wxSize GetSize(const wxString& param = wxT("size")); | |
408 | ||
409 | // Gets the position (may be in dialog units). | |
410 | wxPoint GetPosition(const wxString& param = wxT("pos")); | |
411 | ||
412 | // Gets a dimension (may be in dialog units). | |
413 | wxCoord GetDimension(const wxString& param, wxCoord defaultv = 0); | |
414 | ||
415 | // Gets a bitmap. | |
416 | wxBitmap GetBitmap(const wxString& param = wxT("bitmap"), | |
417 | const wxArtClient& defaultArtClient = wxART_OTHER, | |
418 | wxSize size = wxDefaultSize); | |
419 | ||
420 | // Gets an icon. | |
421 | wxIcon GetIcon(const wxString& param = wxT("icon"), | |
422 | const wxArtClient& defaultArtClient = wxART_OTHER, | |
423 | wxSize size = wxDefaultSize); | |
424 | ||
425 | // Gets a font. | |
426 | wxFont GetFont(const wxString& param = wxT("font")); | |
427 | ||
428 | // Sets common window options. | |
429 | void SetupWindow(wxWindow *wnd); | |
430 | ||
431 | // Creates children. | |
432 | void CreateChildren(wxObject *parent, bool this_hnd_only = false); | |
433 | ||
434 | // Helper function. | |
435 | void CreateChildrenPrivately(wxObject *parent, wxXmlNode *rootnode = NULL); | |
436 | ||
437 | // Creates a resource from a node. | |
438 | wxObject *CreateResFromNode(wxXmlNode *node, | |
439 | wxObject *parent, wxObject *instance = NULL) | |
440 | { return m_resource->CreateResFromNode(node, parent, instance); } | |
441 | ||
442 | // helper | |
443 | #if wxUSE_FILESYSTEM | |
444 | wxFileSystem& GetCurFileSystem() { return m_resource->GetCurFileSystem(); } | |
445 | #endif | |
446 | }; | |
447 | ||
448 | ||
449 | // Programmer-friendly macros for writing XRC handlers: | |
450 | ||
451 | #define XRC_ADD_STYLE(style) AddStyle(wxT(#style), style) | |
452 | ||
453 | #define XRC_MAKE_INSTANCE(variable, classname) \ | |
454 | classname *variable = NULL; \ | |
455 | if (m_instance) \ | |
456 | variable = wxStaticCast(m_instance, classname); \ | |
457 | if (!variable) \ | |
458 | variable = new classname; | |
459 | ||
460 | ||
461 | // FIXME -- remove this $%^#$%#$@# as soon as Ron checks his changes in!! | |
462 | WXDLLIMPEXP_XRC void wxXmlInitResourceModule(); | |
463 | ||
464 | ||
465 | // This class is used to create instances of XRC "object" nodes with "subclass" | |
466 | // property. It is _not_ supposed to be used by XRC users, you should instead | |
467 | // register your subclasses via wxWidgets' RTTI mechanism. This class is useful | |
468 | // only for language bindings developer who need a way to implement subclassing | |
469 | // in wxWidgets ports that don't support wxRTTI (e.g. wxPython). | |
470 | class WXDLLIMPEXP_XRC wxXmlSubclassFactory | |
471 | { | |
472 | public: | |
473 | // Try to create instance of given class and return it, return NULL on | |
474 | // failure: | |
475 | virtual wxObject *Create(const wxString& className) = 0; | |
476 | virtual ~wxXmlSubclassFactory() {} | |
477 | }; | |
478 | ||
479 | ||
480 | /* ------------------------------------------------------------------------- | |
481 | Backward compatibility macros. Do *NOT* use, they may disappear in future | |
482 | versions of the XRC library! | |
483 | ------------------------------------------------------------------------- */ | |
484 | #if WXWIN_COMPATIBILITY_2_4 | |
485 | #define ADD_STYLE XRC_ADD_STYLE | |
486 | #define wxTheXmlResource wxXmlResource::Get() | |
487 | #define XMLID XRCID | |
488 | #define XMLCTRL XRCCTRL | |
489 | #define GetXMLID GetXRCID | |
490 | #endif | |
491 | ||
492 | ||
493 | #endif // _WX_XMLRES_H_ |