]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/xrc/xmlres.cpp |
b5d6954b | 3 | // Purpose: XRC resources |
78d14f80 VS |
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 | ||
78d14f80 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
621be1ec | 18 | #if wxUSE_XRC |
a1e4ec87 | 19 | |
88a7a4e1 WS |
20 | #include "wx/xrc/xmlres.h" |
21 | ||
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/intl.h" | |
e4db172a | 24 | #include "wx/log.h" |
8e609c82 | 25 | #include "wx/panel.h" |
76b49cf4 | 26 | #include "wx/frame.h" |
fdf565fe | 27 | #include "wx/dialog.h" |
9eddec69 | 28 | #include "wx/settings.h" |
0bca0373 | 29 | #include "wx/bitmap.h" |
155ecd4c | 30 | #include "wx/image.h" |
02761f6c | 31 | #include "wx/module.h" |
193d0c93 | 32 | #include "wx/wxcrtvararg.h" |
88a7a4e1 WS |
33 | #endif |
34 | ||
e7a3a5a5 | 35 | #ifndef __WXWINCE__ |
88a7a4e1 | 36 | #include <locale.h> |
e7a3a5a5 | 37 | #endif |
1df61962 | 38 | |
eb2d0d23 | 39 | #include "wx/vector.h" |
78d14f80 VS |
40 | #include "wx/wfstream.h" |
41 | #include "wx/filesys.h" | |
317a0d73 | 42 | #include "wx/filename.h" |
78d14f80 VS |
43 | #include "wx/tokenzr.h" |
44 | #include "wx/fontenum.h" | |
78d14f80 | 45 | #include "wx/fontmap.h" |
af1337b0 | 46 | #include "wx/artprov.h" |
326462ae | 47 | #include "wx/imaglist.h" |
2bb9a404 | 48 | #include "wx/dir.h" |
34c6bbee | 49 | #include "wx/xml/xml.h" |
0526c8cc | 50 | #include "wx/hashset.h" |
9fc5a47c | 51 | #include "wx/scopedptr.h" |
78d14f80 | 52 | |
9fc5a47c VZ |
53 | namespace |
54 | { | |
55 | ||
56 | // Helper function to get modification time of either a wxFileSystem URI or | |
57 | // just a normal file name, depending on the build. | |
58 | #if wxUSE_DATETIME | |
59 | ||
60 | wxDateTime GetXRCFileModTime(const wxString& filename) | |
61 | { | |
62 | #if wxUSE_FILESYSTEM | |
63 | wxFileSystem fsys; | |
64 | wxScopedPtr<wxFSFile> file(fsys.OpenFile(filename)); | |
65 | ||
66 | return file ? file->GetModificationTime() : wxDateTime(); | |
67 | #else // wxUSE_FILESYSTEM | |
68 | return wxDateTime(wxFileModificationTime(filename)); | |
69 | #endif // wxUSE_FILESYSTEM | |
70 | } | |
71 | ||
72 | #endif // wxUSE_DATETIME | |
73 | ||
74 | } // anonymous namespace | |
f35fdf7e | 75 | |
eb2d0d23 VS |
76 | class wxXmlResourceDataRecord |
77 | { | |
78 | public: | |
9fc5a47c VZ |
79 | // Ctor takes ownership of the document pointer. |
80 | wxXmlResourceDataRecord(const wxString& File_, | |
81 | wxXmlDocument *Doc_ | |
82 | ) | |
83 | : File(File_), Doc(Doc_) | |
84 | { | |
eb2d0d23 | 85 | #if wxUSE_DATETIME |
9fc5a47c | 86 | Time = GetXRCFileModTime(File); |
eb2d0d23 VS |
87 | #endif |
88 | } | |
9fc5a47c | 89 | |
eb2d0d23 VS |
90 | ~wxXmlResourceDataRecord() {delete Doc;} |
91 | ||
92 | wxString File; | |
93 | wxXmlDocument *Doc; | |
94 | #if wxUSE_DATETIME | |
95 | wxDateTime Time; | |
96 | #endif | |
9fc5a47c VZ |
97 | |
98 | wxDECLARE_NO_COPY_CLASS(wxXmlResourceDataRecord); | |
eb2d0d23 VS |
99 | }; |
100 | ||
f396e5a7 | 101 | class wxXmlResourceDataRecords : public wxVector<wxXmlResourceDataRecord*> |
eb2d0d23 VS |
102 | { |
103 | // this is a class so that it can be forward-declared | |
104 | }; | |
78d14f80 | 105 | |
0526c8cc VZ |
106 | WX_DECLARE_HASH_SET(int, wxIntegerHash, wxIntegerEqual, wxHashSetInt); |
107 | ||
108 | class wxIdRange // Holds data for a particular rangename | |
109 | { | |
110 | protected: | |
111 | wxIdRange(const wxXmlNode* node, | |
112 | const wxString& rname, | |
113 | const wxString& startno, | |
114 | const wxString& rsize); | |
115 | ||
116 | // Note the existence of an item within the range | |
117 | void NoteItem(const wxXmlNode* node, const wxString& item); | |
118 | ||
119 | // The manager is telling us that it's finished adding items | |
120 | void Finalise(const wxXmlNode* node); | |
121 | ||
122 | wxString GetName() const { return m_name; } | |
123 | bool IsFinalised() const { return m_finalised; } | |
124 | ||
125 | const wxString m_name; | |
126 | int m_start; | |
127 | int m_end; | |
128 | unsigned int m_size; | |
129 | bool m_item_end_found; | |
130 | bool m_finalised; | |
131 | wxHashSetInt m_indices; | |
132 | ||
133 | friend class wxIdRangeManager; | |
134 | }; | |
135 | ||
136 | class wxIdRangeManager | |
137 | { | |
138 | public: | |
139 | ~wxIdRangeManager(); | |
140 | // Gets the global resources object or creates one if none exists. | |
141 | static wxIdRangeManager *Get(); | |
142 | ||
143 | // Sets the global resources object and returns a pointer to the previous | |
144 | // one (may be NULL). | |
145 | static wxIdRangeManager *Set(wxIdRangeManager *res); | |
146 | ||
147 | // Create a new IDrange from this node | |
148 | void AddRange(const wxXmlNode* node); | |
149 | // Tell the IdRange that this item exists, and should be pre-allocated an ID | |
150 | void NotifyRangeOfItem(const wxXmlNode* node, const wxString& item) const; | |
151 | // Tells all IDranges that they're now complete, and can create their IDs | |
152 | void FinaliseRanges(const wxXmlNode* node) const; | |
153 | // Searches for a known IdRange matching 'name', returning its index or -1 | |
154 | int Find(const wxString& rangename) const; | |
155 | // Removes, if it exists, an entry from the XRCID table. Used in id-ranges | |
156 | // to replace defunct or statically-initialised entries with current values | |
e7cad4b7 | 157 | static void RemoveXRCIDEntry(const wxString& idstr); |
0526c8cc VZ |
158 | |
159 | protected: | |
160 | wxIdRange* FindRangeForItem(const wxXmlNode* node, | |
161 | const wxString& item, | |
162 | wxString& value) const; | |
163 | wxVector<wxIdRange*> m_IdRanges; | |
164 | ||
165 | private: | |
166 | static wxIdRangeManager *ms_instance; | |
167 | }; | |
168 | ||
23239d94 VZ |
169 | namespace |
170 | { | |
171 | ||
172 | // helper used by DoFindResource() and elsewhere: returns true if this is an | |
173 | // object or object_ref node | |
174 | // | |
175 | // node must be non-NULL | |
176 | inline bool IsObjectNode(wxXmlNode *node) | |
177 | { | |
178 | return node->GetType() == wxXML_ELEMENT_NODE && | |
179 | (node->GetName() == wxS("object") || | |
180 | node->GetName() == wxS("object_ref")); | |
181 | } | |
182 | ||
a1eeda0b VS |
183 | // special XML attribute with name of input file, see GetFileNameFromNode() |
184 | const char *ATTR_INPUT_FILENAME = "__wx:filename"; | |
185 | ||
186 | // helper to get filename corresponding to an XML node | |
187 | wxString | |
1f6ea935 | 188 | GetFileNameFromNode(const wxXmlNode *node, const wxXmlResourceDataRecords& files) |
a1eeda0b VS |
189 | { |
190 | // this loop does two things: it looks for ATTR_INPUT_FILENAME among | |
191 | // parents and if it isn't used, it finds the root of the XML tree 'node' | |
192 | // is in | |
193 | for ( ;; ) | |
194 | { | |
195 | // in some rare cases (specifically, when an <object_ref> is used, see | |
196 | // wxXmlResource::CreateResFromNode() and MergeNodesOver()), we work | |
197 | // with XML nodes that are not rooted in any document from 'files' | |
198 | // (because a new node was created by CreateResFromNode() to merge the | |
199 | // content of <object_ref> and the referenced <object>); in that case, | |
200 | // we hack around the problem by putting the information about input | |
201 | // file into a custom attribute | |
202 | if ( node->HasAttribute(ATTR_INPUT_FILENAME) ) | |
203 | return node->GetAttribute(ATTR_INPUT_FILENAME); | |
204 | ||
205 | if ( !node->GetParent() ) | |
206 | break; // we found the root of this XML tree | |
207 | ||
208 | node = node->GetParent(); | |
209 | } | |
210 | ||
211 | // NB: 'node' now points to the root of XML document | |
212 | ||
213 | for ( wxXmlResourceDataRecords::const_iterator i = files.begin(); | |
214 | i != files.end(); ++i ) | |
215 | { | |
216 | if ( (*i)->Doc->GetRoot() == node ) | |
217 | { | |
218 | return (*i)->File; | |
219 | } | |
220 | } | |
221 | ||
222 | return wxEmptyString; // not found | |
223 | } | |
224 | ||
23239d94 VZ |
225 | } // anonymous namespace |
226 | ||
78d14f80 | 227 | |
824e8eaa VS |
228 | wxXmlResource *wxXmlResource::ms_instance = NULL; |
229 | ||
230 | /*static*/ wxXmlResource *wxXmlResource::Get() | |
231 | { | |
232 | if ( !ms_instance ) | |
233 | ms_instance = new wxXmlResource; | |
234 | return ms_instance; | |
235 | } | |
236 | ||
237 | /*static*/ wxXmlResource *wxXmlResource::Set(wxXmlResource *res) | |
238 | { | |
239 | wxXmlResource *old = ms_instance; | |
240 | ms_instance = res; | |
241 | return old; | |
242 | } | |
243 | ||
d4a724d4 | 244 | wxXmlResource::wxXmlResource(int flags, const wxString& domain) |
78d14f80 | 245 | { |
daa85ee3 | 246 | m_flags = flags; |
78d14f80 | 247 | m_version = -1; |
eb2d0d23 | 248 | m_data = new wxXmlResourceDataRecords; |
d7a80cf5 | 249 | SetDomain(domain); |
78d14f80 VS |
250 | } |
251 | ||
d4a724d4 | 252 | wxXmlResource::wxXmlResource(const wxString& filemask, int flags, const wxString& domain) |
78d14f80 | 253 | { |
daa85ee3 | 254 | m_flags = flags; |
78d14f80 | 255 | m_version = -1; |
eb2d0d23 | 256 | m_data = new wxXmlResourceDataRecords; |
d7a80cf5 | 257 | SetDomain(domain); |
78d14f80 VS |
258 | Load(filemask); |
259 | } | |
260 | ||
261 | wxXmlResource::~wxXmlResource() | |
262 | { | |
263 | ClearHandlers(); | |
eb2d0d23 | 264 | |
f396e5a7 VS |
265 | for ( wxXmlResourceDataRecords::iterator i = m_data->begin(); |
266 | i != m_data->end(); ++i ) | |
267 | { | |
268 | delete *i; | |
269 | } | |
eb2d0d23 | 270 | delete m_data; |
78d14f80 VS |
271 | } |
272 | ||
d7a80cf5 | 273 | void wxXmlResource::SetDomain(const wxString& domain) |
d4a724d4 | 274 | { |
d7a80cf5 | 275 | m_domain = domain; |
d4a724d4 RD |
276 | } |
277 | ||
78d14f80 | 278 | |
60fd818a VZ |
279 | /* static */ |
280 | wxString wxXmlResource::ConvertFileNameToURL(const wxString& filename) | |
281 | { | |
282 | wxString fnd(filename); | |
283 | ||
284 | // NB: as Load() and Unload() accept both filenames and URLs (should | |
285 | // probably be changed to filenames only, but embedded resources | |
286 | // currently rely on its ability to handle URLs - FIXME) we need to | |
287 | // determine whether found name is filename and not URL and this is the | |
288 | // fastest/simplest way to do it | |
289 | if (wxFileName::FileExists(fnd)) | |
290 | { | |
291 | // Make the name absolute filename, because the app may | |
292 | // change working directory later: | |
293 | wxFileName fn(fnd); | |
294 | if (fn.IsRelative()) | |
295 | { | |
296 | fn.MakeAbsolute(); | |
297 | fnd = fn.GetFullPath(); | |
298 | } | |
299 | #if wxUSE_FILESYSTEM | |
300 | fnd = wxFileSystem::FileNameToURL(fnd); | |
301 | #endif | |
302 | } | |
303 | ||
304 | return fnd; | |
305 | } | |
306 | ||
307 | #if wxUSE_FILESYSTEM | |
308 | ||
309 | /* static */ | |
310 | bool wxXmlResource::IsArchive(const wxString& filename) | |
311 | { | |
312 | const wxString fnd = filename.Lower(); | |
313 | ||
314 | return fnd.Matches(wxT("*.zip")) || fnd.Matches(wxT("*.xrs")); | |
315 | } | |
316 | ||
317 | #endif // wxUSE_FILESYSTEM | |
318 | ||
04ae32cd VS |
319 | bool wxXmlResource::LoadFile(const wxFileName& file) |
320 | { | |
159852ae | 321 | #if wxUSE_FILESYSTEM |
04ae32cd | 322 | return Load(wxFileSystem::FileNameToURL(file)); |
159852ae VS |
323 | #else |
324 | return Load(file.GetFullPath()); | |
325 | #endif | |
04ae32cd VS |
326 | } |
327 | ||
2bb9a404 VS |
328 | bool wxXmlResource::LoadAllFiles(const wxString& dirname) |
329 | { | |
330 | bool ok = true; | |
331 | wxArrayString files; | |
332 | ||
333 | wxDir::GetAllFiles(dirname, &files, "*.xrc"); | |
334 | ||
335 | for ( wxArrayString::const_iterator i = files.begin(); i != files.end(); ++i ) | |
336 | { | |
337 | if ( !LoadFile(*i) ) | |
338 | ok = false; | |
339 | } | |
340 | ||
341 | return ok; | |
342 | } | |
343 | ||
acd32ffc | 344 | bool wxXmlResource::Load(const wxString& filemask_) |
78d14f80 | 345 | { |
acd32ffc VS |
346 | wxString filemask = ConvertFileNameToURL(filemask_); |
347 | ||
9fc5a47c VZ |
348 | bool allOK = true; |
349 | ||
78d14f80 VS |
350 | #if wxUSE_FILESYSTEM |
351 | wxFileSystem fsys; | |
352 | # define wxXmlFindFirst fsys.FindFirst(filemask, wxFILE) | |
353 | # define wxXmlFindNext fsys.FindNext() | |
354 | #else | |
355 | # define wxXmlFindFirst wxFindFirstFile(filemask, wxFILE) | |
356 | # define wxXmlFindNext wxFindNextFile() | |
357 | #endif | |
e5bb501b VZ |
358 | wxString fnd = wxXmlFindFirst; |
359 | if ( fnd.empty() ) | |
360 | { | |
361 | wxLogError(_("Cannot load resources from '%s'."), filemask); | |
362 | return false; | |
363 | } | |
364 | ||
ec157c8f | 365 | while (!fnd.empty()) |
78d14f80 VS |
366 | { |
367 | #if wxUSE_FILESYSTEM | |
60fd818a | 368 | if ( IsArchive(fnd) ) |
78d14f80 | 369 | { |
e5bb501b | 370 | if ( !Load(fnd + wxT("#zip:*.xrc")) ) |
9fc5a47c | 371 | allOK = false; |
78d14f80 | 372 | } |
60fd818a VZ |
373 | else // a single resource URL |
374 | #endif // wxUSE_FILESYSTEM | |
78d14f80 | 375 | { |
9fc5a47c VZ |
376 | wxXmlDocument * const doc = DoLoadFile(fnd); |
377 | if ( !doc ) | |
378 | allOK = false; | |
379 | else | |
380 | Data().push_back(new wxXmlResourceDataRecord(fnd, doc)); | |
78d14f80 VS |
381 | } |
382 | ||
e5bb501b | 383 | fnd = wxXmlFindNext; |
78d14f80 VS |
384 | } |
385 | # undef wxXmlFindFirst | |
386 | # undef wxXmlFindNext | |
e5bb501b | 387 | |
9fc5a47c | 388 | return allOK; |
78d14f80 VS |
389 | } |
390 | ||
60fd818a VZ |
391 | bool wxXmlResource::Unload(const wxString& filename) |
392 | { | |
393 | wxASSERT_MSG( !wxIsWild(filename), | |
9a83f860 | 394 | wxT("wildcards not supported by wxXmlResource::Unload()") ); |
60fd818a VZ |
395 | |
396 | wxString fnd = ConvertFileNameToURL(filename); | |
397 | #if wxUSE_FILESYSTEM | |
398 | const bool isArchive = IsArchive(fnd); | |
399 | if ( isArchive ) | |
9a83f860 | 400 | fnd += wxT("#zip:"); |
60fd818a VZ |
401 | #endif // wxUSE_FILESYSTEM |
402 | ||
403 | bool unloaded = false; | |
eb2d0d23 VS |
404 | for ( wxXmlResourceDataRecords::iterator i = Data().begin(); |
405 | i != Data().end(); ++i ) | |
60fd818a VZ |
406 | { |
407 | #if wxUSE_FILESYSTEM | |
408 | if ( isArchive ) | |
409 | { | |
f396e5a7 | 410 | if ( (*i)->File.StartsWith(fnd) ) |
60fd818a VZ |
411 | unloaded = true; |
412 | // don't break from the loop, we can have other matching files | |
413 | } | |
414 | else // a single resource URL | |
415 | #endif // wxUSE_FILESYSTEM | |
416 | { | |
f396e5a7 | 417 | if ( (*i)->File == fnd ) |
60fd818a | 418 | { |
f8b1df0b | 419 | delete *i; |
eb2d0d23 | 420 | Data().erase(i); |
60fd818a VZ |
421 | unloaded = true; |
422 | ||
423 | // no sense in continuing, there is only one file with this URL | |
424 | break; | |
425 | } | |
426 | } | |
427 | } | |
428 | ||
429 | return unloaded; | |
430 | } | |
431 | ||
78d14f80 | 432 | |
854e189f | 433 | IMPLEMENT_ABSTRACT_CLASS(wxXmlResourceHandler, wxObject) |
78d14f80 VS |
434 | |
435 | void wxXmlResource::AddHandler(wxXmlResourceHandler *handler) | |
436 | { | |
eb2d0d23 | 437 | m_handlers.push_back(handler); |
78d14f80 VS |
438 | handler->SetParentResource(this); |
439 | } | |
440 | ||
92e898b0 RD |
441 | void wxXmlResource::InsertHandler(wxXmlResourceHandler *handler) |
442 | { | |
eb2d0d23 | 443 | m_handlers.insert(m_handlers.begin(), handler); |
92e898b0 RD |
444 | handler->SetParentResource(this); |
445 | } | |
446 | ||
78d14f80 VS |
447 | |
448 | ||
449 | void wxXmlResource::ClearHandlers() | |
450 | { | |
eb2d0d23 VS |
451 | for ( wxVector<wxXmlResourceHandler*>::iterator i = m_handlers.begin(); |
452 | i != m_handlers.end(); ++i ) | |
453 | delete *i; | |
454 | m_handlers.clear(); | |
78d14f80 VS |
455 | } |
456 | ||
457 | ||
78d14f80 VS |
458 | wxMenu *wxXmlResource::LoadMenu(const wxString& name) |
459 | { | |
460 | return (wxMenu*)CreateResFromNode(FindResource(name, wxT("wxMenu")), NULL, NULL); | |
461 | } | |
462 | ||
463 | ||
464 | ||
4a1b9596 | 465 | wxMenuBar *wxXmlResource::LoadMenuBar(wxWindow *parent, const wxString& name) |
78d14f80 | 466 | { |
4a1b9596 | 467 | return (wxMenuBar*)CreateResFromNode(FindResource(name, wxT("wxMenuBar")), parent, NULL); |
78d14f80 VS |
468 | } |
469 | ||
470 | ||
471 | ||
4a1b9596 | 472 | #if wxUSE_TOOLBAR |
78d14f80 VS |
473 | wxToolBar *wxXmlResource::LoadToolBar(wxWindow *parent, const wxString& name) |
474 | { | |
475 | return (wxToolBar*)CreateResFromNode(FindResource(name, wxT("wxToolBar")), parent, NULL); | |
476 | } | |
4a1b9596 | 477 | #endif |
78d14f80 VS |
478 | |
479 | ||
480 | wxDialog *wxXmlResource::LoadDialog(wxWindow *parent, const wxString& name) | |
481 | { | |
4dd75a6a | 482 | return (wxDialog*)CreateResFromNode(FindResource(name, wxT("wxDialog")), parent, NULL); |
78d14f80 VS |
483 | } |
484 | ||
485 | bool wxXmlResource::LoadDialog(wxDialog *dlg, wxWindow *parent, const wxString& name) | |
486 | { | |
487 | return CreateResFromNode(FindResource(name, wxT("wxDialog")), parent, dlg) != NULL; | |
488 | } | |
489 | ||
490 | ||
491 | ||
492 | wxPanel *wxXmlResource::LoadPanel(wxWindow *parent, const wxString& name) | |
493 | { | |
494 | return (wxPanel*)CreateResFromNode(FindResource(name, wxT("wxPanel")), parent, NULL); | |
495 | } | |
496 | ||
497 | bool wxXmlResource::LoadPanel(wxPanel *panel, wxWindow *parent, const wxString& name) | |
498 | { | |
499 | return CreateResFromNode(FindResource(name, wxT("wxPanel")), parent, panel) != NULL; | |
500 | } | |
501 | ||
92e898b0 RD |
502 | wxFrame *wxXmlResource::LoadFrame(wxWindow* parent, const wxString& name) |
503 | { | |
504 | return (wxFrame*)CreateResFromNode(FindResource(name, wxT("wxFrame")), parent, NULL); | |
505 | } | |
506 | ||
78d14f80 VS |
507 | bool wxXmlResource::LoadFrame(wxFrame* frame, wxWindow *parent, const wxString& name) |
508 | { | |
509 | return CreateResFromNode(FindResource(name, wxT("wxFrame")), parent, frame) != NULL; | |
510 | } | |
511 | ||
512 | wxBitmap wxXmlResource::LoadBitmap(const wxString& name) | |
513 | { | |
514 | wxBitmap *bmp = (wxBitmap*)CreateResFromNode( | |
515 | FindResource(name, wxT("wxBitmap")), NULL, NULL); | |
516 | wxBitmap rt; | |
517 | ||
518 | if (bmp) { rt = *bmp; delete bmp; } | |
519 | return rt; | |
520 | } | |
521 | ||
522 | wxIcon wxXmlResource::LoadIcon(const wxString& name) | |
523 | { | |
524 | wxIcon *icon = (wxIcon*)CreateResFromNode( | |
525 | FindResource(name, wxT("wxIcon")), NULL, NULL); | |
526 | wxIcon rt; | |
527 | ||
528 | if (icon) { rt = *icon; delete icon; } | |
529 | return rt; | |
530 | } | |
531 | ||
92e898b0 | 532 | |
af0ac990 VZ |
533 | wxObject * |
534 | wxXmlResource::DoLoadObject(wxWindow *parent, | |
535 | const wxString& name, | |
536 | const wxString& classname, | |
537 | bool recursive) | |
92e898b0 | 538 | { |
af0ac990 VZ |
539 | wxXmlNode * const node = FindResource(name, classname, recursive); |
540 | ||
541 | return node ? DoCreateResFromNode(*node, parent, NULL) : NULL; | |
92e898b0 RD |
542 | } |
543 | ||
af0ac990 VZ |
544 | bool |
545 | wxXmlResource::DoLoadObject(wxObject *instance, | |
546 | wxWindow *parent, | |
547 | const wxString& name, | |
548 | const wxString& classname, | |
549 | bool recursive) | |
92e898b0 | 550 | { |
af0ac990 VZ |
551 | wxXmlNode * const node = FindResource(name, classname, recursive); |
552 | ||
553 | return node && DoCreateResFromNode(*node, parent, instance) != NULL; | |
92e898b0 RD |
554 | } |
555 | ||
556 | ||
78d14f80 VS |
557 | bool wxXmlResource::AttachUnknownControl(const wxString& name, |
558 | wxWindow *control, wxWindow *parent) | |
559 | { | |
560 | if (parent == NULL) | |
561 | parent = control->GetParent(); | |
562 | wxWindow *container = parent->FindWindow(name + wxT("_container")); | |
563 | if (!container) | |
564 | { | |
819559b2 | 565 | wxLogError("Cannot find container for unknown control '%s'.", name); |
f80ea77b | 566 | return false; |
78d14f80 VS |
567 | } |
568 | return control->Reparent(container); | |
569 | } | |
570 | ||
571 | ||
77b2f9b1 | 572 | static void ProcessPlatformProperty(wxXmlNode *node) |
78d14f80 VS |
573 | { |
574 | wxString s; | |
575 | bool isok; | |
576 | ||
577 | wxXmlNode *c = node->GetChildren(); | |
578 | while (c) | |
579 | { | |
f80ea77b | 580 | isok = false; |
288b6107 | 581 | if (!c->GetAttribute(wxT("platform"), &s)) |
f80ea77b | 582 | isok = true; |
78d14f80 VS |
583 | else |
584 | { | |
2b5f62a0 | 585 | wxStringTokenizer tkn(s, wxT(" |")); |
78d14f80 VS |
586 | |
587 | while (tkn.HasMoreTokens()) | |
588 | { | |
589 | s = tkn.GetNextToken(); | |
84389518 | 590 | #ifdef __WINDOWS__ |
d003330c VS |
591 | if (s == wxT("win")) isok = true; |
592 | #endif | |
b380439d | 593 | #if defined(__MAC__) || defined(__APPLE__) |
d003330c | 594 | if (s == wxT("mac")) isok = true; |
b380439d RD |
595 | #elif defined(__UNIX__) |
596 | if (s == wxT("unix")) isok = true; | |
78d14f80 | 597 | #endif |
d003330c VS |
598 | #ifdef __OS2__ |
599 | if (s == wxT("os2")) isok = true; | |
600 | #endif | |
601 | ||
602 | if (isok) | |
603 | break; | |
78d14f80 VS |
604 | } |
605 | } | |
606 | ||
607 | if (isok) | |
d7b1d73c | 608 | { |
78d14f80 | 609 | ProcessPlatformProperty(c); |
d7b1d73c VS |
610 | c = c->GetNext(); |
611 | } | |
78d14f80 VS |
612 | else |
613 | { | |
d7b1d73c | 614 | wxXmlNode *c2 = c->GetNext(); |
db59a97c | 615 | node->RemoveChild(c); |
78d14f80 | 616 | delete c; |
d7b1d73c | 617 | c = c2; |
78d14f80 | 618 | } |
78d14f80 VS |
619 | } |
620 | } | |
621 | ||
0526c8cc VZ |
622 | static void PreprocessForIdRanges(wxXmlNode *rootnode) |
623 | { | |
624 | // First go through the top level, looking for the names of ID ranges | |
625 | // as processing items is a lot easier if names are already known | |
626 | wxXmlNode *c = rootnode->GetChildren(); | |
627 | while (c) | |
628 | { | |
629 | if (c->GetName() == wxT("ids-range")) | |
630 | wxIdRangeManager::Get()->AddRange(c); | |
631 | c = c->GetNext(); | |
632 | } | |
633 | ||
634 | // Next, examine every 'name' for the '[' that denotes an ID in a range | |
635 | c = rootnode->GetChildren(); | |
636 | while (c) | |
637 | { | |
638 | wxString name = c->GetAttribute(wxT("name")); | |
639 | if (name.find('[') != wxString::npos) | |
640 | wxIdRangeManager::Get()->NotifyRangeOfItem(rootnode, name); | |
78d14f80 | 641 | |
0526c8cc VZ |
642 | // Do any children by recursion, then proceed to the next sibling |
643 | PreprocessForIdRanges(c); | |
644 | c = c->GetNext(); | |
645 | } | |
646 | } | |
78d14f80 | 647 | |
d614f51b | 648 | bool wxXmlResource::UpdateResources() |
78d14f80 | 649 | { |
d614f51b | 650 | bool rt = true; |
480505bc | 651 | |
eb2d0d23 VS |
652 | for ( wxXmlResourceDataRecords::iterator i = Data().begin(); |
653 | i != Data().end(); ++i ) | |
78d14f80 | 654 | { |
f396e5a7 VS |
655 | wxXmlResourceDataRecord* const rec = *i; |
656 | ||
9fc5a47c | 657 | // Check if we need to reload this one. |
78d14f80 | 658 | |
9fc5a47c VZ |
659 | // We never do it if this flag is specified. |
660 | if ( m_flags & wxXRC_NO_RELOADING ) | |
661 | continue; | |
662 | ||
663 | // Otherwise check its modification time if we can. | |
664 | #if wxUSE_DATETIME | |
665 | const wxDateTime lastModTime = GetXRCFileModTime(rec->File); | |
666 | ||
667 | if ( lastModTime.IsValid() && lastModTime <= rec->Time ) | |
668 | #else // !wxUSE_DATETIME | |
669 | // Never reload the file contents: we can't know whether it changed or | |
670 | // not in this build configuration and it would be unexpected and | |
671 | // counter-productive to get a performance hit (due to constant | |
672 | // reloading of XRC files) in a minimal wx build which is presumably | |
673 | // used because of resource constraints of the current platform. | |
674 | #endif // wxUSE_DATETIME/!wxUSE_DATETIME | |
78d14f80 | 675 | { |
9fc5a47c VZ |
676 | // No need to reload, the file wasn't modified since we did it |
677 | // last. | |
678 | continue; | |
78d14f80 VS |
679 | } |
680 | ||
9fc5a47c VZ |
681 | wxXmlDocument * const doc = DoLoadFile(rec->File); |
682 | if ( !doc ) | |
78d14f80 | 683 | { |
9fc5a47c VZ |
684 | // Notice that we keep the old XML document: it seems better to |
685 | // preserve it instead of throwing it away if we have nothing to | |
686 | // replace it with. | |
687 | rt = false; | |
688 | continue; | |
689 | } | |
78d14f80 | 690 | |
9fc5a47c VZ |
691 | // Replace the old resource contents with the new one. |
692 | delete rec->Doc; | |
693 | rec->Doc = doc; | |
78d14f80 | 694 | |
9fc5a47c | 695 | // And, now that we loaded it successfully, update the last load time. |
34af0de4 | 696 | #if wxUSE_DATETIME |
9fc5a47c | 697 | rec->Time = lastModTime.IsValid() ? lastModTime : wxDateTime::Now(); |
34af0de4 | 698 | #endif // wxUSE_DATETIME |
78d14f80 | 699 | } |
d614f51b VS |
700 | |
701 | return rt; | |
78d14f80 VS |
702 | } |
703 | ||
9fc5a47c VZ |
704 | wxXmlDocument *wxXmlResource::DoLoadFile(const wxString& filename) |
705 | { | |
706 | wxLogTrace(wxT("xrc"), wxT("opening file '%s'"), filename); | |
707 | ||
708 | wxInputStream *stream = NULL; | |
709 | ||
710 | #if wxUSE_FILESYSTEM | |
711 | wxFileSystem fsys; | |
712 | wxScopedPtr<wxFSFile> file(fsys.OpenFile(filename)); | |
713 | if (file) | |
714 | { | |
715 | // Notice that we don't have ownership of the stream in this case, it | |
716 | // remains owned by wxFSFile. | |
717 | stream = file->GetStream(); | |
718 | } | |
719 | #else // !wxUSE_FILESYSTEM | |
720 | wxFileInputStream fstream(filename); | |
721 | stream = &fstream; | |
722 | #endif // wxUSE_FILESYSTEM/!wxUSE_FILESYSTEM | |
723 | ||
724 | if ( !stream || !stream->IsOk() ) | |
725 | { | |
726 | wxLogError(_("Cannot open resources file '%s'."), filename); | |
727 | return NULL; | |
728 | } | |
729 | ||
730 | wxString encoding(wxT("UTF-8")); | |
731 | #if !wxUSE_UNICODE && wxUSE_INTL | |
732 | if ( (GetFlags() & wxXRC_USE_LOCALE) == 0 ) | |
733 | { | |
734 | // In case we are not using wxLocale to translate strings, convert the | |
735 | // strings GUI's charset. This must not be done when wxXRC_USE_LOCALE | |
736 | // is on, because it could break wxGetTranslation lookup. | |
737 | encoding = wxLocale::GetSystemEncodingName(); | |
738 | } | |
739 | #endif | |
740 | ||
741 | wxScopedPtr<wxXmlDocument> doc(new wxXmlDocument); | |
742 | if (!doc->Load(*stream, encoding)) | |
743 | { | |
744 | wxLogError(_("Cannot load resources from file '%s'."), filename); | |
745 | return NULL; | |
746 | } | |
747 | ||
748 | wxXmlNode * const root = doc->GetRoot(); | |
749 | if (root->GetName() != wxT("resource")) | |
750 | { | |
751 | ReportError | |
752 | ( | |
753 | root, | |
754 | "invalid XRC resource, doesn't have root node <resource>" | |
755 | ); | |
756 | return NULL; | |
757 | } | |
758 | ||
759 | long version; | |
760 | int v1, v2, v3, v4; | |
761 | wxString verstr = root->GetAttribute(wxT("version"), wxT("0.0.0.0")); | |
762 | if (wxSscanf(verstr, wxT("%i.%i.%i.%i"), &v1, &v2, &v3, &v4) == 4) | |
763 | version = v1*256*256*256+v2*256*256+v3*256+v4; | |
764 | else | |
765 | version = 0; | |
766 | if (m_version == -1) | |
767 | m_version = version; | |
768 | if (m_version != version) | |
769 | { | |
770 | wxLogWarning("Resource files must have same version number."); | |
771 | } | |
772 | ||
773 | ProcessPlatformProperty(root); | |
774 | PreprocessForIdRanges(root); | |
775 | wxIdRangeManager::Get()->FinaliseRanges(root); | |
776 | ||
777 | return doc.release(); | |
778 | } | |
779 | ||
b272b6dc RD |
780 | wxXmlNode *wxXmlResource::DoFindResource(wxXmlNode *parent, |
781 | const wxString& name, | |
782 | const wxString& classname, | |
23239d94 | 783 | bool recursive) const |
47793ab8 | 784 | { |
47793ab8 VS |
785 | wxXmlNode *node; |
786 | ||
787 | // first search for match at the top-level nodes (as this is | |
788 | // where the resource is most commonly looked for): | |
789 | for (node = parent->GetChildren(); node; node = node->GetNext()) | |
790 | { | |
23239d94 | 791 | if ( IsObjectNode(node) && node->GetAttribute(wxS("name")) == name ) |
2b5f62a0 | 792 | { |
23239d94 VZ |
793 | // empty class name matches everything |
794 | if ( classname.empty() ) | |
2b5f62a0 | 795 | return node; |
23239d94 VZ |
796 | |
797 | wxString cls(node->GetAttribute(wxS("class"))); | |
798 | ||
288b6107 | 799 | // object_ref may not have 'class' attribute: |
23239d94 | 800 | if (cls.empty() && node->GetName() == wxS("object_ref")) |
2b5f62a0 | 801 | { |
23239d94 | 802 | wxString refName = node->GetAttribute(wxS("ref")); |
2b5f62a0 VZ |
803 | if (refName.empty()) |
804 | continue; | |
23239d94 VZ |
805 | |
806 | const wxXmlNode * const refNode = GetResourceNode(refName); | |
807 | if ( refNode ) | |
808 | cls = refNode->GetAttribute(wxS("class")); | |
2b5f62a0 | 809 | } |
23239d94 VZ |
810 | |
811 | if ( cls == classname ) | |
812 | return node; | |
2b5f62a0 | 813 | } |
47793ab8 VS |
814 | } |
815 | ||
23239d94 | 816 | // then recurse in child nodes |
47793ab8 | 817 | if ( recursive ) |
23239d94 | 818 | { |
47793ab8 VS |
819 | for (node = parent->GetChildren(); node; node = node->GetNext()) |
820 | { | |
23239d94 | 821 | if ( IsObjectNode(node) ) |
47793ab8 | 822 | { |
f80ea77b | 823 | wxXmlNode* found = DoFindResource(node, name, classname, true); |
47793ab8 VS |
824 | if ( found ) |
825 | return found; | |
826 | } | |
827 | } | |
23239d94 | 828 | } |
47793ab8 | 829 | |
23239d94 | 830 | return NULL; |
47793ab8 | 831 | } |
78d14f80 | 832 | |
b272b6dc | 833 | wxXmlNode *wxXmlResource::FindResource(const wxString& name, |
47793ab8 VS |
834 | const wxString& classname, |
835 | bool recursive) | |
78d14f80 | 836 | { |
23239d94 VZ |
837 | wxString path; |
838 | wxXmlNode * const | |
839 | node = GetResourceNodeAndLocation(name, classname, recursive, &path); | |
840 | ||
841 | if ( !node ) | |
842 | { | |
819559b2 VS |
843 | ReportError |
844 | ( | |
845 | NULL, | |
846 | wxString::Format | |
847 | ( | |
848 | "XRC resource \"%s\" (class \"%s\") not found", | |
849 | name, classname | |
850 | ) | |
851 | ); | |
23239d94 VZ |
852 | } |
853 | #if wxUSE_FILESYSTEM | |
854 | else // node was found | |
855 | { | |
856 | // ensure that relative paths work correctly when loading this node | |
857 | // (which should happen as soon as we return as FindResource() result | |
858 | // is always passed to CreateResFromNode()) | |
859 | m_curFileSystem.ChangePathTo(path); | |
860 | } | |
861 | #endif // wxUSE_FILESYSTEM | |
862 | ||
863 | return node; | |
864 | } | |
865 | ||
866 | wxXmlNode * | |
867 | wxXmlResource::GetResourceNodeAndLocation(const wxString& name, | |
868 | const wxString& classname, | |
869 | bool recursive, | |
870 | wxString *path) const | |
871 | { | |
0526c8cc | 872 | // ensure everything is up-to-date: this is needed to support on-demand |
23239d94 VZ |
873 | // reloading of XRC files |
874 | const_cast<wxXmlResource *>(this)->UpdateResources(); | |
78d14f80 | 875 | |
eb2d0d23 VS |
876 | for ( wxXmlResourceDataRecords::const_iterator f = Data().begin(); |
877 | f != Data().end(); ++f ) | |
78d14f80 | 878 | { |
23239d94 VZ |
879 | wxXmlResourceDataRecord *const rec = *f; |
880 | wxXmlDocument * const doc = rec->Doc; | |
881 | if ( !doc || !doc->GetRoot() ) | |
47793ab8 VS |
882 | continue; |
883 | ||
23239d94 VZ |
884 | wxXmlNode * const |
885 | found = DoFindResource(doc->GetRoot(), name, classname, recursive); | |
47793ab8 VS |
886 | if ( found ) |
887 | { | |
23239d94 VZ |
888 | if ( path ) |
889 | *path = rec->File; | |
890 | ||
47793ab8 VS |
891 | return found; |
892 | } | |
78d14f80 VS |
893 | } |
894 | ||
78d14f80 VS |
895 | return NULL; |
896 | } | |
897 | ||
a1eeda0b VS |
898 | static void MergeNodesOver(wxXmlNode& dest, wxXmlNode& overwriteWith, |
899 | const wxString& overwriteFilename) | |
47793ab8 | 900 | { |
288b6107 | 901 | // Merge attributes: |
a1eeda0b | 902 | for ( wxXmlAttribute *attr = overwriteWith.GetAttributes(); |
288b6107 | 903 | attr; attr = attr->GetNext() ) |
47793ab8 | 904 | { |
288b6107 VS |
905 | wxXmlAttribute *dattr; |
906 | for (dattr = dest.GetAttributes(); dattr; dattr = dattr->GetNext()) | |
47793ab8 | 907 | { |
b272b6dc | 908 | |
288b6107 | 909 | if ( dattr->GetName() == attr->GetName() ) |
47793ab8 | 910 | { |
288b6107 | 911 | dattr->SetValue(attr->GetValue()); |
47793ab8 VS |
912 | break; |
913 | } | |
914 | } | |
78d14f80 | 915 | |
288b6107 VS |
916 | if ( !dattr ) |
917 | dest.AddAttribute(attr->GetName(), attr->GetValue()); | |
47793ab8 VS |
918 | } |
919 | ||
920 | // Merge child nodes: | |
a1eeda0b | 921 | for (wxXmlNode* node = overwriteWith.GetChildren(); node; node = node->GetNext()) |
47793ab8 | 922 | { |
288b6107 | 923 | wxString name = node->GetAttribute(wxT("name"), wxEmptyString); |
47793ab8 VS |
924 | wxXmlNode *dnode; |
925 | ||
926 | for (dnode = dest.GetChildren(); dnode; dnode = dnode->GetNext() ) | |
927 | { | |
928 | if ( dnode->GetName() == node->GetName() && | |
288b6107 | 929 | dnode->GetAttribute(wxT("name"), wxEmptyString) == name && |
47793ab8 VS |
930 | dnode->GetType() == node->GetType() ) |
931 | { | |
a1eeda0b | 932 | MergeNodesOver(*dnode, *node, overwriteFilename); |
47793ab8 VS |
933 | break; |
934 | } | |
935 | } | |
936 | ||
937 | if ( !dnode ) | |
b26a650c | 938 | { |
a1eeda0b VS |
939 | wxXmlNode *copyOfNode = new wxXmlNode(*node); |
940 | // remember referenced object's file, see GetFileNameFromNode() | |
941 | copyOfNode->AddAttribute(ATTR_INPUT_FILENAME, overwriteFilename); | |
942 | ||
b26a650c | 943 | static const wxChar *AT_END = wxT("end"); |
288b6107 | 944 | wxString insert_pos = node->GetAttribute(wxT("insert_at"), AT_END); |
b26a650c VZ |
945 | if ( insert_pos == AT_END ) |
946 | { | |
a1eeda0b | 947 | dest.AddChild(copyOfNode); |
b26a650c VZ |
948 | } |
949 | else if ( insert_pos == wxT("begin") ) | |
950 | { | |
a1eeda0b | 951 | dest.InsertChild(copyOfNode, dest.GetChildren()); |
b26a650c VZ |
952 | } |
953 | } | |
47793ab8 VS |
954 | } |
955 | ||
a1eeda0b VS |
956 | if ( dest.GetType() == wxXML_TEXT_NODE && overwriteWith.GetContent().length() ) |
957 | dest.SetContent(overwriteWith.GetContent()); | |
47793ab8 | 958 | } |
78d14f80 | 959 | |
af0ac990 VZ |
960 | wxObject * |
961 | wxXmlResource::DoCreateResFromNode(wxXmlNode& node, | |
962 | wxObject *parent, | |
963 | wxObject *instance, | |
964 | wxXmlResourceHandler *handlerToUse) | |
78d14f80 | 965 | { |
47793ab8 | 966 | // handling of referenced resource |
af0ac990 | 967 | if ( node.GetName() == wxT("object_ref") ) |
47793ab8 | 968 | { |
af0ac990 | 969 | wxString refName = node.GetAttribute(wxT("ref"), wxEmptyString); |
f80ea77b | 970 | wxXmlNode* refNode = FindResource(refName, wxEmptyString, true); |
47793ab8 VS |
971 | |
972 | if ( !refNode ) | |
973 | { | |
819559b2 VS |
974 | ReportError |
975 | ( | |
af0ac990 | 976 | &node, |
819559b2 VS |
977 | wxString::Format |
978 | ( | |
979 | "referenced object node with ref=\"%s\" not found", | |
980 | refName | |
981 | ) | |
982 | ); | |
47793ab8 VS |
983 | return NULL; |
984 | } | |
985 | ||
af0ac990 | 986 | if ( !node.GetChildren() ) |
44108a07 VS |
987 | { |
988 | // In the typical, simple case, <object_ref> is used to link | |
989 | // to another node and doesn't have any content of its own that | |
990 | // would overwrite linked object's properties. In this case, | |
991 | // we can simply create the resource from linked node. | |
992 | ||
af0ac990 | 993 | return DoCreateResFromNode(*refNode, parent, instance); |
44108a07 VS |
994 | } |
995 | else | |
996 | { | |
997 | // In the more complicated (but rare) case, <object_ref> has | |
998 | // subnodes that partially overwrite content of the referenced | |
999 | // object. In this case, we need to merge both XML trees and | |
1000 | // load the resource from result of the merge. | |
1001 | ||
1002 | wxXmlNode copy(*refNode); | |
af0ac990 | 1003 | MergeNodesOver(copy, node, GetFileNameFromNode(&node, Data())); |
a1eeda0b | 1004 | |
44108a07 VS |
1005 | // remember referenced object's file, see GetFileNameFromNode() |
1006 | copy.AddAttribute(ATTR_INPUT_FILENAME, | |
1007 | GetFileNameFromNode(refNode, Data())); | |
47793ab8 | 1008 | |
af0ac990 | 1009 | return DoCreateResFromNode(copy, parent, instance); |
44108a07 | 1010 | } |
47793ab8 VS |
1011 | } |
1012 | ||
317a0d73 | 1013 | if (handlerToUse) |
b380439d | 1014 | { |
af0ac990 | 1015 | if (handlerToUse->CanHandle(&node)) |
8e8a4e85 | 1016 | { |
af0ac990 | 1017 | return handlerToUse->CreateResource(&node, parent, instance); |
8e8a4e85 | 1018 | } |
317a0d73 | 1019 | } |
af0ac990 | 1020 | else if (node.GetName() == wxT("object")) |
b380439d | 1021 | { |
eb2d0d23 VS |
1022 | for ( wxVector<wxXmlResourceHandler*>::iterator h = m_handlers.begin(); |
1023 | h != m_handlers.end(); ++h ) | |
317a0d73 | 1024 | { |
eb2d0d23 | 1025 | wxXmlResourceHandler *handler = *h; |
af0ac990 VZ |
1026 | if (handler->CanHandle(&node)) |
1027 | return handler->CreateResource(&node, parent, instance); | |
78d14f80 | 1028 | } |
78d14f80 VS |
1029 | } |
1030 | ||
819559b2 VS |
1031 | ReportError |
1032 | ( | |
af0ac990 | 1033 | &node, |
819559b2 VS |
1034 | wxString::Format |
1035 | ( | |
1036 | "no handler found for XML node \"%s\" (class \"%s\")", | |
af0ac990 VZ |
1037 | node.GetName(), |
1038 | node.GetAttribute("class", wxEmptyString) | |
819559b2 VS |
1039 | ) |
1040 | ); | |
78d14f80 VS |
1041 | return NULL; |
1042 | } | |
1043 | ||
0526c8cc VZ |
1044 | wxIdRange::wxIdRange(const wxXmlNode* node, |
1045 | const wxString& rname, | |
1046 | const wxString& startno, | |
1047 | const wxString& rsize) | |
1048 | : m_name(rname), | |
1049 | m_start(0), | |
1050 | m_size(0), | |
1051 | m_item_end_found(0), | |
1052 | m_finalised(0) | |
1053 | { | |
1054 | long l; | |
1055 | if ( startno.ToLong(&l) ) | |
1056 | { | |
1057 | if ( l >= 0 ) | |
1058 | { | |
1059 | m_start = l; | |
1060 | } | |
1061 | else | |
1062 | { | |
1063 | wxXmlResource::Get()->ReportError | |
1064 | ( | |
1065 | node, | |
1066 | "a negative id-range start parameter was given" | |
1067 | ); | |
1068 | } | |
1069 | } | |
1070 | else | |
1071 | { | |
1072 | wxXmlResource::Get()->ReportError | |
1073 | ( | |
1074 | node, | |
1075 | "the id-range start parameter was malformed" | |
1076 | ); | |
1077 | } | |
1078 | ||
1079 | unsigned long ul; | |
1080 | if ( rsize.ToULong(&ul) ) | |
1081 | { | |
1082 | m_size = ul; | |
1083 | } | |
1084 | else | |
1085 | { | |
1086 | wxXmlResource::Get()->ReportError | |
1087 | ( | |
1088 | node, | |
1089 | "the id-range size parameter was malformed" | |
1090 | ); | |
1091 | } | |
1092 | } | |
1093 | ||
1094 | void wxIdRange::NoteItem(const wxXmlNode* node, const wxString& item) | |
1095 | { | |
1096 | // Nothing gets added here, but the existence of each item is noted | |
1097 | // thus getting an accurate count. 'item' will be either an integer e.g. | |
1098 | // [0] [123]: will eventually create an XRCID as start+integer or [start] | |
1099 | // or [end] which are synonyms for [0] or [range_size-1] respectively. | |
1100 | wxString content(item.Mid(1, item.length()-2)); | |
1101 | ||
1102 | // Check that basename+item wasn't foo[] | |
1103 | if (content.empty()) | |
1104 | { | |
1105 | wxXmlResource::Get()->ReportError(node, "an empty id-range item found"); | |
1106 | return; | |
1107 | } | |
1108 | ||
1109 | if (content=="start") | |
1110 | { | |
1111 | // "start" means [0], so store that in the set | |
1112 | if (m_indices.count(0) == 0) | |
1113 | { | |
1114 | m_indices.insert(0); | |
1115 | } | |
1116 | else | |
1117 | { | |
1118 | wxXmlResource::Get()->ReportError | |
1119 | ( | |
1120 | node, | |
1121 | "duplicate id-range item found" | |
1122 | ); | |
1123 | } | |
1124 | } | |
1125 | else if (content=="end") | |
1126 | { | |
1127 | // We can't yet be certain which XRCID this will be equivalent to, so | |
1128 | // just note that there's an item with this name, in case we need to | |
1129 | // inc the range size | |
1130 | m_item_end_found = true; | |
1131 | } | |
1132 | else | |
1133 | { | |
1134 | // Anything else will be an integer, or rubbish | |
1135 | unsigned long l; | |
1136 | if ( content.ToULong(&l) ) | |
1137 | { | |
1138 | if (m_indices.count(l) == 0) | |
1139 | { | |
1140 | m_indices.insert(l); | |
1141 | // Check that this item wouldn't fall outside the current range | |
1142 | // extent | |
1143 | if (l >= m_size) | |
1144 | { | |
1145 | m_size = l + 1; | |
1146 | } | |
1147 | } | |
1148 | else | |
1149 | { | |
1150 | wxXmlResource::Get()->ReportError | |
1151 | ( | |
1152 | node, | |
1153 | "duplicate id-range item found" | |
1154 | ); | |
1155 | } | |
1156 | ||
1157 | } | |
1158 | else | |
1159 | { | |
1160 | wxXmlResource::Get()->ReportError | |
1161 | ( | |
1162 | node, | |
1163 | "an id-range item had a malformed index" | |
1164 | ); | |
1165 | } | |
1166 | } | |
1167 | } | |
1168 | ||
1169 | void wxIdRange::Finalise(const wxXmlNode* node) | |
1170 | { | |
1171 | wxCHECK_RET( !IsFinalised(), | |
1172 | "Trying to finalise an already-finalised range" ); | |
1173 | ||
1174 | // Now we know about all the items, we can get an accurate range size | |
1175 | // Expand any requested range-size if there were more items than would fit | |
1176 | m_size = wxMax(m_size, m_indices.size()); | |
1177 | ||
1178 | // If an item is explicitly called foo[end], ensure it won't clash with | |
1179 | // another item | |
1180 | if ( m_item_end_found && m_indices.count(m_size-1) ) | |
1181 | ++m_size; | |
1182 | if (m_size == 0) | |
1183 | { | |
1184 | // This will happen if someone creates a range but no items in this xrc | |
1185 | // file Report the error and abort, but don't finalise, in case items | |
1186 | // appear later | |
1187 | wxXmlResource::Get()->ReportError | |
1188 | ( | |
1189 | node, | |
1190 | "trying to create an empty id-range" | |
1191 | ); | |
1192 | return; | |
1193 | } | |
1194 | ||
1195 | if (m_start==0) | |
1196 | { | |
1197 | // This is the usual case, where the user didn't specify a start ID | |
1198 | // So get the range using NewControlId(). | |
1199 | // | |
1200 | // NB: negative numbers, but NewControlId already returns the most | |
1201 | // negative | |
1202 | m_start = wxWindow::NewControlId(m_size); | |
1203 | wxCHECK_RET( m_start != wxID_NONE, | |
1204 | "insufficient IDs available to create range" ); | |
1205 | m_end = m_start + m_size - 1; | |
1206 | } | |
1207 | else | |
1208 | { | |
1209 | // The user already specified a start value, which must be positive | |
1210 | m_end = m_start + m_size - 1; | |
1211 | } | |
1212 | ||
1213 | // Create the XRCIDs | |
1214 | for (int i=m_start; i <= m_end; ++i) | |
1215 | { | |
1216 | // First clear any pre-existing XRCID | |
1217 | // Necessary for wxXmlResource::Unload() followed by Load() | |
1218 | wxIdRangeManager::RemoveXRCIDEntry( | |
1219 | m_name + wxString::Format("[%i]", i-m_start)); | |
1220 | ||
1221 | // Use the second parameter of GetXRCID to force it to take the value i | |
1222 | wxXmlResource::GetXRCID(m_name + wxString::Format("[%i]", i-m_start), i); | |
e7cad4b7 VZ |
1223 | wxLogTrace("xrcrange", |
1224 | "integer = %i %s now returns %i", | |
1225 | i, | |
1226 | m_name + wxString::Format("[%i]", i-m_start), | |
1227 | XRCID((m_name + wxString::Format("[%i]", i-m_start)).mb_str())); | |
0526c8cc VZ |
1228 | } |
1229 | // and these special ones | |
1230 | wxIdRangeManager::RemoveXRCIDEntry(m_name + "[start]"); | |
1231 | wxXmlResource::GetXRCID(m_name + "[start]", m_start); | |
1232 | wxIdRangeManager::RemoveXRCIDEntry(m_name + "[end]"); | |
1233 | wxXmlResource::GetXRCID(m_name + "[end]", m_end); | |
1234 | wxLogTrace("xrcrange","%s[start] = %i %s[end] = %i", | |
1235 | m_name.mb_str(),XRCID(wxString(m_name+"[start]").mb_str()), | |
1236 | m_name.mb_str(),XRCID(wxString(m_name+"[end]").mb_str())); | |
1237 | ||
1238 | m_finalised = true; | |
1239 | } | |
1240 | ||
1241 | wxIdRangeManager *wxIdRangeManager::ms_instance = NULL; | |
1242 | ||
1243 | /*static*/ wxIdRangeManager *wxIdRangeManager::Get() | |
1244 | { | |
1245 | if ( !ms_instance ) | |
1246 | ms_instance = new wxIdRangeManager; | |
1247 | return ms_instance; | |
1248 | } | |
1249 | ||
1250 | /*static*/ wxIdRangeManager *wxIdRangeManager::Set(wxIdRangeManager *res) | |
1251 | { | |
1252 | wxIdRangeManager *old = ms_instance; | |
1253 | ms_instance = res; | |
1254 | return old; | |
1255 | } | |
1256 | ||
1257 | wxIdRangeManager::~wxIdRangeManager() | |
1258 | { | |
1259 | for ( wxVector<wxIdRange*>::iterator i = m_IdRanges.begin(); | |
1260 | i != m_IdRanges.end(); ++i ) | |
1261 | { | |
1262 | delete *i; | |
1263 | } | |
1264 | m_IdRanges.clear(); | |
1265 | ||
1266 | delete ms_instance; | |
1267 | } | |
1268 | ||
1269 | void wxIdRangeManager::AddRange(const wxXmlNode* node) | |
1270 | { | |
1271 | wxString name = node->GetAttribute("name"); | |
1272 | wxString start = node->GetAttribute("start", "0"); | |
1273 | wxString size = node->GetAttribute("size", "0"); | |
1274 | if (name.empty()) | |
1275 | { | |
1276 | wxXmlResource::Get()->ReportError | |
1277 | ( | |
1278 | node, | |
1279 | "xrc file contains an id-range without a name" | |
1280 | ); | |
1281 | return; | |
1282 | } | |
1283 | ||
1284 | int index = Find(name); | |
1285 | if (index == wxNOT_FOUND) | |
1286 | { | |
1287 | wxLogTrace("xrcrange", | |
1288 | "Adding ID range, name=%s start=%s size=%s", | |
1289 | name, start, size); | |
1290 | ||
1291 | m_IdRanges.push_back(new wxIdRange(node, name, start, size)); | |
1292 | } | |
1293 | else | |
1294 | { | |
1295 | // There was already a range with this name. Let's hope this is | |
1296 | // from an Unload()/(re)Load(), not an unintentional duplication | |
1297 | wxLogTrace("xrcrange", | |
1298 | "Replacing ID range, name=%s start=%s size=%s", | |
1299 | name, start, size); | |
1300 | ||
1301 | wxIdRange* oldrange = m_IdRanges.at(index); | |
1302 | m_IdRanges.at(index) = new wxIdRange(node, name, start, size); | |
1303 | delete oldrange; | |
1304 | } | |
1305 | } | |
1306 | ||
1307 | wxIdRange * | |
1308 | wxIdRangeManager::FindRangeForItem(const wxXmlNode* node, | |
1309 | const wxString& item, | |
1310 | wxString& value) const | |
1311 | { | |
1312 | wxString basename = item.BeforeFirst('['); | |
1313 | wxCHECK_MSG( !basename.empty(), NULL, | |
1314 | "an id-range item without a range name" ); | |
1315 | ||
1316 | int index = Find(basename); | |
1317 | if (index == wxNOT_FOUND) | |
1318 | { | |
1319 | // Don't assert just because we've found an unexpected foo[123] | |
1320 | // Someone might just want such a name, nothing to do with ranges | |
1321 | return NULL; | |
1322 | } | |
1323 | ||
1324 | value = item.Mid(basename.Len()); | |
1325 | if (value.at(value.length()-1)==']') | |
1326 | { | |
1327 | return m_IdRanges.at(index); | |
1328 | } | |
1329 | wxXmlResource::Get()->ReportError(node, "a malformed id-range item"); | |
1330 | return NULL; | |
1331 | } | |
1332 | ||
1333 | void | |
1334 | wxIdRangeManager::NotifyRangeOfItem(const wxXmlNode* node, | |
1335 | const wxString& item) const | |
1336 | { | |
1337 | wxString value; | |
1338 | wxIdRange* range = FindRangeForItem(node, item, value); | |
1339 | if (range) | |
1340 | range->NoteItem(node, value); | |
1341 | } | |
1342 | ||
1343 | int wxIdRangeManager::Find(const wxString& rangename) const | |
1344 | { | |
1345 | for ( int i=0; i < (int)m_IdRanges.size(); ++i ) | |
1346 | { | |
1347 | if (m_IdRanges.at(i)->GetName() == rangename) | |
1348 | return i; | |
1349 | } | |
1350 | ||
1351 | return wxNOT_FOUND; | |
1352 | } | |
1353 | ||
1354 | void wxIdRangeManager::FinaliseRanges(const wxXmlNode* node) const | |
1355 | { | |
1356 | for ( wxVector<wxIdRange*>::const_iterator i = m_IdRanges.begin(); | |
1357 | i != m_IdRanges.end(); ++i ) | |
1358 | { | |
1359 | // Check if this range has already been finalised. Quite possible, | |
1360 | // as FinaliseRanges() gets called for each .xrc file loaded | |
1361 | if (!(*i)->IsFinalised()) | |
1362 | { | |
1363 | wxLogTrace("xrcrange", "Finalising ID range %s", (*i)->GetName()); | |
1364 | (*i)->Finalise(node); | |
1365 | } | |
1366 | } | |
1367 | } | |
1368 | ||
78d14f80 | 1369 | |
eb2d0d23 VS |
1370 | class wxXmlSubclassFactories : public wxVector<wxXmlSubclassFactory*> |
1371 | { | |
1372 | // this is a class so that it can be forward-declared | |
1373 | }; | |
2b5f62a0 | 1374 | |
eb2d0d23 | 1375 | wxXmlSubclassFactories *wxXmlResource::ms_subclassFactories = NULL; |
2b5f62a0 VZ |
1376 | |
1377 | /*static*/ void wxXmlResource::AddSubclassFactory(wxXmlSubclassFactory *factory) | |
1378 | { | |
1379 | if (!ms_subclassFactories) | |
1380 | { | |
eb2d0d23 | 1381 | ms_subclassFactories = new wxXmlSubclassFactories; |
2b5f62a0 | 1382 | } |
eb2d0d23 | 1383 | ms_subclassFactories->push_back(factory); |
2b5f62a0 VZ |
1384 | } |
1385 | ||
1386 | class wxXmlSubclassFactoryCXX : public wxXmlSubclassFactory | |
1387 | { | |
1388 | public: | |
1389 | ~wxXmlSubclassFactoryCXX() {} | |
1390 | ||
1391 | wxObject *Create(const wxString& className) | |
1392 | { | |
1393 | wxClassInfo* classInfo = wxClassInfo::FindClass(className); | |
1394 | ||
1395 | if (classInfo) | |
1396 | return classInfo->CreateObject(); | |
1397 | else | |
1398 | return NULL; | |
1399 | } | |
1400 | }; | |
1401 | ||
1402 | ||
1403 | ||
78d14f80 | 1404 | |
78d14f80 VS |
1405 | wxXmlResourceHandler::wxXmlResourceHandler() |
1406 | : m_node(NULL), m_parent(NULL), m_instance(NULL), | |
9a8d8c5a | 1407 | m_parentAsWindow(NULL) |
78d14f80 VS |
1408 | {} |
1409 | ||
1410 | ||
1411 | ||
1412 | wxObject *wxXmlResourceHandler::CreateResource(wxXmlNode *node, wxObject *parent, wxObject *instance) | |
1413 | { | |
1414 | wxXmlNode *myNode = m_node; | |
1415 | wxString myClass = m_class; | |
1416 | wxObject *myParent = m_parent, *myInstance = m_instance; | |
9a8d8c5a | 1417 | wxWindow *myParentAW = m_parentAsWindow; |
78d14f80 | 1418 | |
daa85ee3 | 1419 | m_instance = instance; |
288b6107 | 1420 | if (!m_instance && node->HasAttribute(wxT("subclass")) && |
daa85ee3 VS |
1421 | !(m_resource->GetFlags() & wxXRC_NO_SUBCLASSING)) |
1422 | { | |
288b6107 | 1423 | wxString subclass = node->GetAttribute(wxT("subclass"), wxEmptyString); |
2b5f62a0 | 1424 | if (!subclass.empty()) |
daa85ee3 | 1425 | { |
eb2d0d23 VS |
1426 | for (wxXmlSubclassFactories::iterator i = wxXmlResource::ms_subclassFactories->begin(); |
1427 | i != wxXmlResource::ms_subclassFactories->end(); ++i) | |
2b5f62a0 | 1428 | { |
eb2d0d23 | 1429 | m_instance = (*i)->Create(subclass); |
2b5f62a0 VZ |
1430 | if (m_instance) |
1431 | break; | |
1432 | } | |
daa85ee3 | 1433 | |
2b5f62a0 VZ |
1434 | if (!m_instance) |
1435 | { | |
288b6107 | 1436 | wxString name = node->GetAttribute(wxT("name"), wxEmptyString); |
819559b2 VS |
1437 | ReportError |
1438 | ( | |
1439 | node, | |
1440 | wxString::Format | |
1441 | ( | |
1442 | "subclass \"%s\" not found for resource \"%s\", not subclassing", | |
1443 | subclass, name | |
1444 | ) | |
1445 | ); | |
2b5f62a0 VZ |
1446 | } |
1447 | } | |
daa85ee3 VS |
1448 | } |
1449 | ||
78d14f80 | 1450 | m_node = node; |
288b6107 | 1451 | m_class = node->GetAttribute(wxT("class"), wxEmptyString); |
78d14f80 | 1452 | m_parent = parent; |
78d14f80 | 1453 | m_parentAsWindow = wxDynamicCast(m_parent, wxWindow); |
78d14f80 VS |
1454 | |
1455 | wxObject *returned = DoCreateResource(); | |
1456 | ||
1457 | m_node = myNode; | |
1458 | m_class = myClass; | |
1459 | m_parent = myParent; m_parentAsWindow = myParentAW; | |
9a8d8c5a | 1460 | m_instance = myInstance; |
78d14f80 VS |
1461 | |
1462 | return returned; | |
1463 | } | |
1464 | ||
1465 | ||
1466 | void wxXmlResourceHandler::AddStyle(const wxString& name, int value) | |
1467 | { | |
1468 | m_styleNames.Add(name); | |
1469 | m_styleValues.Add(value); | |
1470 | } | |
1471 | ||
1472 | ||
1473 | ||
1474 | void wxXmlResourceHandler::AddWindowStyles() | |
1475 | { | |
9dc579b3 | 1476 | XRC_ADD_STYLE(wxCLIP_CHILDREN); |
d54a3e73 VZ |
1477 | |
1478 | // the border styles all have the old and new names, recognize both for now | |
1479 | XRC_ADD_STYLE(wxSIMPLE_BORDER); XRC_ADD_STYLE(wxBORDER_SIMPLE); | |
1480 | XRC_ADD_STYLE(wxSUNKEN_BORDER); XRC_ADD_STYLE(wxBORDER_SUNKEN); | |
b37e592b JS |
1481 | XRC_ADD_STYLE(wxDOUBLE_BORDER); XRC_ADD_STYLE(wxBORDER_DOUBLE); // deprecated |
1482 | XRC_ADD_STYLE(wxBORDER_THEME); | |
d54a3e73 VZ |
1483 | XRC_ADD_STYLE(wxRAISED_BORDER); XRC_ADD_STYLE(wxBORDER_RAISED); |
1484 | XRC_ADD_STYLE(wxSTATIC_BORDER); XRC_ADD_STYLE(wxBORDER_STATIC); | |
1485 | XRC_ADD_STYLE(wxNO_BORDER); XRC_ADD_STYLE(wxBORDER_NONE); | |
1486 | ||
daa85ee3 VS |
1487 | XRC_ADD_STYLE(wxTRANSPARENT_WINDOW); |
1488 | XRC_ADD_STYLE(wxWANTS_CHARS); | |
43840d8b | 1489 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); |
daa85ee3 | 1490 | XRC_ADD_STYLE(wxNO_FULL_REPAINT_ON_RESIZE); |
7539ba56 | 1491 | XRC_ADD_STYLE(wxFULL_REPAINT_ON_RESIZE); |
162a4f93 | 1492 | XRC_ADD_STYLE(wxALWAYS_SHOW_SB); |
9f4ed861 | 1493 | XRC_ADD_STYLE(wxWS_EX_BLOCK_EVENTS); |
b0802e64 | 1494 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); |
78d14f80 VS |
1495 | } |
1496 | ||
1497 | ||
1498 | ||
1499 | bool wxXmlResourceHandler::HasParam(const wxString& param) | |
1500 | { | |
1501 | return (GetParamNode(param) != NULL); | |
1502 | } | |
1503 | ||
1504 | ||
1505 | int wxXmlResourceHandler::GetStyle(const wxString& param, int defaults) | |
1506 | { | |
1507 | wxString s = GetParamValue(param); | |
1508 | ||
1509 | if (!s) return defaults; | |
1510 | ||
2b5f62a0 | 1511 | wxStringTokenizer tkn(s, wxT("| \t\n"), wxTOKEN_STRTOK); |
78d14f80 VS |
1512 | int style = 0; |
1513 | int index; | |
1514 | wxString fl; | |
1515 | while (tkn.HasMoreTokens()) | |
1516 | { | |
1517 | fl = tkn.GetNextToken(); | |
1518 | index = m_styleNames.Index(fl); | |
1519 | if (index != wxNOT_FOUND) | |
819559b2 | 1520 | { |
78d14f80 | 1521 | style |= m_styleValues[index]; |
819559b2 | 1522 | } |
78d14f80 | 1523 | else |
819559b2 VS |
1524 | { |
1525 | ReportParamError | |
1526 | ( | |
1527 | param, | |
1528 | wxString::Format("unknown style flag \"%s\"", fl) | |
1529 | ); | |
1530 | } | |
78d14f80 VS |
1531 | } |
1532 | return style; | |
1533 | } | |
1534 | ||
1535 | ||
1536 | ||
ee1046d1 | 1537 | wxString wxXmlResourceHandler::GetText(const wxString& param, bool translate) |
78d14f80 | 1538 | { |
7b56015f VS |
1539 | wxXmlNode *parNode = GetParamNode(param); |
1540 | wxString str1(GetNodeContent(parNode)); | |
78d14f80 | 1541 | wxString str2; |
424af7aa VS |
1542 | |
1543 | // "\\" wasn't translated to "\" prior to 2.5.3.0: | |
1544 | const bool escapeBackslash = (m_resource->CompareVersion(2,5,3,0) >= 0); | |
78d14f80 | 1545 | |
b272b6dc RD |
1546 | // VS: First version of XRC resources used $ instead of & (which is |
1547 | // illegal in XML), but later I realized that '_' fits this purpose | |
718cf160 | 1548 | // much better (because &File means "File with F underlined"). |
424af7aa VS |
1549 | const wxChar amp_char = (m_resource->CompareVersion(2,3,0,1) < 0) |
1550 | ? '$' : '_'; | |
78d14f80 | 1551 | |
424af7aa | 1552 | for ( wxString::const_iterator dt = str1.begin(); dt != str1.end(); ++dt ) |
78d14f80 VS |
1553 | { |
1554 | // Remap amp_char to &, map double amp_char to amp_char (for things | |
1555 | // like "&File..." -- this is illegal in XML, so we use "_File..."): | |
424af7aa | 1556 | if ( *dt == amp_char ) |
78d14f80 VS |
1557 | { |
1558 | if ( *(++dt) == amp_char ) | |
1559 | str2 << amp_char; | |
1560 | else | |
1561 | str2 << wxT('&') << *dt; | |
1562 | } | |
984c33c9 | 1563 | // Remap \n to CR, \r to LF, \t to TAB, \\ to \: |
424af7aa VS |
1564 | else if ( *dt == wxT('\\') ) |
1565 | { | |
1566 | switch ( (*(++dt)).GetValue() ) | |
78d14f80 | 1567 | { |
984c33c9 VS |
1568 | case wxT('n'): |
1569 | str2 << wxT('\n'); | |
1570 | break; | |
e7a3a5a5 | 1571 | |
984c33c9 VS |
1572 | case wxT('t'): |
1573 | str2 << wxT('\t'); | |
1574 | break; | |
e7a3a5a5 | 1575 | |
984c33c9 VS |
1576 | case wxT('r'): |
1577 | str2 << wxT('\r'); | |
1578 | break; | |
1579 | ||
1580 | case wxT('\\') : | |
1581 | // "\\" wasn't translated to "\" prior to 2.5.3.0: | |
424af7aa | 1582 | if ( escapeBackslash ) |
984c33c9 VS |
1583 | { |
1584 | str2 << wxT('\\'); | |
1585 | break; | |
1586 | } | |
1587 | // else fall-through to default: branch below | |
e7a3a5a5 | 1588 | |
984c33c9 VS |
1589 | default: |
1590 | str2 << wxT('\\') << *dt; | |
1591 | break; | |
78d14f80 | 1592 | } |
424af7aa VS |
1593 | } |
1594 | else | |
1595 | { | |
1596 | str2 << *dt; | |
1597 | } | |
78d14f80 | 1598 | } |
b272b6dc | 1599 | |
7b56015f VS |
1600 | if (m_resource->GetFlags() & wxXRC_USE_LOCALE) |
1601 | { | |
1602 | if (translate && parNode && | |
288b6107 | 1603 | parNode->GetAttribute(wxT("translate"), wxEmptyString) != wxT("0")) |
7b56015f | 1604 | { |
d4a724d4 | 1605 | return wxGetTranslation(str2, m_resource->GetDomain()); |
7b56015f VS |
1606 | } |
1607 | else | |
1608 | { | |
1609 | #if wxUSE_UNICODE | |
1610 | return str2; | |
1611 | #else | |
1612 | // The string is internally stored as UTF-8, we have to convert | |
1613 | // it into system's default encoding so that it can be displayed: | |
6251e0ea | 1614 | return wxString(str2.wc_str(wxConvUTF8), wxConvLocal); |
7b56015f VS |
1615 | #endif |
1616 | } | |
1617 | } | |
8516a98b DS |
1618 | |
1619 | // If wxXRC_USE_LOCALE is not set, then the string is already in | |
1620 | // system's default encoding in ANSI build, so we don't have to | |
1621 | // do anything special here. | |
1622 | return str2; | |
78d14f80 VS |
1623 | } |
1624 | ||
1625 | ||
1626 | ||
1627 | long wxXmlResourceHandler::GetLong(const wxString& param, long defaultv) | |
1628 | { | |
1629 | long value; | |
1630 | wxString str1 = GetParamValue(param); | |
1631 | ||
1632 | if (!str1.ToLong(&value)) | |
1633 | value = defaultv; | |
1634 | ||
1635 | return value; | |
1636 | } | |
e7a3a5a5 | 1637 | |
1df61962 VS |
1638 | float wxXmlResourceHandler::GetFloat(const wxString& param, float defaultv) |
1639 | { | |
1d9473d3 | 1640 | wxString str = GetParamValue(param); |
1df61962 | 1641 | |
9edb8fa0 VZ |
1642 | // strings in XRC always use C locale so make sure to use the |
1643 | // locale-independent wxString::ToCDouble() and not ToDouble() which uses | |
1644 | // the current locale with a potentially different decimal point character | |
1d9473d3 | 1645 | double value; |
9edb8fa0 | 1646 | if (!str.ToCDouble(&value)) |
1df61962 VS |
1647 | value = defaultv; |
1648 | ||
17a1ebd1 | 1649 | return wx_truncate_cast(float, value); |
1df61962 | 1650 | } |
78d14f80 | 1651 | |
af1337b0 | 1652 | |
78d14f80 VS |
1653 | int wxXmlResourceHandler::GetID() |
1654 | { | |
13de23f6 | 1655 | return wxXmlResource::GetXRCID(GetName()); |
78d14f80 VS |
1656 | } |
1657 | ||
1658 | ||
af1337b0 | 1659 | |
78d14f80 VS |
1660 | wxString wxXmlResourceHandler::GetName() |
1661 | { | |
288b6107 | 1662 | return m_node->GetAttribute(wxT("name"), wxT("-1")); |
78d14f80 VS |
1663 | } |
1664 | ||
1665 | ||
1666 | ||
8758875e VZ |
1667 | bool wxXmlResourceHandler::GetBoolAttr(const wxString& attr, bool defaultv) |
1668 | { | |
1669 | wxString v; | |
1670 | return m_node->GetAttribute(attr, &v) ? v == '1' : defaultv; | |
1671 | } | |
1672 | ||
78d14f80 VS |
1673 | bool wxXmlResourceHandler::GetBool(const wxString& param, bool defaultv) |
1674 | { | |
8758875e | 1675 | const wxString v = GetParamValue(param); |
8516a98b | 1676 | |
8758875e | 1677 | return v.empty() ? defaultv : (v == '1'); |
78d14f80 VS |
1678 | } |
1679 | ||
1680 | ||
1df61962 VS |
1681 | static wxColour GetSystemColour(const wxString& name) |
1682 | { | |
1683 | if (!name.empty()) | |
1684 | { | |
1685 | #define SYSCLR(clr) \ | |
9a83f860 | 1686 | if (name == wxT(#clr)) return wxSystemSettings::GetColour(clr); |
1df61962 VS |
1687 | SYSCLR(wxSYS_COLOUR_SCROLLBAR) |
1688 | SYSCLR(wxSYS_COLOUR_BACKGROUND) | |
1689 | SYSCLR(wxSYS_COLOUR_DESKTOP) | |
1690 | SYSCLR(wxSYS_COLOUR_ACTIVECAPTION) | |
1691 | SYSCLR(wxSYS_COLOUR_INACTIVECAPTION) | |
1692 | SYSCLR(wxSYS_COLOUR_MENU) | |
1693 | SYSCLR(wxSYS_COLOUR_WINDOW) | |
1694 | SYSCLR(wxSYS_COLOUR_WINDOWFRAME) | |
1695 | SYSCLR(wxSYS_COLOUR_MENUTEXT) | |
1696 | SYSCLR(wxSYS_COLOUR_WINDOWTEXT) | |
1697 | SYSCLR(wxSYS_COLOUR_CAPTIONTEXT) | |
1698 | SYSCLR(wxSYS_COLOUR_ACTIVEBORDER) | |
1699 | SYSCLR(wxSYS_COLOUR_INACTIVEBORDER) | |
1700 | SYSCLR(wxSYS_COLOUR_APPWORKSPACE) | |
1701 | SYSCLR(wxSYS_COLOUR_HIGHLIGHT) | |
1702 | SYSCLR(wxSYS_COLOUR_HIGHLIGHTTEXT) | |
1703 | SYSCLR(wxSYS_COLOUR_BTNFACE) | |
1704 | SYSCLR(wxSYS_COLOUR_3DFACE) | |
1705 | SYSCLR(wxSYS_COLOUR_BTNSHADOW) | |
1706 | SYSCLR(wxSYS_COLOUR_3DSHADOW) | |
1707 | SYSCLR(wxSYS_COLOUR_GRAYTEXT) | |
1708 | SYSCLR(wxSYS_COLOUR_BTNTEXT) | |
1709 | SYSCLR(wxSYS_COLOUR_INACTIVECAPTIONTEXT) | |
1710 | SYSCLR(wxSYS_COLOUR_BTNHIGHLIGHT) | |
1711 | SYSCLR(wxSYS_COLOUR_BTNHILIGHT) | |
1712 | SYSCLR(wxSYS_COLOUR_3DHIGHLIGHT) | |
1713 | SYSCLR(wxSYS_COLOUR_3DHILIGHT) | |
1714 | SYSCLR(wxSYS_COLOUR_3DDKSHADOW) | |
1715 | SYSCLR(wxSYS_COLOUR_3DLIGHT) | |
1716 | SYSCLR(wxSYS_COLOUR_INFOTEXT) | |
1717 | SYSCLR(wxSYS_COLOUR_INFOBK) | |
1718 | SYSCLR(wxSYS_COLOUR_LISTBOX) | |
1719 | SYSCLR(wxSYS_COLOUR_HOTLIGHT) | |
1720 | SYSCLR(wxSYS_COLOUR_GRADIENTACTIVECAPTION) | |
1721 | SYSCLR(wxSYS_COLOUR_GRADIENTINACTIVECAPTION) | |
1722 | SYSCLR(wxSYS_COLOUR_MENUHILIGHT) | |
1723 | SYSCLR(wxSYS_COLOUR_MENUBAR) | |
1724 | #undef SYSCLR | |
1725 | } | |
1726 | ||
1727 | return wxNullColour; | |
1728 | } | |
78d14f80 | 1729 | |
984f1d84 | 1730 | wxColour wxXmlResourceHandler::GetColour(const wxString& param, const wxColour& defaultv) |
78d14f80 VS |
1731 | { |
1732 | wxString v = GetParamValue(param); | |
984f1d84 VS |
1733 | |
1734 | if ( v.empty() ) | |
1735 | return defaultv; | |
1736 | ||
68b4e4cf | 1737 | wxColour clr; |
1df61962 | 1738 | |
68b4e4cf WS |
1739 | // wxString -> wxColour conversion |
1740 | if (!clr.Set(v)) | |
78d14f80 | 1741 | { |
1df61962 VS |
1742 | // the colour doesn't use #RRGGBB format, check if it is symbolic |
1743 | // colour name: | |
68b4e4cf | 1744 | clr = GetSystemColour(v); |
1df61962 VS |
1745 | if (clr.Ok()) |
1746 | return clr; | |
e7a3a5a5 | 1747 | |
819559b2 VS |
1748 | ReportParamError |
1749 | ( | |
1750 | param, | |
1751 | wxString::Format("incorrect colour specification \"%s\"", v) | |
1752 | ); | |
78d14f80 VS |
1753 | return wxNullColour; |
1754 | } | |
1755 | ||
68b4e4cf | 1756 | return clr; |
78d14f80 VS |
1757 | } |
1758 | ||
1c60f644 VS |
1759 | namespace |
1760 | { | |
1761 | ||
1762 | // if 'param' has stock_id/stock_client, extracts them and returns true | |
1763 | bool GetStockArtAttrs(const wxXmlNode *paramNode, | |
1764 | const wxString& defaultArtClient, | |
1765 | wxString& art_id, wxString& art_client) | |
1766 | { | |
1767 | if ( paramNode ) | |
1768 | { | |
1769 | art_id = paramNode->GetAttribute("stock_id", ""); | |
1770 | ||
1771 | if ( !art_id.empty() ) | |
1772 | { | |
1773 | art_id = wxART_MAKE_ART_ID_FROM_STR(art_id); | |
1774 | ||
1775 | art_client = paramNode->GetAttribute("stock_client", ""); | |
1776 | if ( art_client.empty() ) | |
1777 | art_client = defaultArtClient; | |
1778 | else | |
1779 | art_client = wxART_MAKE_CLIENT_ID_FROM_STR(art_client); | |
78d14f80 | 1780 | |
1c60f644 VS |
1781 | return true; |
1782 | } | |
1783 | } | |
1784 | ||
1785 | return false; | |
1786 | } | |
1787 | ||
1788 | } // anonymous namespace | |
78d14f80 | 1789 | |
92e898b0 | 1790 | wxBitmap wxXmlResourceHandler::GetBitmap(const wxString& param, |
db59a97c VS |
1791 | const wxArtClient& defaultArtClient, |
1792 | wxSize size) | |
326462ae | 1793 | { |
9c1d2aa2 VZ |
1794 | // it used to be possible to pass an empty string here to indicate that the |
1795 | // bitmap name should be read from this node itself but this is not | |
1796 | // supported any more because GetBitmap(m_node) can be used directly | |
1797 | // instead | |
1798 | wxASSERT_MSG( !param.empty(), "bitmap parameter name can't be empty" ); | |
1799 | ||
1800 | const wxXmlNode* const node = GetParamNode(param); | |
1801 | ||
1802 | if ( !node ) | |
1803 | { | |
1804 | // this is not an error as bitmap parameter could be optional | |
1805 | return wxNullBitmap; | |
1806 | } | |
1807 | ||
1808 | return GetBitmap(node, defaultArtClient, size); | |
326462ae VZ |
1809 | } |
1810 | ||
1811 | wxBitmap wxXmlResourceHandler::GetBitmap(const wxXmlNode* node, | |
1812 | const wxArtClient& defaultArtClient, | |
1813 | wxSize size) | |
78d14f80 | 1814 | { |
9c1d2aa2 VZ |
1815 | wxCHECK_MSG( node, wxNullBitmap, "bitmap node can't be NULL" ); |
1816 | ||
db59a97c | 1817 | /* If the bitmap is specified as stock item, query wxArtProvider for it: */ |
1c60f644 | 1818 | wxString art_id, art_client; |
326462ae | 1819 | if ( GetStockArtAttrs(node, defaultArtClient, |
1c60f644 | 1820 | art_id, art_client) ) |
af1337b0 | 1821 | { |
1c60f644 VS |
1822 | wxBitmap stockArt(wxArtProvider::GetBitmap(art_id, art_client, size)); |
1823 | if ( stockArt.Ok() ) | |
1824 | return stockArt; | |
af1337b0 JS |
1825 | } |
1826 | ||
92e898b0 | 1827 | /* ...or load the bitmap from file: */ |
326462ae | 1828 | wxString name = GetParamValue(node); |
e7a3a5a5 | 1829 | if (name.empty()) return wxNullBitmap; |
78d14f80 | 1830 | #if wxUSE_FILESYSTEM |
4532786e | 1831 | wxFSFile *fsfile = GetCurFileSystem().OpenFile(name, wxFS_READ | wxFS_SEEKABLE); |
78d14f80 VS |
1832 | if (fsfile == NULL) |
1833 | { | |
819559b2 VS |
1834 | ReportParamError |
1835 | ( | |
326462ae | 1836 | node->GetName(), |
819559b2 VS |
1837 | wxString::Format("cannot open bitmap resource \"%s\"", name) |
1838 | ); | |
78d14f80 VS |
1839 | return wxNullBitmap; |
1840 | } | |
1841 | wxImage img(*(fsfile->GetStream())); | |
1842 | delete fsfile; | |
1843 | #else | |
45f3249b | 1844 | wxImage img(name); |
78d14f80 | 1845 | #endif |
af1337b0 | 1846 | |
78d14f80 VS |
1847 | if (!img.Ok()) |
1848 | { | |
819559b2 VS |
1849 | ReportParamError |
1850 | ( | |
326462ae | 1851 | node->GetName(), |
819559b2 VS |
1852 | wxString::Format("cannot create bitmap from \"%s\"", name) |
1853 | ); | |
78d14f80 VS |
1854 | return wxNullBitmap; |
1855 | } | |
1856 | if (!(size == wxDefaultSize)) img.Rescale(size.x, size.y); | |
b272b6dc | 1857 | return wxBitmap(img); |
78d14f80 VS |
1858 | } |
1859 | ||
78d14f80 | 1860 | |
92e898b0 | 1861 | wxIcon wxXmlResourceHandler::GetIcon(const wxString& param, |
db59a97c VS |
1862 | const wxArtClient& defaultArtClient, |
1863 | wxSize size) | |
326462ae | 1864 | { |
9c1d2aa2 VZ |
1865 | // see comment in GetBitmap(wxString) overload |
1866 | wxASSERT_MSG( !param.empty(), "icon parameter name can't be empty" ); | |
1867 | ||
1868 | const wxXmlNode* const node = GetParamNode(param); | |
1869 | ||
1870 | if ( !node ) | |
1871 | { | |
1872 | // this is not an error as icon parameter could be optional | |
1873 | return wxIcon(); | |
1874 | } | |
1875 | ||
1876 | return GetIcon(node, defaultArtClient, size); | |
326462ae VZ |
1877 | } |
1878 | ||
1879 | wxIcon wxXmlResourceHandler::GetIcon(const wxXmlNode* node, | |
1880 | const wxArtClient& defaultArtClient, | |
1881 | wxSize size) | |
78d14f80 | 1882 | { |
78d14f80 | 1883 | wxIcon icon; |
326462ae | 1884 | icon.CopyFromBitmap(GetBitmap(node, defaultArtClient, size)); |
78d14f80 VS |
1885 | return icon; |
1886 | } | |
1887 | ||
326462ae | 1888 | |
1c60f644 VS |
1889 | wxIconBundle wxXmlResourceHandler::GetIconBundle(const wxString& param, |
1890 | const wxArtClient& defaultArtClient) | |
1891 | { | |
1892 | wxString art_id, art_client; | |
1893 | if ( GetStockArtAttrs(GetParamNode(param), defaultArtClient, | |
1894 | art_id, art_client) ) | |
1895 | { | |
1896 | wxIconBundle stockArt(wxArtProvider::GetIconBundle(art_id, art_client)); | |
1897 | if ( stockArt.IsOk() ) | |
1898 | return stockArt; | |
1899 | } | |
1900 | ||
1901 | const wxString name = GetParamValue(param); | |
1902 | if ( name.empty() ) | |
1903 | return wxNullIconBundle; | |
1904 | ||
1905 | #if wxUSE_FILESYSTEM | |
1906 | wxFSFile *fsfile = GetCurFileSystem().OpenFile(name, wxFS_READ | wxFS_SEEKABLE); | |
1907 | if ( fsfile == NULL ) | |
1908 | { | |
1909 | ReportParamError | |
1910 | ( | |
1911 | param, | |
1912 | wxString::Format("cannot open icon resource \"%s\"", name) | |
1913 | ); | |
1914 | return wxNullIconBundle; | |
1915 | } | |
1916 | ||
1917 | wxIconBundle bundle(*(fsfile->GetStream())); | |
1918 | delete fsfile; | |
1919 | #else | |
1920 | wxIconBundle bundle(name); | |
1921 | #endif | |
1922 | ||
1923 | if ( !bundle.IsOk() ) | |
1924 | { | |
1925 | ReportParamError | |
1926 | ( | |
1927 | param, | |
1928 | wxString::Format("cannot create icon from \"%s\"", name) | |
1929 | ); | |
1930 | return wxNullIconBundle; | |
1931 | } | |
1932 | ||
1933 | return bundle; | |
1934 | } | |
78d14f80 VS |
1935 | |
1936 | ||
326462ae VZ |
1937 | wxImageList *wxXmlResourceHandler::GetImageList(const wxString& param) |
1938 | { | |
1939 | wxXmlNode * const imagelist_node = GetParamNode(param); | |
1940 | if ( !imagelist_node ) | |
1941 | return NULL; | |
1942 | ||
1943 | wxXmlNode * const oldnode = m_node; | |
1944 | m_node = imagelist_node; | |
1945 | ||
fe97acf0 VZ |
1946 | // Get the size if we have it, otherwise we will use the size of the first |
1947 | // list element. | |
326462ae | 1948 | wxSize size = GetSize(); |
326462ae | 1949 | |
fe97acf0 VZ |
1950 | // Start adding images, we'll create the image list when adding the first |
1951 | // one. | |
1952 | wxImageList * imagelist = NULL; | |
326462ae VZ |
1953 | wxString parambitmap = wxT("bitmap"); |
1954 | if ( HasParam(parambitmap) ) | |
1955 | { | |
1956 | wxXmlNode *n = m_node->GetChildren(); | |
1957 | while (n) | |
1958 | { | |
1959 | if (n->GetType() == wxXML_ELEMENT_NODE && n->GetName() == parambitmap) | |
1960 | { | |
fe97acf0 VZ |
1961 | wxIcon icon = GetIcon(n); |
1962 | if ( !imagelist ) | |
1963 | { | |
1964 | // We need the real image list size to create it. | |
1965 | if ( size == wxDefaultSize ) | |
1966 | size = icon.GetSize(); | |
1967 | ||
1968 | // We use the mask by default. | |
1969 | bool mask = !HasParam(wxS("mask")) || GetBool(wxS("mask")); | |
1970 | ||
1971 | imagelist = new wxImageList(size.x, size.y, mask); | |
1972 | } | |
1973 | ||
326462ae | 1974 | // add icon instead of bitmap to keep the bitmap mask |
fe97acf0 | 1975 | imagelist->Add(icon); |
326462ae VZ |
1976 | } |
1977 | n = n->GetNext(); | |
1978 | } | |
1979 | } | |
1980 | ||
1981 | m_node = oldnode; | |
1982 | return imagelist; | |
1983 | } | |
1984 | ||
78d14f80 VS |
1985 | wxXmlNode *wxXmlResourceHandler::GetParamNode(const wxString& param) |
1986 | { | |
2b5f62a0 VZ |
1987 | wxCHECK_MSG(m_node, NULL, wxT("You can't access handler data before it was initialized!")); |
1988 | ||
78d14f80 VS |
1989 | wxXmlNode *n = m_node->GetChildren(); |
1990 | ||
1991 | while (n) | |
1992 | { | |
1993 | if (n->GetType() == wxXML_ELEMENT_NODE && n->GetName() == param) | |
cffff062 VZ |
1994 | { |
1995 | // TODO: check that there are no other properties/parameters with | |
1996 | // the same name and log an error if there are (can't do this | |
1997 | // right now as I'm not sure if it's not going to break code | |
1998 | // using this function in unintentional way (i.e. for | |
1999 | // accessing other things than properties), for example | |
2000 | // wxBitmapComboBoxXmlHandler almost surely does | |
78d14f80 | 2001 | return n; |
cffff062 | 2002 | } |
78d14f80 VS |
2003 | n = n->GetNext(); |
2004 | } | |
2005 | return NULL; | |
2006 | } | |
2007 | ||
8ec22772 | 2008 | /* static */ |
2d672c46 MW |
2009 | bool wxXmlResourceHandler::IsOfClass(wxXmlNode *node, const wxString& classname) |
2010 | { | |
8ec22772 | 2011 | return node->GetAttribute(wxT("class")) == classname; |
2d672c46 MW |
2012 | } |
2013 | ||
2014 | ||
2015 | ||
326462ae | 2016 | wxString wxXmlResourceHandler::GetNodeContent(const wxXmlNode *node) |
78d14f80 | 2017 | { |
326462ae | 2018 | const wxXmlNode *n = node; |
78d14f80 VS |
2019 | if (n == NULL) return wxEmptyString; |
2020 | n = n->GetChildren(); | |
2021 | ||
2022 | while (n) | |
2023 | { | |
2024 | if (n->GetType() == wxXML_TEXT_NODE || | |
2025 | n->GetType() == wxXML_CDATA_SECTION_NODE) | |
2026 | return n->GetContent(); | |
2027 | n = n->GetNext(); | |
2028 | } | |
2029 | return wxEmptyString; | |
2030 | } | |
2031 | ||
2032 | ||
2033 | ||
2034 | wxString wxXmlResourceHandler::GetParamValue(const wxString& param) | |
2035 | { | |
e7a3a5a5 | 2036 | if (param.empty()) |
78d14f80 VS |
2037 | return GetNodeContent(m_node); |
2038 | else | |
2039 | return GetNodeContent(GetParamNode(param)); | |
2040 | } | |
2041 | ||
326462ae VZ |
2042 | wxString wxXmlResourceHandler::GetParamValue(const wxXmlNode* node) |
2043 | { | |
2044 | return GetNodeContent(node); | |
2045 | } | |
78d14f80 VS |
2046 | |
2047 | ||
0c00c86f VS |
2048 | wxSize wxXmlResourceHandler::GetSize(const wxString& param, |
2049 | wxWindow *windowToUse) | |
78d14f80 VS |
2050 | { |
2051 | wxString s = GetParamValue(param); | |
e7a3a5a5 | 2052 | if (s.empty()) s = wxT("-1,-1"); |
78d14f80 | 2053 | bool is_dlg; |
d1f47235 | 2054 | long sx, sy = 0; |
78d14f80 | 2055 | |
88a7a4e1 | 2056 | is_dlg = s[s.length()-1] == wxT('d'); |
78d14f80 VS |
2057 | if (is_dlg) s.RemoveLast(); |
2058 | ||
2059 | if (!s.BeforeFirst(wxT(',')).ToLong(&sx) || | |
2060 | !s.AfterLast(wxT(',')).ToLong(&sy)) | |
2061 | { | |
819559b2 VS |
2062 | ReportParamError |
2063 | ( | |
2064 | param, | |
2065 | wxString::Format("cannot parse coordinates value \"%s\"", s) | |
2066 | ); | |
78d14f80 VS |
2067 | return wxDefaultSize; |
2068 | } | |
2069 | ||
2070 | if (is_dlg) | |
2071 | { | |
0c00c86f VS |
2072 | if (windowToUse) |
2073 | { | |
2074 | return wxDLG_UNIT(windowToUse, wxSize(sx, sy)); | |
2075 | } | |
2076 | else if (m_parentAsWindow) | |
2077 | { | |
78d14f80 | 2078 | return wxDLG_UNIT(m_parentAsWindow, wxSize(sx, sy)); |
0c00c86f | 2079 | } |
78d14f80 VS |
2080 | else |
2081 | { | |
819559b2 VS |
2082 | ReportParamError |
2083 | ( | |
2084 | param, | |
2085 | "cannot convert dialog units: dialog unknown" | |
2086 | ); | |
78d14f80 VS |
2087 | return wxDefaultSize; |
2088 | } | |
2089 | } | |
8516a98b DS |
2090 | |
2091 | return wxSize(sx, sy); | |
78d14f80 VS |
2092 | } |
2093 | ||
2094 | ||
2095 | ||
2096 | wxPoint wxXmlResourceHandler::GetPosition(const wxString& param) | |
2097 | { | |
2098 | wxSize sz = GetSize(param); | |
2099 | return wxPoint(sz.x, sz.y); | |
2100 | } | |
2101 | ||
2102 | ||
2103 | ||
0c00c86f VS |
2104 | wxCoord wxXmlResourceHandler::GetDimension(const wxString& param, |
2105 | wxCoord defaultv, | |
2106 | wxWindow *windowToUse) | |
78d14f80 VS |
2107 | { |
2108 | wxString s = GetParamValue(param); | |
e7a3a5a5 | 2109 | if (s.empty()) return defaultv; |
78d14f80 VS |
2110 | bool is_dlg; |
2111 | long sx; | |
2112 | ||
88a7a4e1 | 2113 | is_dlg = s[s.length()-1] == wxT('d'); |
78d14f80 VS |
2114 | if (is_dlg) s.RemoveLast(); |
2115 | ||
2116 | if (!s.ToLong(&sx)) | |
2117 | { | |
819559b2 VS |
2118 | ReportParamError |
2119 | ( | |
2120 | param, | |
2121 | wxString::Format("cannot parse dimension value \"%s\"", s) | |
2122 | ); | |
78d14f80 VS |
2123 | return defaultv; |
2124 | } | |
2125 | ||
2126 | if (is_dlg) | |
2127 | { | |
0c00c86f VS |
2128 | if (windowToUse) |
2129 | { | |
2130 | return wxDLG_UNIT(windowToUse, wxSize(sx, 0)).x; | |
2131 | } | |
2132 | else if (m_parentAsWindow) | |
2133 | { | |
78d14f80 | 2134 | return wxDLG_UNIT(m_parentAsWindow, wxSize(sx, 0)).x; |
0c00c86f | 2135 | } |
78d14f80 VS |
2136 | else |
2137 | { | |
819559b2 VS |
2138 | ReportParamError |
2139 | ( | |
2140 | param, | |
2141 | "cannot convert dialog units: dialog unknown" | |
2142 | ); | |
78d14f80 VS |
2143 | return defaultv; |
2144 | } | |
2145 | } | |
8516a98b DS |
2146 | |
2147 | return sx; | |
78d14f80 VS |
2148 | } |
2149 | ||
2150 | ||
1df61962 VS |
2151 | // Get system font index using indexname |
2152 | static wxFont GetSystemFont(const wxString& name) | |
2153 | { | |
2154 | if (!name.empty()) | |
2155 | { | |
2156 | #define SYSFNT(fnt) \ | |
9a83f860 | 2157 | if (name == wxT(#fnt)) return wxSystemSettings::GetFont(fnt); |
1df61962 VS |
2158 | SYSFNT(wxSYS_OEM_FIXED_FONT) |
2159 | SYSFNT(wxSYS_ANSI_FIXED_FONT) | |
2160 | SYSFNT(wxSYS_ANSI_VAR_FONT) | |
2161 | SYSFNT(wxSYS_SYSTEM_FONT) | |
2162 | SYSFNT(wxSYS_DEVICE_DEFAULT_FONT) | |
1df61962 VS |
2163 | SYSFNT(wxSYS_SYSTEM_FIXED_FONT) |
2164 | SYSFNT(wxSYS_DEFAULT_GUI_FONT) | |
2165 | #undef SYSFNT | |
2166 | } | |
2167 | ||
2168 | return wxNullFont; | |
2169 | } | |
78d14f80 VS |
2170 | |
2171 | wxFont wxXmlResourceHandler::GetFont(const wxString& param) | |
2172 | { | |
2173 | wxXmlNode *font_node = GetParamNode(param); | |
2174 | if (font_node == NULL) | |
2175 | { | |
819559b2 VS |
2176 | ReportError( |
2177 | wxString::Format("cannot find font node \"%s\"", param)); | |
78d14f80 VS |
2178 | return wxNullFont; |
2179 | } | |
2180 | ||
2181 | wxXmlNode *oldnode = m_node; | |
2182 | m_node = font_node; | |
2183 | ||
1df61962 | 2184 | // font attributes: |
78d14f80 | 2185 | |
1df61962 | 2186 | // size |
94245f6d | 2187 | int isize = -1; |
1df61962 | 2188 | bool hasSize = HasParam(wxT("size")); |
e7a3a5a5 | 2189 | if (hasSize) |
94245f6d | 2190 | isize = GetLong(wxT("size"), -1); |
78d14f80 | 2191 | |
1df61962 VS |
2192 | // style |
2193 | int istyle = wxNORMAL; | |
2194 | bool hasStyle = HasParam(wxT("style")); | |
2195 | if (hasStyle) | |
2196 | { | |
2197 | wxString style = GetParamValue(wxT("style")); | |
e7a3a5a5 | 2198 | if (style == wxT("italic")) |
1df61962 | 2199 | istyle = wxITALIC; |
e7a3a5a5 | 2200 | else if (style == wxT("slant")) |
1df61962 VS |
2201 | istyle = wxSLANT; |
2202 | } | |
78d14f80 | 2203 | |
1df61962 VS |
2204 | // weight |
2205 | int iweight = wxNORMAL; | |
2206 | bool hasWeight = HasParam(wxT("weight")); | |
2207 | if (hasWeight) | |
2208 | { | |
2209 | wxString weight = GetParamValue(wxT("weight")); | |
e7a3a5a5 | 2210 | if (weight == wxT("bold")) |
1df61962 | 2211 | iweight = wxBOLD; |
e7a3a5a5 | 2212 | else if (weight == wxT("light")) |
1df61962 VS |
2213 | iweight = wxLIGHT; |
2214 | } | |
e7a3a5a5 | 2215 | |
1df61962 VS |
2216 | // underline |
2217 | bool hasUnderlined = HasParam(wxT("underlined")); | |
2218 | bool underlined = hasUnderlined ? GetBool(wxT("underlined"), false) : false; | |
78d14f80 | 2219 | |
1df61962 VS |
2220 | // family and facename |
2221 | int ifamily = wxDEFAULT; | |
2222 | bool hasFamily = HasParam(wxT("family")); | |
2223 | if (hasFamily) | |
78d14f80 | 2224 | { |
1df61962 VS |
2225 | wxString family = GetParamValue(wxT("family")); |
2226 | if (family == wxT("decorative")) ifamily = wxDECORATIVE; | |
2227 | else if (family == wxT("roman")) ifamily = wxROMAN; | |
2228 | else if (family == wxT("script")) ifamily = wxSCRIPT; | |
2229 | else if (family == wxT("swiss")) ifamily = wxSWISS; | |
2230 | else if (family == wxT("modern")) ifamily = wxMODERN; | |
2231 | else if (family == wxT("teletype")) ifamily = wxTELETYPE; | |
2232 | } | |
e7a3a5a5 WS |
2233 | |
2234 | ||
1df61962 VS |
2235 | wxString facename; |
2236 | bool hasFacename = HasParam(wxT("face")); | |
2237 | if (hasFacename) | |
2238 | { | |
2239 | wxString faces = GetParamValue(wxT("face")); | |
1df61962 | 2240 | wxStringTokenizer tk(faces, wxT(",")); |
63feebce VS |
2241 | #if wxUSE_FONTENUM |
2242 | wxArrayString facenames(wxFontEnumerator::GetFacenames()); | |
1df61962 | 2243 | while (tk.HasMoreTokens()) |
78d14f80 | 2244 | { |
6540132f | 2245 | int index = facenames.Index(tk.GetNextToken(), false); |
1df61962 VS |
2246 | if (index != wxNOT_FOUND) |
2247 | { | |
6540132f | 2248 | facename = facenames[index]; |
1df61962 VS |
2249 | break; |
2250 | } | |
78d14f80 | 2251 | } |
63feebce VS |
2252 | #else // !wxUSE_FONTENUM |
2253 | // just use the first face name if we can't check its availability: | |
2254 | if (tk.HasMoreTokens()) | |
2255 | facename = tk.GetNextToken(); | |
2256 | #endif // wxUSE_FONTENUM/!wxUSE_FONTENUM | |
78d14f80 VS |
2257 | } |
2258 | ||
1df61962 VS |
2259 | // encoding |
2260 | wxFontEncoding enc = wxFONTENCODING_DEFAULT; | |
2261 | bool hasEncoding = HasParam(wxT("encoding")); | |
dc2575ba | 2262 | #if wxUSE_FONTMAP |
1df61962 VS |
2263 | if (hasEncoding) |
2264 | { | |
2265 | wxString encoding = GetParamValue(wxT("encoding")); | |
2266 | wxFontMapper mapper; | |
e7a3a5a5 | 2267 | if (!encoding.empty()) |
1df61962 VS |
2268 | enc = mapper.CharsetToEncoding(encoding); |
2269 | if (enc == wxFONTENCODING_SYSTEM) | |
2270 | enc = wxFONTENCODING_DEFAULT; | |
2271 | } | |
dc2575ba | 2272 | #endif // wxUSE_FONTMAP |
78d14f80 | 2273 | |
1df61962 | 2274 | // is this font based on a system font? |
94245f6d | 2275 | wxFont font = GetSystemFont(GetParamValue(wxT("sysfont"))); |
e7a3a5a5 | 2276 | |
94245f6d | 2277 | if (font.Ok()) |
1df61962 | 2278 | { |
94245f6d VZ |
2279 | if (hasSize && isize != -1) |
2280 | font.SetPointSize(isize); | |
1df61962 | 2281 | else if (HasParam(wxT("relativesize"))) |
94245f6d | 2282 | font.SetPointSize(int(font.GetPointSize() * |
1df61962 | 2283 | GetFloat(wxT("relativesize")))); |
e7a3a5a5 | 2284 | |
1df61962 | 2285 | if (hasStyle) |
94245f6d | 2286 | font.SetStyle(istyle); |
1df61962 | 2287 | if (hasWeight) |
94245f6d | 2288 | font.SetWeight(iweight); |
1df61962 | 2289 | if (hasUnderlined) |
94245f6d | 2290 | font.SetUnderlined(underlined); |
1df61962 | 2291 | if (hasFamily) |
94245f6d | 2292 | font.SetFamily(ifamily); |
1df61962 | 2293 | if (hasFacename) |
94245f6d | 2294 | font.SetFaceName(facename); |
1df61962 | 2295 | if (hasEncoding) |
94245f6d VZ |
2296 | font.SetDefaultEncoding(enc); |
2297 | } | |
2298 | else // not based on system font | |
2299 | { | |
2300 | font = wxFont(isize == -1 ? wxNORMAL_FONT->GetPointSize() : isize, | |
2301 | ifamily, istyle, iweight, | |
2302 | underlined, facename, enc); | |
1df61962 | 2303 | } |
8516a98b DS |
2304 | |
2305 | m_node = oldnode; | |
94245f6d | 2306 | return font; |
78d14f80 VS |
2307 | } |
2308 | ||
2309 | ||
2310 | void wxXmlResourceHandler::SetupWindow(wxWindow *wnd) | |
2311 | { | |
2312 | //FIXME : add cursor | |
2313 | ||
2314 | if (HasParam(wxT("exstyle"))) | |
0099f343 JS |
2315 | // Have to OR it with existing style, since |
2316 | // some implementations (e.g. wxGTK) use the extra style | |
2317 | // during creation | |
2318 | wnd->SetExtraStyle(wnd->GetExtraStyle() | GetStyle(wxT("exstyle"))); | |
78d14f80 VS |
2319 | if (HasParam(wxT("bg"))) |
2320 | wnd->SetBackgroundColour(GetColour(wxT("bg"))); | |
a7435c3e VZ |
2321 | if (HasParam(wxT("ownbg"))) |
2322 | wnd->SetOwnBackgroundColour(GetColour(wxT("ownbg"))); | |
78d14f80 VS |
2323 | if (HasParam(wxT("fg"))) |
2324 | wnd->SetForegroundColour(GetColour(wxT("fg"))); | |
a7435c3e VZ |
2325 | if (HasParam(wxT("ownfg"))) |
2326 | wnd->SetOwnForegroundColour(GetColour(wxT("ownfg"))); | |
78d14f80 | 2327 | if (GetBool(wxT("enabled"), 1) == 0) |
f80ea77b | 2328 | wnd->Enable(false); |
78d14f80 VS |
2329 | if (GetBool(wxT("focused"), 0) == 1) |
2330 | wnd->SetFocus(); | |
2331 | if (GetBool(wxT("hidden"), 0) == 1) | |
f80ea77b | 2332 | wnd->Show(false); |
78d14f80 VS |
2333 | #if wxUSE_TOOLTIPS |
2334 | if (HasParam(wxT("tooltip"))) | |
2335 | wnd->SetToolTip(GetText(wxT("tooltip"))); | |
2336 | #endif | |
2337 | if (HasParam(wxT("font"))) | |
a7435c3e VZ |
2338 | wnd->SetFont(GetFont(wxT("font"))); |
2339 | if (HasParam(wxT("ownfont"))) | |
2340 | wnd->SetOwnFont(GetFont(wxT("ownfont"))); | |
b23030d6 JS |
2341 | if (HasParam(wxT("help"))) |
2342 | wnd->SetHelpText(GetText(wxT("help"))); | |
78d14f80 VS |
2343 | } |
2344 | ||
2345 | ||
2346 | void wxXmlResourceHandler::CreateChildren(wxObject *parent, bool this_hnd_only) | |
2347 | { | |
23239d94 | 2348 | for ( wxXmlNode *n = m_node->GetChildren(); n; n = n->GetNext() ) |
78d14f80 | 2349 | { |
23239d94 | 2350 | if ( IsObjectNode(n) ) |
78d14f80 | 2351 | { |
af0ac990 VZ |
2352 | m_resource->DoCreateResFromNode(*n, parent, NULL, |
2353 | this_hnd_only ? this : NULL); | |
78d14f80 | 2354 | } |
78d14f80 VS |
2355 | } |
2356 | } | |
2357 | ||
2358 | ||
2359 | void wxXmlResourceHandler::CreateChildrenPrivately(wxObject *parent, wxXmlNode *rootnode) | |
2360 | { | |
2361 | wxXmlNode *root; | |
2362 | if (rootnode == NULL) root = m_node; else root = rootnode; | |
2363 | wxXmlNode *n = root->GetChildren(); | |
2364 | ||
2365 | while (n) | |
2366 | { | |
2367 | if (n->GetType() == wxXML_ELEMENT_NODE && CanHandle(n)) | |
2368 | { | |
2369 | CreateResource(n, parent, NULL); | |
2370 | } | |
2371 | n = n->GetNext(); | |
2372 | } | |
2373 | } | |
2374 | ||
2375 | ||
819559b2 VS |
2376 | //----------------------------------------------------------------------------- |
2377 | // errors reporting | |
2378 | //----------------------------------------------------------------------------- | |
2379 | ||
2380 | void wxXmlResourceHandler::ReportError(const wxString& message) | |
2381 | { | |
2382 | m_resource->ReportError(m_node, message); | |
2383 | } | |
2384 | ||
2385 | void wxXmlResourceHandler::ReportError(wxXmlNode *context, | |
2386 | const wxString& message) | |
2387 | { | |
2388 | m_resource->ReportError(context ? context : m_node, message); | |
2389 | } | |
2390 | ||
2391 | void wxXmlResourceHandler::ReportParamError(const wxString& param, | |
2392 | const wxString& message) | |
2393 | { | |
2394 | m_resource->ReportError(GetParamNode(param), message); | |
2395 | } | |
2396 | ||
1f6ea935 | 2397 | void wxXmlResource::ReportError(const wxXmlNode *context, const wxString& message) |
819559b2 VS |
2398 | { |
2399 | if ( !context ) | |
2400 | { | |
2401 | DoReportError("", NULL, message); | |
2402 | return; | |
2403 | } | |
78d14f80 | 2404 | |
819559b2 VS |
2405 | // We need to find out the file that 'context' is part of. Performance of |
2406 | // this code is not critical, so we simply find the root XML node and | |
2407 | // compare it with all loaded XRC files. | |
2408 | const wxString filename = GetFileNameFromNode(context, Data()); | |
78d14f80 | 2409 | |
819559b2 VS |
2410 | DoReportError(filename, context, message); |
2411 | } | |
78d14f80 | 2412 | |
1f6ea935 | 2413 | void wxXmlResource::DoReportError(const wxString& xrcFile, const wxXmlNode *position, |
819559b2 VS |
2414 | const wxString& message) |
2415 | { | |
2416 | const int line = position ? position->GetLineNumber() : -1; | |
2417 | ||
2418 | wxString loc; | |
2419 | if ( !xrcFile.empty() ) | |
2420 | loc = xrcFile + ':'; | |
2421 | if ( line != -1 ) | |
2422 | loc += wxString::Format("%d:", line); | |
2423 | if ( !loc.empty() ) | |
2424 | loc += ' '; | |
2425 | ||
2426 | wxLogError("XRC error: %s%s", loc, message); | |
2427 | } | |
78d14f80 VS |
2428 | |
2429 | ||
819559b2 VS |
2430 | //----------------------------------------------------------------------------- |
2431 | // XRCID implementation | |
2432 | //----------------------------------------------------------------------------- | |
78d14f80 | 2433 | |
5ed345b7 | 2434 | #define XRCID_TABLE_SIZE 1024 |
78d14f80 VS |
2435 | |
2436 | ||
5ed345b7 | 2437 | struct XRCID_record |
78d14f80 | 2438 | { |
cf2810aa VZ |
2439 | /* Hold the id so that once an id is allocated for a name, it |
2440 | does not get created again by NewControlId at least | |
2441 | until we are done with it */ | |
2442 | wxWindowIDRef id; | |
c560da98 | 2443 | char *key; |
5ed345b7 | 2444 | XRCID_record *next; |
78d14f80 VS |
2445 | }; |
2446 | ||
5ed345b7 | 2447 | static XRCID_record *XRCID_Records[XRCID_TABLE_SIZE] = {NULL}; |
78d14f80 | 2448 | |
d807030e VZ |
2449 | // Extremely simplistic hash function which probably ought to be replaced with |
2450 | // wxStringHash::stringHash(). | |
2451 | static inline unsigned XRCIdHash(const char *str_id) | |
78d14f80 | 2452 | { |
d807030e | 2453 | unsigned index = 0; |
78d14f80 | 2454 | |
e03951b7 | 2455 | for (const char *c = str_id; *c != '\0'; c++) index += (unsigned int)*c; |
5ed345b7 | 2456 | index %= XRCID_TABLE_SIZE; |
78d14f80 | 2457 | |
d807030e VZ |
2458 | return index; |
2459 | } | |
2460 | ||
2461 | static int XRCID_Lookup(const char *str_id, int value_if_not_found = wxID_NONE) | |
2462 | { | |
2463 | const unsigned index = XRCIdHash(str_id); | |
2464 | ||
2465 | ||
5ed345b7 | 2466 | XRCID_record *oldrec = NULL; |
5ed345b7 | 2467 | for (XRCID_record *rec = XRCID_Records[index]; rec; rec = rec->next) |
78d14f80 | 2468 | { |
00393283 | 2469 | if (wxStrcmp(rec->key, str_id) == 0) |
78d14f80 VS |
2470 | { |
2471 | return rec->id; | |
2472 | } | |
78d14f80 VS |
2473 | oldrec = rec; |
2474 | } | |
2475 | ||
5ed345b7 VS |
2476 | XRCID_record **rec_var = (oldrec == NULL) ? |
2477 | &XRCID_Records[index] : &oldrec->next; | |
2478 | *rec_var = new XRCID_record; | |
00393283 | 2479 | (*rec_var)->key = wxStrdup(str_id); |
78d14f80 VS |
2480 | (*rec_var)->next = NULL; |
2481 | ||
c560da98 | 2482 | char *end; |
9b2a7469 | 2483 | if (value_if_not_found != wxID_NONE) |
13de23f6 | 2484 | (*rec_var)->id = value_if_not_found; |
85452d74 VS |
2485 | else |
2486 | { | |
13de23f6 VS |
2487 | int asint = wxStrtol(str_id, &end, 10); |
2488 | if (*str_id && *end == 0) | |
2489 | { | |
2490 | // if str_id was integer, keep it verbosely: | |
2491 | (*rec_var)->id = asint; | |
2492 | } | |
2493 | else | |
2494 | { | |
f35fdf7e | 2495 | (*rec_var)->id = wxWindowBase::NewControlId(); |
13de23f6 | 2496 | } |
85452d74 VS |
2497 | } |
2498 | ||
78d14f80 VS |
2499 | return (*rec_var)->id; |
2500 | } | |
2501 | ||
a58804ea | 2502 | namespace |
78d14f80 | 2503 | { |
f35fdf7e | 2504 | |
a58804ea VZ |
2505 | // flag indicating whether standard XRC ids were already initialized |
2506 | static bool gs_stdIDsAdded = false; | |
78d14f80 | 2507 | |
a58804ea | 2508 | void AddStdXRCID_Records() |
13de23f6 | 2509 | { |
c560da98 | 2510 | #define stdID(id) XRCID_Lookup(#id, id) |
13de23f6 | 2511 | stdID(-1); |
c369d4f1 VS |
2512 | |
2513 | stdID(wxID_ANY); | |
2514 | stdID(wxID_SEPARATOR); | |
e7a3a5a5 | 2515 | |
c369d4f1 VS |
2516 | stdID(wxID_OPEN); |
2517 | stdID(wxID_CLOSE); | |
2518 | stdID(wxID_NEW); | |
2519 | stdID(wxID_SAVE); | |
2520 | stdID(wxID_SAVEAS); | |
2521 | stdID(wxID_REVERT); | |
2522 | stdID(wxID_EXIT); | |
2523 | stdID(wxID_UNDO); | |
2524 | stdID(wxID_REDO); | |
2525 | stdID(wxID_HELP); | |
2526 | stdID(wxID_PRINT); | |
2527 | stdID(wxID_PRINT_SETUP); | |
e63f19ba | 2528 | stdID(wxID_PAGE_SETUP); |
c369d4f1 VS |
2529 | stdID(wxID_PREVIEW); |
2530 | stdID(wxID_ABOUT); | |
2531 | stdID(wxID_HELP_CONTENTS); | |
2532 | stdID(wxID_HELP_COMMANDS); | |
2533 | stdID(wxID_HELP_PROCEDURES); | |
2534 | stdID(wxID_HELP_CONTEXT); | |
13de23f6 | 2535 | stdID(wxID_CLOSE_ALL); |
c369d4f1 | 2536 | stdID(wxID_PREFERENCES); |
d73195fd | 2537 | stdID(wxID_EDIT); |
c369d4f1 VS |
2538 | stdID(wxID_CUT); |
2539 | stdID(wxID_COPY); | |
2540 | stdID(wxID_PASTE); | |
2541 | stdID(wxID_CLEAR); | |
2542 | stdID(wxID_FIND); | |
2543 | stdID(wxID_DUPLICATE); | |
2544 | stdID(wxID_SELECTALL); | |
2545 | stdID(wxID_DELETE); | |
2546 | stdID(wxID_REPLACE); | |
2547 | stdID(wxID_REPLACE_ALL); | |
2548 | stdID(wxID_PROPERTIES); | |
2549 | stdID(wxID_VIEW_DETAILS); | |
2550 | stdID(wxID_VIEW_LARGEICONS); | |
2551 | stdID(wxID_VIEW_SMALLICONS); | |
2552 | stdID(wxID_VIEW_LIST); | |
2553 | stdID(wxID_VIEW_SORTDATE); | |
2554 | stdID(wxID_VIEW_SORTNAME); | |
2555 | stdID(wxID_VIEW_SORTSIZE); | |
2556 | stdID(wxID_VIEW_SORTTYPE); | |
2557 | stdID(wxID_FILE1); | |
2558 | stdID(wxID_FILE2); | |
2559 | stdID(wxID_FILE3); | |
2560 | stdID(wxID_FILE4); | |
2561 | stdID(wxID_FILE5); | |
2562 | stdID(wxID_FILE6); | |
2563 | stdID(wxID_FILE7); | |
2564 | stdID(wxID_FILE8); | |
2565 | stdID(wxID_FILE9); | |
2566 | stdID(wxID_OK); | |
2567 | stdID(wxID_CANCEL); | |
2568 | stdID(wxID_APPLY); | |
2569 | stdID(wxID_YES); | |
2570 | stdID(wxID_NO); | |
2571 | stdID(wxID_STATIC); | |
2572 | stdID(wxID_FORWARD); | |
2573 | stdID(wxID_BACKWARD); | |
2574 | stdID(wxID_DEFAULT); | |
2575 | stdID(wxID_MORE); | |
2576 | stdID(wxID_SETUP); | |
2577 | stdID(wxID_RESET); | |
2578 | stdID(wxID_CONTEXT_HELP); | |
2579 | stdID(wxID_YESTOALL); | |
2580 | stdID(wxID_NOTOALL); | |
2581 | stdID(wxID_ABORT); | |
2582 | stdID(wxID_RETRY); | |
2583 | stdID(wxID_IGNORE); | |
2584 | stdID(wxID_ADD); | |
2585 | stdID(wxID_REMOVE); | |
2586 | stdID(wxID_UP); | |
2587 | stdID(wxID_DOWN); | |
2588 | stdID(wxID_HOME); | |
2589 | stdID(wxID_REFRESH); | |
2590 | stdID(wxID_STOP); | |
2591 | stdID(wxID_INDEX); | |
2592 | stdID(wxID_BOLD); | |
2593 | stdID(wxID_ITALIC); | |
2594 | stdID(wxID_JUSTIFY_CENTER); | |
2595 | stdID(wxID_JUSTIFY_FILL); | |
2596 | stdID(wxID_JUSTIFY_RIGHT); | |
2597 | stdID(wxID_JUSTIFY_LEFT); | |
2598 | stdID(wxID_UNDERLINE); | |
2599 | stdID(wxID_INDENT); | |
2600 | stdID(wxID_UNINDENT); | |
2601 | stdID(wxID_ZOOM_100); | |
2602 | stdID(wxID_ZOOM_FIT); | |
2603 | stdID(wxID_ZOOM_IN); | |
2604 | stdID(wxID_ZOOM_OUT); | |
2605 | stdID(wxID_UNDELETE); | |
2606 | stdID(wxID_REVERT_TO_SAVED); | |
2607 | stdID(wxID_SYSTEM_MENU); | |
2608 | stdID(wxID_CLOSE_FRAME); | |
2609 | stdID(wxID_MOVE_FRAME); | |
2610 | stdID(wxID_RESIZE_FRAME); | |
2611 | stdID(wxID_MAXIMIZE_FRAME); | |
2612 | stdID(wxID_ICONIZE_FRAME); | |
2613 | stdID(wxID_RESTORE_FRAME); | |
6b1eedc1 VZ |
2614 | stdID(wxID_CDROM); |
2615 | stdID(wxID_CONVERT); | |
2616 | stdID(wxID_EXECUTE); | |
2617 | stdID(wxID_FLOPPY); | |
2618 | stdID(wxID_HARDDISK); | |
2619 | stdID(wxID_BOTTOM); | |
2620 | stdID(wxID_FIRST); | |
2621 | stdID(wxID_LAST); | |
2622 | stdID(wxID_TOP); | |
2623 | stdID(wxID_INFO); | |
2624 | stdID(wxID_JUMP_TO); | |
2625 | stdID(wxID_NETWORK); | |
2626 | stdID(wxID_SELECT_COLOR); | |
2627 | stdID(wxID_SELECT_FONT); | |
2628 | stdID(wxID_SORT_ASCENDING); | |
2629 | stdID(wxID_SORT_DESCENDING); | |
2630 | stdID(wxID_SPELL_CHECK); | |
2631 | stdID(wxID_STRIKETHROUGH); | |
c369d4f1 | 2632 | |
13de23f6 VS |
2633 | #undef stdID |
2634 | } | |
78d14f80 | 2635 | |
a58804ea | 2636 | } // anonymous namespace |
78d14f80 VS |
2637 | |
2638 | ||
a58804ea VZ |
2639 | /*static*/ |
2640 | int wxXmlResource::DoGetXRCID(const char *str_id, int value_if_not_found) | |
2641 | { | |
2642 | if ( !gs_stdIDsAdded ) | |
2643 | { | |
2644 | gs_stdIDsAdded = true; | |
2645 | AddStdXRCID_Records(); | |
2646 | } | |
2647 | ||
2648 | return XRCID_Lookup(str_id, value_if_not_found); | |
2649 | } | |
2650 | ||
2651 | /* static */ | |
2652 | wxString wxXmlResource::FindXRCIDById(int numId) | |
2653 | { | |
2654 | for ( int i = 0; i < XRCID_TABLE_SIZE; i++ ) | |
2655 | { | |
2656 | for ( XRCID_record *rec = XRCID_Records[i]; rec; rec = rec->next ) | |
2657 | { | |
2658 | if ( rec->id == numId ) | |
2659 | return wxString(rec->key); | |
2660 | } | |
2661 | } | |
2662 | ||
2663 | return wxString(); | |
2664 | } | |
2665 | ||
0526c8cc | 2666 | /* static */ |
e7cad4b7 | 2667 | void wxIdRangeManager::RemoveXRCIDEntry(const wxString& idstr) |
0526c8cc | 2668 | { |
e7cad4b7 VZ |
2669 | const char *str_id = idstr.mb_str(); |
2670 | ||
d807030e | 2671 | const unsigned index = XRCIdHash(str_id); |
0526c8cc VZ |
2672 | |
2673 | XRCID_record **p_previousrec = &XRCID_Records[index]; | |
2674 | for (XRCID_record *rec = XRCID_Records[index]; rec; rec = rec->next) | |
2675 | { | |
2676 | if (wxStrcmp(rec->key, str_id) == 0) | |
2677 | { | |
2678 | // Found the item to be removed so delete its record; but first | |
adf1edd9 VZ |
2679 | // remove it from the linked list. |
2680 | *p_previousrec = rec->next; | |
0526c8cc VZ |
2681 | free(rec->key); |
2682 | delete rec; | |
2683 | return; | |
2684 | } | |
adf1edd9 VZ |
2685 | |
2686 | p_previousrec = &rec->next; | |
0526c8cc VZ |
2687 | } |
2688 | } | |
2689 | ||
a58804ea VZ |
2690 | static void CleanXRCID_Record(XRCID_record *rec) |
2691 | { | |
2692 | if (rec) | |
2693 | { | |
2694 | CleanXRCID_Record(rec->next); | |
2695 | ||
2696 | free(rec->key); | |
2697 | delete rec; | |
2698 | } | |
2699 | } | |
2700 | ||
2701 | static void CleanXRCID_Records() | |
2702 | { | |
2703 | for (int i = 0; i < XRCID_TABLE_SIZE; i++) | |
2704 | { | |
2705 | CleanXRCID_Record(XRCID_Records[i]); | |
2706 | XRCID_Records[i] = NULL; | |
2707 | } | |
2708 | ||
2709 | gs_stdIDsAdded = false; | |
2710 | } | |
78d14f80 VS |
2711 | |
2712 | ||
819559b2 VS |
2713 | //----------------------------------------------------------------------------- |
2714 | // module and globals | |
2715 | //----------------------------------------------------------------------------- | |
78d14f80 | 2716 | |
fd230129 VZ |
2717 | // normally we would do the cleanup from wxXmlResourceModule::OnExit() but it |
2718 | // can happen that some XRC records have been created because of the use of | |
2719 | // XRCID() in event tables, which happens during static objects initialization, | |
2720 | // but then the application initialization failed and so the wx modules were | |
2721 | // neither initialized nor cleaned up -- this static object does the cleanup in | |
2722 | // this case | |
2723 | static struct wxXRCStaticCleanup | |
2724 | { | |
2725 | ~wxXRCStaticCleanup() { CleanXRCID_Records(); } | |
2726 | } s_staticCleanup; | |
2727 | ||
78d14f80 VS |
2728 | class wxXmlResourceModule: public wxModule |
2729 | { | |
2730 | DECLARE_DYNAMIC_CLASS(wxXmlResourceModule) | |
2731 | public: | |
2732 | wxXmlResourceModule() {} | |
824e8eaa VS |
2733 | bool OnInit() |
2734 | { | |
2b5f62a0 | 2735 | wxXmlResource::AddSubclassFactory(new wxXmlSubclassFactoryCXX); |
f80ea77b | 2736 | return true; |
824e8eaa | 2737 | } |
78d14f80 VS |
2738 | void OnExit() |
2739 | { | |
1542c42e | 2740 | delete wxXmlResource::Set(NULL); |
0526c8cc | 2741 | delete wxIdRangeManager::Set(NULL); |
461932ae | 2742 | if(wxXmlResource::ms_subclassFactories) |
eb2d0d23 VS |
2743 | { |
2744 | for ( wxXmlSubclassFactories::iterator i = wxXmlResource::ms_subclassFactories->begin(); | |
2745 | i != wxXmlResource::ms_subclassFactories->end(); ++i ) | |
2746 | { | |
2747 | delete *i; | |
2748 | } | |
2749 | wxDELETE(wxXmlResource::ms_subclassFactories); | |
2750 | } | |
5ed345b7 | 2751 | CleanXRCID_Records(); |
78d14f80 VS |
2752 | } |
2753 | }; | |
2754 | ||
2755 | IMPLEMENT_DYNAMIC_CLASS(wxXmlResourceModule, wxModule) | |
2756 | ||
2757 | ||
2758 | // When wxXml is loaded dynamically after the application is already running | |
2759 | // then the built-in module system won't pick this one up. Add it manually. | |
2760 | void wxXmlInitResourceModule() | |
2761 | { | |
2762 | wxModule* module = new wxXmlResourceModule; | |
2763 | module->Init(); | |
2764 | wxModule::RegisterModule(module); | |
2765 | } | |
a1e4ec87 VS |
2766 | |
2767 | #endif // wxUSE_XRC |