]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xmlres.cpp
Added stubs for variaous tests.
[wxWidgets.git] / src / xrc / xmlres.cpp
CommitLineData
78d14f80
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: 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
e7a3a5a5 20#ifndef __WXWINCE__
1df61962 21#include <locale.h>
e7a3a5a5 22#endif
1df61962 23
78d14f80
VS
24#include "wx/dialog.h"
25#include "wx/panel.h"
26#include "wx/frame.h"
27#include "wx/wfstream.h"
28#include "wx/filesys.h"
317a0d73 29#include "wx/filename.h"
78d14f80
VS
30#include "wx/log.h"
31#include "wx/intl.h"
32#include "wx/tokenzr.h"
33#include "wx/fontenum.h"
34#include "wx/module.h"
35#include "wx/bitmap.h"
36#include "wx/image.h"
37#include "wx/fontmap.h"
af1337b0 38#include "wx/artprov.h"
32efded3 39#include "wx/settings.h"
78d14f80 40
34c6bbee 41#include "wx/xml/xml.h"
78d14f80
VS
42#include "wx/xrc/xmlres.h"
43
44#include "wx/arrimpl.cpp"
17a1ebd1 45WX_DEFINE_OBJARRAY(wxXmlResourceDataRecords)
78d14f80
VS
46
47
824e8eaa
VS
48wxXmlResource *wxXmlResource::ms_instance = NULL;
49
50/*static*/ wxXmlResource *wxXmlResource::Get()
51{
52 if ( !ms_instance )
53 ms_instance = new wxXmlResource;
54 return ms_instance;
55}
56
57/*static*/ wxXmlResource *wxXmlResource::Set(wxXmlResource *res)
58{
59 wxXmlResource *old = ms_instance;
60 ms_instance = res;
61 return old;
62}
63
daa85ee3 64wxXmlResource::wxXmlResource(int flags)
78d14f80 65{
daa85ee3 66 m_flags = flags;
78d14f80
VS
67 m_version = -1;
68}
69
daa85ee3 70wxXmlResource::wxXmlResource(const wxString& filemask, int flags)
78d14f80 71{
daa85ee3 72 m_flags = flags;
78d14f80 73 m_version = -1;
78d14f80
VS
74 Load(filemask);
75}
76
77wxXmlResource::~wxXmlResource()
78{
79 ClearHandlers();
80}
81
82
60fd818a
VZ
83/* static */
84wxString wxXmlResource::ConvertFileNameToURL(const wxString& filename)
85{
86 wxString fnd(filename);
87
88 // NB: as Load() and Unload() accept both filenames and URLs (should
89 // probably be changed to filenames only, but embedded resources
90 // currently rely on its ability to handle URLs - FIXME) we need to
91 // determine whether found name is filename and not URL and this is the
92 // fastest/simplest way to do it
93 if (wxFileName::FileExists(fnd))
94 {
95 // Make the name absolute filename, because the app may
96 // change working directory later:
97 wxFileName fn(fnd);
98 if (fn.IsRelative())
99 {
100 fn.MakeAbsolute();
101 fnd = fn.GetFullPath();
102 }
103#if wxUSE_FILESYSTEM
104 fnd = wxFileSystem::FileNameToURL(fnd);
105#endif
106 }
107
108 return fnd;
109}
110
111#if wxUSE_FILESYSTEM
112
113/* static */
114bool wxXmlResource::IsArchive(const wxString& filename)
115{
116 const wxString fnd = filename.Lower();
117
118 return fnd.Matches(wxT("*.zip")) || fnd.Matches(wxT("*.xrs"));
119}
120
121#endif // wxUSE_FILESYSTEM
122
78d14f80
VS
123bool wxXmlResource::Load(const wxString& filemask)
124{
125 wxString fnd;
126 wxXmlResourceDataRecord *drec;
127 bool iswild = wxIsWild(filemask);
f80ea77b 128 bool rt = true;
78d14f80
VS
129
130#if wxUSE_FILESYSTEM
131 wxFileSystem fsys;
132# define wxXmlFindFirst fsys.FindFirst(filemask, wxFILE)
133# define wxXmlFindNext fsys.FindNext()
134#else
135# define wxXmlFindFirst wxFindFirstFile(filemask, wxFILE)
136# define wxXmlFindNext wxFindNextFile()
137#endif
138 if (iswild)
139 fnd = wxXmlFindFirst;
140 else
141 fnd = filemask;
ec157c8f 142 while (!fnd.empty())
78d14f80 143 {
60fd818a 144 fnd = ConvertFileNameToURL(fnd);
b380439d 145
78d14f80 146#if wxUSE_FILESYSTEM
60fd818a 147 if ( IsArchive(fnd) )
78d14f80 148 {
f9d243a3 149 rt = rt && Load(fnd + wxT("#zip:*.xrc"));
78d14f80 150 }
60fd818a
VZ
151 else // a single resource URL
152#endif // wxUSE_FILESYSTEM
78d14f80
VS
153 {
154 drec = new wxXmlResourceDataRecord;
155 drec->File = fnd;
156 m_data.Add(drec);
157 }
158
159 if (iswild)
160 fnd = wxXmlFindNext;
161 else
162 fnd = wxEmptyString;
163 }
164# undef wxXmlFindFirst
165# undef wxXmlFindNext
d614f51b 166 return rt && UpdateResources();
78d14f80
VS
167}
168
60fd818a
VZ
169bool wxXmlResource::Unload(const wxString& filename)
170{
171 wxASSERT_MSG( !wxIsWild(filename),
172 _T("wildcards not supported by wxXmlResource::Unload()") );
173
174 wxString fnd = ConvertFileNameToURL(filename);
175#if wxUSE_FILESYSTEM
176 const bool isArchive = IsArchive(fnd);
177 if ( isArchive )
178 fnd += _T("#zip:");
179#endif // wxUSE_FILESYSTEM
180
181 bool unloaded = false;
182 const size_t count = m_data.GetCount();
183 for ( size_t i = 0; i < count; i++ )
184 {
185#if wxUSE_FILESYSTEM
186 if ( isArchive )
187 {
188 if ( m_data[i].File.StartsWith(fnd) )
189 unloaded = true;
190 // don't break from the loop, we can have other matching files
191 }
192 else // a single resource URL
193#endif // wxUSE_FILESYSTEM
194 {
195 if ( m_data[i].File == fnd )
196 {
197 m_data.RemoveAt(i);
198 unloaded = true;
199
200 // no sense in continuing, there is only one file with this URL
201 break;
202 }
203 }
204 }
205
206 return unloaded;
207}
208
78d14f80 209
854e189f 210IMPLEMENT_ABSTRACT_CLASS(wxXmlResourceHandler, wxObject)
78d14f80
VS
211
212void wxXmlResource::AddHandler(wxXmlResourceHandler *handler)
213{
214 m_handlers.Append(handler);
215 handler->SetParentResource(this);
216}
217
92e898b0
RD
218void wxXmlResource::InsertHandler(wxXmlResourceHandler *handler)
219{
220 m_handlers.Insert(handler);
221 handler->SetParentResource(this);
222}
223
78d14f80
VS
224
225
226void wxXmlResource::ClearHandlers()
227{
461932ae 228 WX_CLEAR_LIST(wxList, m_handlers);
78d14f80
VS
229}
230
231
78d14f80
VS
232wxMenu *wxXmlResource::LoadMenu(const wxString& name)
233{
234 return (wxMenu*)CreateResFromNode(FindResource(name, wxT("wxMenu")), NULL, NULL);
235}
236
237
238
4a1b9596 239wxMenuBar *wxXmlResource::LoadMenuBar(wxWindow *parent, const wxString& name)
78d14f80 240{
4a1b9596 241 return (wxMenuBar*)CreateResFromNode(FindResource(name, wxT("wxMenuBar")), parent, NULL);
78d14f80
VS
242}
243
244
245
4a1b9596 246#if wxUSE_TOOLBAR
78d14f80
VS
247wxToolBar *wxXmlResource::LoadToolBar(wxWindow *parent, const wxString& name)
248{
249 return (wxToolBar*)CreateResFromNode(FindResource(name, wxT("wxToolBar")), parent, NULL);
250}
4a1b9596 251#endif
78d14f80
VS
252
253
254wxDialog *wxXmlResource::LoadDialog(wxWindow *parent, const wxString& name)
255{
4dd75a6a 256 return (wxDialog*)CreateResFromNode(FindResource(name, wxT("wxDialog")), parent, NULL);
78d14f80
VS
257}
258
259bool wxXmlResource::LoadDialog(wxDialog *dlg, wxWindow *parent, const wxString& name)
260{
261 return CreateResFromNode(FindResource(name, wxT("wxDialog")), parent, dlg) != NULL;
262}
263
264
265
266wxPanel *wxXmlResource::LoadPanel(wxWindow *parent, const wxString& name)
267{
268 return (wxPanel*)CreateResFromNode(FindResource(name, wxT("wxPanel")), parent, NULL);
269}
270
271bool wxXmlResource::LoadPanel(wxPanel *panel, wxWindow *parent, const wxString& name)
272{
273 return CreateResFromNode(FindResource(name, wxT("wxPanel")), parent, panel) != NULL;
274}
275
92e898b0
RD
276wxFrame *wxXmlResource::LoadFrame(wxWindow* parent, const wxString& name)
277{
278 return (wxFrame*)CreateResFromNode(FindResource(name, wxT("wxFrame")), parent, NULL);
279}
280
78d14f80
VS
281bool wxXmlResource::LoadFrame(wxFrame* frame, wxWindow *parent, const wxString& name)
282{
283 return CreateResFromNode(FindResource(name, wxT("wxFrame")), parent, frame) != NULL;
284}
285
286wxBitmap wxXmlResource::LoadBitmap(const wxString& name)
287{
288 wxBitmap *bmp = (wxBitmap*)CreateResFromNode(
289 FindResource(name, wxT("wxBitmap")), NULL, NULL);
290 wxBitmap rt;
291
292 if (bmp) { rt = *bmp; delete bmp; }
293 return rt;
294}
295
296wxIcon wxXmlResource::LoadIcon(const wxString& name)
297{
298 wxIcon *icon = (wxIcon*)CreateResFromNode(
299 FindResource(name, wxT("wxIcon")), NULL, NULL);
300 wxIcon rt;
301
302 if (icon) { rt = *icon; delete icon; }
303 return rt;
304}
305
92e898b0
RD
306
307wxObject *wxXmlResource::LoadObject(wxWindow *parent, const wxString& name, const wxString& classname)
308{
309 return CreateResFromNode(FindResource(name, classname), parent, NULL);
310}
311
312bool wxXmlResource::LoadObject(wxObject *instance, wxWindow *parent, const wxString& name, const wxString& classname)
313{
314 return CreateResFromNode(FindResource(name, classname), parent, instance) != NULL;
315}
316
317
78d14f80
VS
318bool wxXmlResource::AttachUnknownControl(const wxString& name,
319 wxWindow *control, wxWindow *parent)
320{
321 if (parent == NULL)
322 parent = control->GetParent();
323 wxWindow *container = parent->FindWindow(name + wxT("_container"));
324 if (!container)
325 {
326 wxLogError(_("Cannot find container for unknown control '%s'."), name.c_str());
f80ea77b 327 return false;
78d14f80
VS
328 }
329 return control->Reparent(container);
330}
331
332
77b2f9b1 333static void ProcessPlatformProperty(wxXmlNode *node)
78d14f80
VS
334{
335 wxString s;
336 bool isok;
337
338 wxXmlNode *c = node->GetChildren();
339 while (c)
340 {
f80ea77b 341 isok = false;
78d14f80 342 if (!c->GetPropVal(wxT("platform"), &s))
f80ea77b 343 isok = true;
78d14f80
VS
344 else
345 {
2b5f62a0 346 wxStringTokenizer tkn(s, wxT(" |"));
78d14f80
VS
347
348 while (tkn.HasMoreTokens())
349 {
350 s = tkn.GetNextToken();
84389518 351#ifdef __WINDOWS__
d003330c
VS
352 if (s == wxT("win")) isok = true;
353#endif
b380439d 354#if defined(__MAC__) || defined(__APPLE__)
d003330c 355 if (s == wxT("mac")) isok = true;
b380439d
RD
356#elif defined(__UNIX__)
357 if (s == wxT("unix")) isok = true;
78d14f80 358#endif
d003330c
VS
359#ifdef __OS2__
360 if (s == wxT("os2")) isok = true;
361#endif
362
363 if (isok)
364 break;
78d14f80
VS
365 }
366 }
367
368 if (isok)
d7b1d73c 369 {
78d14f80 370 ProcessPlatformProperty(c);
d7b1d73c
VS
371 c = c->GetNext();
372 }
78d14f80
VS
373 else
374 {
d7b1d73c 375 wxXmlNode *c2 = c->GetNext();
db59a97c 376 node->RemoveChild(c);
78d14f80 377 delete c;
d7b1d73c 378 c = c2;
78d14f80 379 }
78d14f80
VS
380 }
381}
382
383
384
d614f51b 385bool wxXmlResource::UpdateResources()
78d14f80 386{
d614f51b 387 bool rt = true;
78d14f80
VS
388 bool modif;
389# if wxUSE_FILESYSTEM
390 wxFSFile *file = NULL;
19d0f58d 391 wxUnusedVar(file);
78d14f80
VS
392 wxFileSystem fsys;
393# endif
394
480505bc
VS
395 wxString encoding(wxT("UTF-8"));
396#if !wxUSE_UNICODE && wxUSE_INTL
397 if ( (GetFlags() & wxXRC_USE_LOCALE) == 0 )
398 {
75d38380
VS
399 // In case we are not using wxLocale to translate strings, convert the
400 // strings GUI's charset. This must not be done when wxXRC_USE_LOCALE
401 // is on, because it could break wxGetTranslation lookup.
480505bc
VS
402 encoding = wxLocale::GetSystemEncodingName();
403 }
404#endif
405
78d14f80
VS
406 for (size_t i = 0; i < m_data.GetCount(); i++)
407 {
408 modif = (m_data[i].Doc == NULL);
409
648db587 410 if (!modif && !(m_flags & wxXRC_NO_RELOADING))
78d14f80
VS
411 {
412# if wxUSE_FILESYSTEM
413 file = fsys.OpenFile(m_data[i].File);
34af0de4 414# if wxUSE_DATETIME
78d14f80 415 modif = file && file->GetModificationTime() > m_data[i].Time;
34af0de4
VZ
416# else // wxUSE_DATETIME
417 modif = true;
418# endif // wxUSE_DATETIME
78d14f80 419 if (!file)
d614f51b 420 {
78d14f80 421 wxLogError(_("Cannot open file '%s'."), m_data[i].File.c_str());
d614f51b
VS
422 rt = false;
423 }
78d14f80 424 wxDELETE(file);
19d0f58d 425 wxUnusedVar(file);
34af0de4
VZ
426# else // wxUSE_FILESYSTEM
427# if wxUSE_DATETIME
78d14f80 428 modif = wxDateTime(wxFileModificationTime(m_data[i].File)) > m_data[i].Time;
34af0de4
VZ
429# else // wxUSE_DATETIME
430 modif = true;
431# endif // wxUSE_DATETIME
432# endif // wxUSE_FILESYSTEM
78d14f80
VS
433 }
434
435 if (modif)
436 {
648db587
VS
437 wxLogTrace(_T("xrc"),
438 _T("opening file '%s'"), m_data[i].File.c_str());
439
480505bc 440 wxInputStream *stream = NULL;
78d14f80
VS
441
442# if wxUSE_FILESYSTEM
443 file = fsys.OpenFile(m_data[i].File);
f80ea77b
WS
444 if (file)
445 stream = file->GetStream();
78d14f80
VS
446# else
447 stream = new wxFileInputStream(m_data[i].File);
448# endif
449
450 if (stream)
451 {
452 delete m_data[i].Doc;
453 m_data[i].Doc = new wxXmlDocument;
454 }
4d876ee3 455 if (!stream || !m_data[i].Doc->Load(*stream, encoding))
78d14f80 456 {
480505bc
VS
457 wxLogError(_("Cannot load resources from file '%s'."),
458 m_data[i].File.c_str());
78d14f80 459 wxDELETE(m_data[i].Doc);
d614f51b 460 rt = false;
78d14f80
VS
461 }
462 else if (m_data[i].Doc->GetRoot()->GetName() != wxT("resource"))
463 {
b5d6954b 464 wxLogError(_("Invalid XRC resource '%s': doesn't have root node 'resource'."), m_data[i].File.c_str());
78d14f80 465 wxDELETE(m_data[i].Doc);
d614f51b 466 rt = false;
78d14f80
VS
467 }
468 else
f80ea77b 469 {
78d14f80
VS
470 long version;
471 int v1, v2, v3, v4;
472 wxString verstr = m_data[i].Doc->GetRoot()->GetPropVal(
473 wxT("version"), wxT("0.0.0.0"));
474 if (wxSscanf(verstr.c_str(), wxT("%i.%i.%i.%i"),
475 &v1, &v2, &v3, &v4) == 4)
476 version = v1*256*256*256+v2*256*256+v3*256+v4;
477 else
478 version = 0;
479 if (m_version == -1)
480 m_version = version;
481 if (m_version != version)
d614f51b 482 {
78d14f80 483 wxLogError(_("Resource files must have same version number!"));
d614f51b
VS
484 rt = false;
485 }
78d14f80
VS
486
487 ProcessPlatformProperty(m_data[i].Doc->GetRoot());
34af0de4 488#if wxUSE_DATETIME
496f0a58 489#if wxUSE_FILESYSTEM
f80ea77b 490 m_data[i].Time = file->GetModificationTime();
34af0de4 491#else // wxUSE_FILESYSTEM
496f0a58 492 m_data[i].Time = wxDateTime(wxFileModificationTime(m_data[i].File));
34af0de4
VZ
493#endif // wxUSE_FILESYSTEM
494#endif // wxUSE_DATETIME
f80ea77b 495 }
78d14f80
VS
496
497# if wxUSE_FILESYSTEM
f80ea77b
WS
498 wxDELETE(file);
499 wxUnusedVar(file);
78d14f80 500# else
f80ea77b 501 wxDELETE(stream);
78d14f80
VS
502# endif
503 }
504 }
d614f51b
VS
505
506 return rt;
78d14f80
VS
507}
508
509
b272b6dc
RD
510wxXmlNode *wxXmlResource::DoFindResource(wxXmlNode *parent,
511 const wxString& name,
512 const wxString& classname,
47793ab8
VS
513 bool recursive)
514{
515 wxString dummy;
516 wxXmlNode *node;
517
518 // first search for match at the top-level nodes (as this is
519 // where the resource is most commonly looked for):
520 for (node = parent->GetChildren(); node; node = node->GetNext())
521 {
b272b6dc
RD
522 if ( node->GetType() == wxXML_ELEMENT_NODE &&
523 (node->GetName() == wxT("object") ||
47793ab8 524 node->GetName() == wxT("object_ref")) &&
2b5f62a0
VZ
525 node->GetPropVal(wxT("name"), &dummy) && dummy == name )
526 {
527 wxString cls(node->GetPropVal(wxT("class"), wxEmptyString));
528 if (!classname || cls == classname)
529 return node;
530 // object_ref may not have 'class' property:
531 if (cls.empty() && node->GetName() == wxT("object_ref"))
532 {
533 wxString refName = node->GetPropVal(wxT("ref"), wxEmptyString);
534 if (refName.empty())
535 continue;
f80ea77b 536 wxXmlNode* refNode = FindResource(refName, wxEmptyString, true);
2b5f62a0
VZ
537 if (refNode &&
538 refNode->GetPropVal(wxT("class"), wxEmptyString) == classname)
539 {
540 return node;
541 }
542 }
543 }
47793ab8
VS
544 }
545
546 if ( recursive )
547 for (node = parent->GetChildren(); node; node = node->GetNext())
548 {
b272b6dc
RD
549 if ( node->GetType() == wxXML_ELEMENT_NODE &&
550 (node->GetName() == wxT("object") ||
47793ab8
VS
551 node->GetName() == wxT("object_ref")) )
552 {
f80ea77b 553 wxXmlNode* found = DoFindResource(node, name, classname, true);
47793ab8
VS
554 if ( found )
555 return found;
556 }
557 }
558
559 return NULL;
560}
78d14f80 561
b272b6dc 562wxXmlNode *wxXmlResource::FindResource(const wxString& name,
47793ab8
VS
563 const wxString& classname,
564 bool recursive)
78d14f80
VS
565{
566 UpdateResources(); //ensure everything is up-to-date
567
568 wxString dummy;
569 for (size_t f = 0; f < m_data.GetCount(); f++)
570 {
47793ab8
VS
571 if ( m_data[f].Doc == NULL || m_data[f].Doc->GetRoot() == NULL )
572 continue;
573
b272b6dc 574 wxXmlNode* found = DoFindResource(m_data[f].Doc->GetRoot(),
47793ab8
VS
575 name, classname, recursive);
576 if ( found )
577 {
78d14f80 578#if wxUSE_FILESYSTEM
47793ab8 579 m_curFileSystem.ChangePathTo(m_data[f].File);
78d14f80 580#endif
47793ab8
VS
581 return found;
582 }
78d14f80
VS
583 }
584
b5d6954b 585 wxLogError(_("XRC resource '%s' (class '%s') not found!"),
78d14f80
VS
586 name.c_str(), classname.c_str());
587 return NULL;
588}
589
47793ab8
VS
590static void MergeNodes(wxXmlNode& dest, wxXmlNode& with)
591{
592 // Merge properties:
593 for (wxXmlProperty *prop = with.GetProperties(); prop; prop = prop->GetNext())
594 {
595 wxXmlProperty *dprop;
596 for (dprop = dest.GetProperties(); dprop; dprop = dprop->GetNext())
597 {
b272b6dc 598
47793ab8
VS
599 if ( dprop->GetName() == prop->GetName() )
600 {
601 dprop->SetValue(prop->GetValue());
602 break;
603 }
604 }
78d14f80 605
47793ab8
VS
606 if ( !dprop )
607 dest.AddProperty(prop->GetName(), prop->GetValue());
608 }
609
610 // Merge child nodes:
611 for (wxXmlNode* node = with.GetChildren(); node; node = node->GetNext())
612 {
613 wxString name = node->GetPropVal(wxT("name"), wxEmptyString);
614 wxXmlNode *dnode;
615
616 for (dnode = dest.GetChildren(); dnode; dnode = dnode->GetNext() )
617 {
618 if ( dnode->GetName() == node->GetName() &&
2b5f62a0 619 dnode->GetPropVal(wxT("name"), wxEmptyString) == name &&
47793ab8
VS
620 dnode->GetType() == node->GetType() )
621 {
622 MergeNodes(*dnode, *node);
623 break;
624 }
625 }
626
627 if ( !dnode )
628 dest.AddChild(new wxXmlNode(*node));
629 }
630
631 if ( dest.GetType() == wxXML_TEXT_NODE && with.GetContent().Length() )
632 dest.SetContent(with.GetContent());
633}
78d14f80 634
317a0d73
VS
635wxObject *wxXmlResource::CreateResFromNode(wxXmlNode *node, wxObject *parent,
636 wxObject *instance,
637 wxXmlResourceHandler *handlerToUse)
78d14f80
VS
638{
639 if (node == NULL) return NULL;
640
47793ab8
VS
641 // handling of referenced resource
642 if ( node->GetName() == wxT("object_ref") )
643 {
644 wxString refName = node->GetPropVal(wxT("ref"), wxEmptyString);
f80ea77b 645 wxXmlNode* refNode = FindResource(refName, wxEmptyString, true);
47793ab8
VS
646
647 if ( !refNode )
648 {
b272b6dc 649 wxLogError(_("Referenced object node with ref=\"%s\" not found!"),
47793ab8
VS
650 refName.c_str());
651 return NULL;
652 }
653
654 wxXmlNode copy(*refNode);
655 MergeNodes(copy, *node);
656
657 return CreateResFromNode(&copy, parent, instance);
658 }
659
78d14f80 660 wxXmlResourceHandler *handler;
317a0d73
VS
661
662 if (handlerToUse)
b380439d 663 {
317a0d73 664 if (handlerToUse->CanHandle(node))
78d14f80 665 {
317a0d73
VS
666 return handlerToUse->CreateResource(node, parent, instance);
667 }
668 }
669 else if (node->GetName() == wxT("object"))
b380439d 670 {
461932ae 671 wxList::compatibility_iterator ND = m_handlers.GetFirst();
317a0d73
VS
672 while (ND)
673 {
674 handler = (wxXmlResourceHandler*)ND->GetData();
675 if (handler->CanHandle(node))
676 {
677 return handler->CreateResource(node, parent, instance);
678 }
679 ND = ND->GetNext();
78d14f80 680 }
78d14f80
VS
681 }
682
683 wxLogError(_("No handler found for XML node '%s', class '%s'!"),
684 node->GetName().c_str(),
685 node->GetPropVal(wxT("class"), wxEmptyString).c_str());
686 return NULL;
687}
688
689
2b5f62a0
VZ
690#include "wx/listimpl.cpp"
691WX_DECLARE_LIST(wxXmlSubclassFactory, wxXmlSubclassFactoriesList);
17a1ebd1 692WX_DEFINE_LIST(wxXmlSubclassFactoriesList)
2b5f62a0
VZ
693
694wxXmlSubclassFactoriesList *wxXmlResource::ms_subclassFactories = NULL;
695
696/*static*/ void wxXmlResource::AddSubclassFactory(wxXmlSubclassFactory *factory)
697{
698 if (!ms_subclassFactories)
699 {
700 ms_subclassFactories = new wxXmlSubclassFactoriesList;
2b5f62a0
VZ
701 }
702 ms_subclassFactories->Append(factory);
703}
704
705class wxXmlSubclassFactoryCXX : public wxXmlSubclassFactory
706{
707public:
708 ~wxXmlSubclassFactoryCXX() {}
709
710 wxObject *Create(const wxString& className)
711 {
712 wxClassInfo* classInfo = wxClassInfo::FindClass(className);
713
714 if (classInfo)
715 return classInfo->CreateObject();
716 else
717 return NULL;
718 }
719};
720
721
722
78d14f80 723
78d14f80
VS
724wxXmlResourceHandler::wxXmlResourceHandler()
725 : m_node(NULL), m_parent(NULL), m_instance(NULL),
9a8d8c5a 726 m_parentAsWindow(NULL)
78d14f80
VS
727{}
728
729
730
731wxObject *wxXmlResourceHandler::CreateResource(wxXmlNode *node, wxObject *parent, wxObject *instance)
732{
733 wxXmlNode *myNode = m_node;
734 wxString myClass = m_class;
735 wxObject *myParent = m_parent, *myInstance = m_instance;
9a8d8c5a 736 wxWindow *myParentAW = m_parentAsWindow;
78d14f80 737
daa85ee3 738 m_instance = instance;
b272b6dc 739 if (!m_instance && node->HasProp(wxT("subclass")) &&
daa85ee3
VS
740 !(m_resource->GetFlags() & wxXRC_NO_SUBCLASSING))
741 {
742 wxString subclass = node->GetPropVal(wxT("subclass"), wxEmptyString);
2b5f62a0 743 if (!subclass.empty())
daa85ee3 744 {
461932ae 745 for (wxXmlSubclassFactoriesList::compatibility_iterator i = wxXmlResource::ms_subclassFactories->GetFirst();
2b5f62a0
VZ
746 i; i = i->GetNext())
747 {
748 m_instance = i->GetData()->Create(subclass);
749 if (m_instance)
750 break;
751 }
daa85ee3 752
2b5f62a0
VZ
753 if (!m_instance)
754 {
755 wxString name = node->GetPropVal(wxT("name"), wxEmptyString);
756 wxLogError(_("Subclass '%s' not found for resource '%s', not subclassing!"),
757 subclass.c_str(), name.c_str());
758 }
759 }
daa85ee3
VS
760 }
761
78d14f80
VS
762 m_node = node;
763 m_class = node->GetPropVal(wxT("class"), wxEmptyString);
764 m_parent = parent;
78d14f80 765 m_parentAsWindow = wxDynamicCast(m_parent, wxWindow);
78d14f80
VS
766
767 wxObject *returned = DoCreateResource();
768
769 m_node = myNode;
770 m_class = myClass;
771 m_parent = myParent; m_parentAsWindow = myParentAW;
9a8d8c5a 772 m_instance = myInstance;
78d14f80
VS
773
774 return returned;
775}
776
777
778void wxXmlResourceHandler::AddStyle(const wxString& name, int value)
779{
780 m_styleNames.Add(name);
781 m_styleValues.Add(value);
782}
783
784
785
786void wxXmlResourceHandler::AddWindowStyles()
787{
9dc579b3 788 XRC_ADD_STYLE(wxCLIP_CHILDREN);
daa85ee3
VS
789 XRC_ADD_STYLE(wxSIMPLE_BORDER);
790 XRC_ADD_STYLE(wxSUNKEN_BORDER);
791 XRC_ADD_STYLE(wxDOUBLE_BORDER);
792 XRC_ADD_STYLE(wxRAISED_BORDER);
793 XRC_ADD_STYLE(wxSTATIC_BORDER);
794 XRC_ADD_STYLE(wxNO_BORDER);
795 XRC_ADD_STYLE(wxTRANSPARENT_WINDOW);
796 XRC_ADD_STYLE(wxWANTS_CHARS);
43840d8b 797 XRC_ADD_STYLE(wxTAB_TRAVERSAL);
daa85ee3 798 XRC_ADD_STYLE(wxNO_FULL_REPAINT_ON_RESIZE);
7539ba56 799 XRC_ADD_STYLE(wxFULL_REPAINT_ON_RESIZE);
162a4f93 800 XRC_ADD_STYLE(wxALWAYS_SHOW_SB);
9f4ed861 801 XRC_ADD_STYLE(wxWS_EX_BLOCK_EVENTS);
b0802e64 802 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY);
78d14f80
VS
803}
804
805
806
807bool wxXmlResourceHandler::HasParam(const wxString& param)
808{
809 return (GetParamNode(param) != NULL);
810}
811
812
813int wxXmlResourceHandler::GetStyle(const wxString& param, int defaults)
814{
815 wxString s = GetParamValue(param);
816
817 if (!s) return defaults;
818
2b5f62a0 819 wxStringTokenizer tkn(s, wxT("| \t\n"), wxTOKEN_STRTOK);
78d14f80
VS
820 int style = 0;
821 int index;
822 wxString fl;
823 while (tkn.HasMoreTokens())
824 {
825 fl = tkn.GetNextToken();
826 index = m_styleNames.Index(fl);
827 if (index != wxNOT_FOUND)
828 style |= m_styleValues[index];
829 else
830 wxLogError(_("Unknown style flag ") + fl);
831 }
832 return style;
833}
834
835
836
ee1046d1 837wxString wxXmlResourceHandler::GetText(const wxString& param, bool translate)
78d14f80 838{
7b56015f
VS
839 wxXmlNode *parNode = GetParamNode(param);
840 wxString str1(GetNodeContent(parNode));
78d14f80
VS
841 wxString str2;
842 const wxChar *dt;
843 wxChar amp_char;
844
b272b6dc
RD
845 // VS: First version of XRC resources used $ instead of & (which is
846 // illegal in XML), but later I realized that '_' fits this purpose
718cf160 847 // much better (because &File means "File with F underlined").
78d14f80
VS
848 if (m_resource->CompareVersion(2,3,0,1) < 0)
849 amp_char = wxT('$');
850 else
851 amp_char = wxT('_');
852
853 for (dt = str1.c_str(); *dt; dt++)
854 {
855 // Remap amp_char to &, map double amp_char to amp_char (for things
856 // like "&File..." -- this is illegal in XML, so we use "_File..."):
857 if (*dt == amp_char)
858 {
859 if ( *(++dt) == amp_char )
860 str2 << amp_char;
861 else
862 str2 << wxT('&') << *dt;
863 }
984c33c9 864 // Remap \n to CR, \r to LF, \t to TAB, \\ to \:
78d14f80
VS
865 else if (*dt == wxT('\\'))
866 switch (*(++dt))
867 {
984c33c9
VS
868 case wxT('n'):
869 str2 << wxT('\n');
870 break;
e7a3a5a5 871
984c33c9
VS
872 case wxT('t'):
873 str2 << wxT('\t');
874 break;
e7a3a5a5 875
984c33c9
VS
876 case wxT('r'):
877 str2 << wxT('\r');
878 break;
879
880 case wxT('\\') :
881 // "\\" wasn't translated to "\" prior to 2.5.3.0:
882 if (m_resource->CompareVersion(2,5,3,0) >= 0)
883 {
884 str2 << wxT('\\');
885 break;
886 }
887 // else fall-through to default: branch below
e7a3a5a5 888
984c33c9
VS
889 default:
890 str2 << wxT('\\') << *dt;
891 break;
78d14f80
VS
892 }
893 else str2 << *dt;
894 }
b272b6dc 895
7b56015f
VS
896 if (m_resource->GetFlags() & wxXRC_USE_LOCALE)
897 {
898 if (translate && parNode &&
899 parNode->GetPropVal(wxT("translate"), wxEmptyString) != wxT("0"))
900 {
901 return wxGetTranslation(str2);
902 }
903 else
904 {
905#if wxUSE_UNICODE
906 return str2;
907#else
908 // The string is internally stored as UTF-8, we have to convert
909 // it into system's default encoding so that it can be displayed:
910 return wxString(str2.mb_str(wxConvUTF8), wxConvLocal);
911#endif
912 }
913 }
8516a98b
DS
914
915 // If wxXRC_USE_LOCALE is not set, then the string is already in
916 // system's default encoding in ANSI build, so we don't have to
917 // do anything special here.
918 return str2;
78d14f80
VS
919}
920
921
922
923long wxXmlResourceHandler::GetLong(const wxString& param, long defaultv)
924{
925 long value;
926 wxString str1 = GetParamValue(param);
927
928 if (!str1.ToLong(&value))
929 value = defaultv;
930
931 return value;
932}
e7a3a5a5 933
1df61962
VS
934float wxXmlResourceHandler::GetFloat(const wxString& param, float defaultv)
935{
936 double value;
937 wxString str1 = GetParamValue(param);
938
e7a3a5a5 939#ifndef __WXWINCE__
1df61962 940 const char *prevlocale = setlocale(LC_NUMERIC, "C");
e7a3a5a5
WS
941#endif
942
1df61962
VS
943 if (!str1.ToDouble(&value))
944 value = defaultv;
945
e7a3a5a5 946#ifndef __WXWINCE__
1df61962 947 setlocale(LC_NUMERIC, prevlocale);
e7a3a5a5 948#endif
78d14f80 949
17a1ebd1 950 return wx_truncate_cast(float, value);
1df61962 951}
78d14f80 952
af1337b0 953
78d14f80
VS
954int wxXmlResourceHandler::GetID()
955{
13de23f6 956 return wxXmlResource::GetXRCID(GetName());
78d14f80
VS
957}
958
959
af1337b0 960
78d14f80
VS
961wxString wxXmlResourceHandler::GetName()
962{
963 return m_node->GetPropVal(wxT("name"), wxT("-1"));
964}
965
966
967
968bool wxXmlResourceHandler::GetBool(const wxString& param, bool defaultv)
969{
970 wxString v = GetParamValue(param);
971 v.MakeLower();
972 if (!v) return defaultv;
8516a98b
DS
973
974 return (v == wxT("1"));
78d14f80
VS
975}
976
977
1df61962
VS
978static wxColour GetSystemColour(const wxString& name)
979{
980 if (!name.empty())
981 {
982 #define SYSCLR(clr) \
983 if (name == _T(#clr)) return wxSystemSettings::GetColour(clr);
984 SYSCLR(wxSYS_COLOUR_SCROLLBAR)
985 SYSCLR(wxSYS_COLOUR_BACKGROUND)
986 SYSCLR(wxSYS_COLOUR_DESKTOP)
987 SYSCLR(wxSYS_COLOUR_ACTIVECAPTION)
988 SYSCLR(wxSYS_COLOUR_INACTIVECAPTION)
989 SYSCLR(wxSYS_COLOUR_MENU)
990 SYSCLR(wxSYS_COLOUR_WINDOW)
991 SYSCLR(wxSYS_COLOUR_WINDOWFRAME)
992 SYSCLR(wxSYS_COLOUR_MENUTEXT)
993 SYSCLR(wxSYS_COLOUR_WINDOWTEXT)
994 SYSCLR(wxSYS_COLOUR_CAPTIONTEXT)
995 SYSCLR(wxSYS_COLOUR_ACTIVEBORDER)
996 SYSCLR(wxSYS_COLOUR_INACTIVEBORDER)
997 SYSCLR(wxSYS_COLOUR_APPWORKSPACE)
998 SYSCLR(wxSYS_COLOUR_HIGHLIGHT)
999 SYSCLR(wxSYS_COLOUR_HIGHLIGHTTEXT)
1000 SYSCLR(wxSYS_COLOUR_BTNFACE)
1001 SYSCLR(wxSYS_COLOUR_3DFACE)
1002 SYSCLR(wxSYS_COLOUR_BTNSHADOW)
1003 SYSCLR(wxSYS_COLOUR_3DSHADOW)
1004 SYSCLR(wxSYS_COLOUR_GRAYTEXT)
1005 SYSCLR(wxSYS_COLOUR_BTNTEXT)
1006 SYSCLR(wxSYS_COLOUR_INACTIVECAPTIONTEXT)
1007 SYSCLR(wxSYS_COLOUR_BTNHIGHLIGHT)
1008 SYSCLR(wxSYS_COLOUR_BTNHILIGHT)
1009 SYSCLR(wxSYS_COLOUR_3DHIGHLIGHT)
1010 SYSCLR(wxSYS_COLOUR_3DHILIGHT)
1011 SYSCLR(wxSYS_COLOUR_3DDKSHADOW)
1012 SYSCLR(wxSYS_COLOUR_3DLIGHT)
1013 SYSCLR(wxSYS_COLOUR_INFOTEXT)
1014 SYSCLR(wxSYS_COLOUR_INFOBK)
1015 SYSCLR(wxSYS_COLOUR_LISTBOX)
1016 SYSCLR(wxSYS_COLOUR_HOTLIGHT)
1017 SYSCLR(wxSYS_COLOUR_GRADIENTACTIVECAPTION)
1018 SYSCLR(wxSYS_COLOUR_GRADIENTINACTIVECAPTION)
1019 SYSCLR(wxSYS_COLOUR_MENUHILIGHT)
1020 SYSCLR(wxSYS_COLOUR_MENUBAR)
1021 #undef SYSCLR
1022 }
1023
1024 return wxNullColour;
1025}
78d14f80
VS
1026
1027wxColour wxXmlResourceHandler::GetColour(const wxString& param)
1028{
1029 wxString v = GetParamValue(param);
1df61962
VS
1030
1031 // find colour using HTML syntax (#RRGGBB)
78d14f80
VS
1032 unsigned long tmp = 0;
1033
1034 if (v.Length() != 7 || v[0u] != wxT('#') ||
1035 wxSscanf(v.c_str(), wxT("#%lX"), &tmp) != 1)
1036 {
1df61962
VS
1037 // the colour doesn't use #RRGGBB format, check if it is symbolic
1038 // colour name:
1039 wxColour clr = GetSystemColour(v);
1040 if (clr.Ok())
1041 return clr;
e7a3a5a5 1042
b5d6954b 1043 wxLogError(_("XRC resource: Incorrect colour specification '%s' for property '%s'."),
78d14f80
VS
1044 v.c_str(), param.c_str());
1045 return wxNullColour;
1046 }
1047
1048 return wxColour((unsigned char) ((tmp & 0xFF0000) >> 16) ,
1049 (unsigned char) ((tmp & 0x00FF00) >> 8),
1050 (unsigned char) ((tmp & 0x0000FF)));
1051}
1052
1053
1054
92e898b0 1055wxBitmap wxXmlResourceHandler::GetBitmap(const wxString& param,
db59a97c
VS
1056 const wxArtClient& defaultArtClient,
1057 wxSize size)
78d14f80 1058{
db59a97c
VS
1059 /* If the bitmap is specified as stock item, query wxArtProvider for it: */
1060 wxXmlNode *bmpNode = GetParamNode(param);
1061 if ( bmpNode )
af1337b0 1062 {
db59a97c
VS
1063 wxString sid = bmpNode->GetPropVal(wxT("stock_id"), wxEmptyString);
1064 if ( !sid.empty() )
1065 {
b3e85292
VS
1066 wxString scl = bmpNode->GetPropVal(wxT("stock_client"), wxEmptyString);
1067 if (scl.empty())
1068 scl = defaultArtClient;
1069 else
1070 scl = wxART_MAKE_CLIENT_ID_FROM_STR(scl);
e7a3a5a5 1071
92e898b0 1072 wxBitmap stockArt =
db59a97c 1073 wxArtProvider::GetBitmap(wxART_MAKE_ART_ID_FROM_STR(sid),
b3e85292 1074 scl, size);
db59a97c
VS
1075 if ( stockArt.Ok() )
1076 return stockArt;
1077 }
af1337b0
JS
1078 }
1079
92e898b0 1080 /* ...or load the bitmap from file: */
78d14f80 1081 wxString name = GetParamValue(param);
e7a3a5a5 1082 if (name.empty()) return wxNullBitmap;
78d14f80
VS
1083#if wxUSE_FILESYSTEM
1084 wxFSFile *fsfile = GetCurFileSystem().OpenFile(name);
1085 if (fsfile == NULL)
1086 {
d0b50ad9
VS
1087 wxLogError(_("XRC resource: Cannot create bitmap from '%s'."),
1088 name.c_str());
78d14f80
VS
1089 return wxNullBitmap;
1090 }
1091 wxImage img(*(fsfile->GetStream()));
1092 delete fsfile;
1093#else
1094 wxImage img(GetParamValue(wxT("bitmap")));
1095#endif
af1337b0 1096
78d14f80
VS
1097 if (!img.Ok())
1098 {
1df61962
VS
1099 wxLogError(_("XRC resource: Cannot create bitmap from '%s'."),
1100 param.c_str());
78d14f80
VS
1101 return wxNullBitmap;
1102 }
1103 if (!(size == wxDefaultSize)) img.Rescale(size.x, size.y);
64c288fa 1104#if !defined(__WXMSW__) || wxUSE_WXDIB
b272b6dc 1105 return wxBitmap(img);
64c288fa
JS
1106#else
1107 return wxBitmap();
1108#endif
78d14f80
VS
1109}
1110
1111
1112
92e898b0 1113wxIcon wxXmlResourceHandler::GetIcon(const wxString& param,
db59a97c
VS
1114 const wxArtClient& defaultArtClient,
1115 wxSize size)
78d14f80 1116{
78d14f80 1117 wxIcon icon;
db59a97c 1118 icon.CopyFromBitmap(GetBitmap(param, defaultArtClient, size));
78d14f80
VS
1119 return icon;
1120}
1121
1122
1123
1124wxXmlNode *wxXmlResourceHandler::GetParamNode(const wxString& param)
1125{
2b5f62a0
VZ
1126 wxCHECK_MSG(m_node, NULL, wxT("You can't access handler data before it was initialized!"));
1127
78d14f80
VS
1128 wxXmlNode *n = m_node->GetChildren();
1129
1130 while (n)
1131 {
1132 if (n->GetType() == wxXML_ELEMENT_NODE && n->GetName() == param)
1133 return n;
1134 n = n->GetNext();
1135 }
1136 return NULL;
1137}
1138
1139
1140wxString wxXmlResourceHandler::GetNodeContent(wxXmlNode *node)
1141{
1142 wxXmlNode *n = node;
1143 if (n == NULL) return wxEmptyString;
1144 n = n->GetChildren();
1145
1146 while (n)
1147 {
1148 if (n->GetType() == wxXML_TEXT_NODE ||
1149 n->GetType() == wxXML_CDATA_SECTION_NODE)
1150 return n->GetContent();
1151 n = n->GetNext();
1152 }
1153 return wxEmptyString;
1154}
1155
1156
1157
1158wxString wxXmlResourceHandler::GetParamValue(const wxString& param)
1159{
e7a3a5a5 1160 if (param.empty())
78d14f80
VS
1161 return GetNodeContent(m_node);
1162 else
1163 return GetNodeContent(GetParamNode(param));
1164}
1165
1166
1167
0c00c86f
VS
1168wxSize wxXmlResourceHandler::GetSize(const wxString& param,
1169 wxWindow *windowToUse)
78d14f80
VS
1170{
1171 wxString s = GetParamValue(param);
e7a3a5a5 1172 if (s.empty()) s = wxT("-1,-1");
78d14f80 1173 bool is_dlg;
d1f47235 1174 long sx, sy = 0;
78d14f80
VS
1175
1176 is_dlg = s[s.Length()-1] == wxT('d');
1177 if (is_dlg) s.RemoveLast();
1178
1179 if (!s.BeforeFirst(wxT(',')).ToLong(&sx) ||
1180 !s.AfterLast(wxT(',')).ToLong(&sy))
1181 {
00393283 1182 wxLogError(_("Cannot parse coordinates from '%s'."), s.c_str());
78d14f80
VS
1183 return wxDefaultSize;
1184 }
1185
1186 if (is_dlg)
1187 {
0c00c86f
VS
1188 if (windowToUse)
1189 {
1190 return wxDLG_UNIT(windowToUse, wxSize(sx, sy));
1191 }
1192 else if (m_parentAsWindow)
1193 {
78d14f80 1194 return wxDLG_UNIT(m_parentAsWindow, wxSize(sx, sy));
0c00c86f 1195 }
78d14f80
VS
1196 else
1197 {
1198 wxLogError(_("Cannot convert dialog units: dialog unknown."));
1199 return wxDefaultSize;
1200 }
1201 }
8516a98b
DS
1202
1203 return wxSize(sx, sy);
78d14f80
VS
1204}
1205
1206
1207
1208wxPoint wxXmlResourceHandler::GetPosition(const wxString& param)
1209{
1210 wxSize sz = GetSize(param);
1211 return wxPoint(sz.x, sz.y);
1212}
1213
1214
1215
0c00c86f
VS
1216wxCoord wxXmlResourceHandler::GetDimension(const wxString& param,
1217 wxCoord defaultv,
1218 wxWindow *windowToUse)
78d14f80
VS
1219{
1220 wxString s = GetParamValue(param);
e7a3a5a5 1221 if (s.empty()) return defaultv;
78d14f80
VS
1222 bool is_dlg;
1223 long sx;
1224
1225 is_dlg = s[s.Length()-1] == wxT('d');
1226 if (is_dlg) s.RemoveLast();
1227
1228 if (!s.ToLong(&sx))
1229 {
00393283 1230 wxLogError(_("Cannot parse dimension from '%s'."), s.c_str());
78d14f80
VS
1231 return defaultv;
1232 }
1233
1234 if (is_dlg)
1235 {
0c00c86f
VS
1236 if (windowToUse)
1237 {
1238 return wxDLG_UNIT(windowToUse, wxSize(sx, 0)).x;
1239 }
1240 else if (m_parentAsWindow)
1241 {
78d14f80 1242 return wxDLG_UNIT(m_parentAsWindow, wxSize(sx, 0)).x;
0c00c86f 1243 }
78d14f80
VS
1244 else
1245 {
1246 wxLogError(_("Cannot convert dialog units: dialog unknown."));
1247 return defaultv;
1248 }
1249 }
8516a98b
DS
1250
1251 return sx;
78d14f80
VS
1252}
1253
1254
1df61962
VS
1255// Get system font index using indexname
1256static wxFont GetSystemFont(const wxString& name)
1257{
1258 if (!name.empty())
1259 {
1260 #define SYSFNT(fnt) \
1261 if (name == _T(#fnt)) return wxSystemSettings::GetFont(fnt);
1262 SYSFNT(wxSYS_OEM_FIXED_FONT)
1263 SYSFNT(wxSYS_ANSI_FIXED_FONT)
1264 SYSFNT(wxSYS_ANSI_VAR_FONT)
1265 SYSFNT(wxSYS_SYSTEM_FONT)
1266 SYSFNT(wxSYS_DEVICE_DEFAULT_FONT)
1267 SYSFNT(wxSYS_DEFAULT_PALETTE)
1268 SYSFNT(wxSYS_SYSTEM_FIXED_FONT)
1269 SYSFNT(wxSYS_DEFAULT_GUI_FONT)
1270 #undef SYSFNT
1271 }
1272
1273 return wxNullFont;
1274}
78d14f80
VS
1275
1276wxFont wxXmlResourceHandler::GetFont(const wxString& param)
1277{
1278 wxXmlNode *font_node = GetParamNode(param);
1279 if (font_node == NULL)
1280 {
00393283 1281 wxLogError(_("Cannot find font node '%s'."), param.c_str());
78d14f80
VS
1282 return wxNullFont;
1283 }
1284
1285 wxXmlNode *oldnode = m_node;
1286 m_node = font_node;
1287
1df61962 1288 // font attributes:
78d14f80 1289
1df61962
VS
1290 // size
1291 int isize = wxDEFAULT;
1292 bool hasSize = HasParam(wxT("size"));
e7a3a5a5 1293 if (hasSize)
1df61962 1294 isize = GetLong(wxT("size"), wxDEFAULT);
78d14f80 1295
1df61962
VS
1296 // style
1297 int istyle = wxNORMAL;
1298 bool hasStyle = HasParam(wxT("style"));
1299 if (hasStyle)
1300 {
1301 wxString style = GetParamValue(wxT("style"));
e7a3a5a5 1302 if (style == wxT("italic"))
1df61962 1303 istyle = wxITALIC;
e7a3a5a5 1304 else if (style == wxT("slant"))
1df61962
VS
1305 istyle = wxSLANT;
1306 }
78d14f80 1307
1df61962
VS
1308 // weight
1309 int iweight = wxNORMAL;
1310 bool hasWeight = HasParam(wxT("weight"));
1311 if (hasWeight)
1312 {
1313 wxString weight = GetParamValue(wxT("weight"));
e7a3a5a5 1314 if (weight == wxT("bold"))
1df61962 1315 iweight = wxBOLD;
e7a3a5a5 1316 else if (weight == wxT("light"))
1df61962
VS
1317 iweight = wxLIGHT;
1318 }
e7a3a5a5 1319
1df61962
VS
1320 // underline
1321 bool hasUnderlined = HasParam(wxT("underlined"));
1322 bool underlined = hasUnderlined ? GetBool(wxT("underlined"), false) : false;
78d14f80 1323
1df61962
VS
1324 // family and facename
1325 int ifamily = wxDEFAULT;
1326 bool hasFamily = HasParam(wxT("family"));
1327 if (hasFamily)
78d14f80 1328 {
1df61962
VS
1329 wxString family = GetParamValue(wxT("family"));
1330 if (family == wxT("decorative")) ifamily = wxDECORATIVE;
1331 else if (family == wxT("roman")) ifamily = wxROMAN;
1332 else if (family == wxT("script")) ifamily = wxSCRIPT;
1333 else if (family == wxT("swiss")) ifamily = wxSWISS;
1334 else if (family == wxT("modern")) ifamily = wxMODERN;
1335 else if (family == wxT("teletype")) ifamily = wxTELETYPE;
1336 }
e7a3a5a5
WS
1337
1338
1df61962
VS
1339 wxString facename;
1340 bool hasFacename = HasParam(wxT("face"));
1341 if (hasFacename)
1342 {
1343 wxString faces = GetParamValue(wxT("face"));
1344 wxFontEnumerator enu;
1345 enu.EnumerateFacenames();
1346 wxStringTokenizer tk(faces, wxT(","));
1347 while (tk.HasMoreTokens())
78d14f80 1348 {
1df61962
VS
1349 int index = enu.GetFacenames()->Index(tk.GetNextToken(), false);
1350 if (index != wxNOT_FOUND)
1351 {
1352 facename = (*enu.GetFacenames())[index];
1353 break;
1354 }
78d14f80
VS
1355 }
1356 }
1357
1df61962
VS
1358 // encoding
1359 wxFontEncoding enc = wxFONTENCODING_DEFAULT;
1360 bool hasEncoding = HasParam(wxT("encoding"));
1361 if (hasEncoding)
1362 {
1363 wxString encoding = GetParamValue(wxT("encoding"));
1364 wxFontMapper mapper;
e7a3a5a5 1365 if (!encoding.empty())
1df61962
VS
1366 enc = mapper.CharsetToEncoding(encoding);
1367 if (enc == wxFONTENCODING_SYSTEM)
1368 enc = wxFONTENCODING_DEFAULT;
1369 }
78d14f80 1370
1df61962
VS
1371 // is this font based on a system font?
1372 wxFont sysfont = GetSystemFont(GetParamValue(wxT("sysfont")));
e7a3a5a5 1373
1df61962
VS
1374 if (sysfont.Ok())
1375 {
1376 if (hasSize)
1377 sysfont.SetPointSize(isize);
1378 else if (HasParam(wxT("relativesize")))
1379 sysfont.SetPointSize(int(sysfont.GetPointSize() *
1380 GetFloat(wxT("relativesize"))));
e7a3a5a5 1381
1df61962
VS
1382 if (hasStyle)
1383 sysfont.SetStyle(istyle);
1384 if (hasWeight)
1385 sysfont.SetWeight(iweight);
1386 if (hasUnderlined)
1387 sysfont.SetUnderlined(underlined);
1388 if (hasFamily)
1389 sysfont.SetFamily(ifamily);
1390 if (hasFacename)
1391 sysfont.SetFaceName(facename);
1392 if (hasEncoding)
1393 sysfont.SetDefaultEncoding(enc);
1394
1395 m_node = oldnode;
1396 return sysfont;
1397 }
8516a98b
DS
1398
1399 m_node = oldnode;
1400 return wxFont(isize, ifamily, istyle, iweight,
1401 underlined, facename, enc);
78d14f80
VS
1402}
1403
1404
1405void wxXmlResourceHandler::SetupWindow(wxWindow *wnd)
1406{
1407 //FIXME : add cursor
1408
1409 if (HasParam(wxT("exstyle")))
0099f343
JS
1410 // Have to OR it with existing style, since
1411 // some implementations (e.g. wxGTK) use the extra style
1412 // during creation
1413 wnd->SetExtraStyle(wnd->GetExtraStyle() | GetStyle(wxT("exstyle")));
78d14f80
VS
1414 if (HasParam(wxT("bg")))
1415 wnd->SetBackgroundColour(GetColour(wxT("bg")));
1416 if (HasParam(wxT("fg")))
1417 wnd->SetForegroundColour(GetColour(wxT("fg")));
1418 if (GetBool(wxT("enabled"), 1) == 0)
f80ea77b 1419 wnd->Enable(false);
78d14f80
VS
1420 if (GetBool(wxT("focused"), 0) == 1)
1421 wnd->SetFocus();
1422 if (GetBool(wxT("hidden"), 0) == 1)
f80ea77b 1423 wnd->Show(false);
78d14f80
VS
1424#if wxUSE_TOOLTIPS
1425 if (HasParam(wxT("tooltip")))
1426 wnd->SetToolTip(GetText(wxT("tooltip")));
1427#endif
1428 if (HasParam(wxT("font")))
1429 wnd->SetFont(GetFont());
b23030d6
JS
1430 if (HasParam(wxT("help")))
1431 wnd->SetHelpText(GetText(wxT("help")));
78d14f80
VS
1432}
1433
1434
1435void wxXmlResourceHandler::CreateChildren(wxObject *parent, bool this_hnd_only)
1436{
1437 wxXmlNode *n = m_node->GetChildren();
1438
1439 while (n)
1440 {
1441 if (n->GetType() == wxXML_ELEMENT_NODE &&
0fa2e104 1442 (n->GetName() == wxT("object") || n->GetName() == wxT("object_ref")))
78d14f80 1443 {
317a0d73
VS
1444 m_resource->CreateResFromNode(n, parent, NULL,
1445 this_hnd_only ? this : NULL);
78d14f80
VS
1446 }
1447 n = n->GetNext();
1448 }
1449}
1450
1451
1452void wxXmlResourceHandler::CreateChildrenPrivately(wxObject *parent, wxXmlNode *rootnode)
1453{
1454 wxXmlNode *root;
1455 if (rootnode == NULL) root = m_node; else root = rootnode;
1456 wxXmlNode *n = root->GetChildren();
1457
1458 while (n)
1459 {
1460 if (n->GetType() == wxXML_ELEMENT_NODE && CanHandle(n))
1461 {
1462 CreateResource(n, parent, NULL);
1463 }
1464 n = n->GetNext();
1465 }
1466}
1467
1468
1469
1470
1471
1472
1473
5ed345b7 1474// --------------- XRCID implementation -----------------------------
78d14f80 1475
5ed345b7 1476#define XRCID_TABLE_SIZE 1024
78d14f80
VS
1477
1478
5ed345b7 1479struct XRCID_record
78d14f80
VS
1480{
1481 int id;
00393283 1482 wxChar *key;
5ed345b7 1483 XRCID_record *next;
78d14f80
VS
1484};
1485
5ed345b7 1486static XRCID_record *XRCID_Records[XRCID_TABLE_SIZE] = {NULL};
78d14f80 1487
13de23f6 1488static int XRCID_Lookup(const wxChar *str_id, int value_if_not_found = -2)
78d14f80 1489{
78d14f80
VS
1490 int index = 0;
1491
00393283 1492 for (const wxChar *c = str_id; *c != wxT('\0'); c++) index += (int)*c;
5ed345b7 1493 index %= XRCID_TABLE_SIZE;
78d14f80 1494
5ed345b7 1495 XRCID_record *oldrec = NULL;
5ed345b7 1496 for (XRCID_record *rec = XRCID_Records[index]; rec; rec = rec->next)
78d14f80 1497 {
00393283 1498 if (wxStrcmp(rec->key, str_id) == 0)
78d14f80
VS
1499 {
1500 return rec->id;
1501 }
78d14f80
VS
1502 oldrec = rec;
1503 }
1504
5ed345b7
VS
1505 XRCID_record **rec_var = (oldrec == NULL) ?
1506 &XRCID_Records[index] : &oldrec->next;
1507 *rec_var = new XRCID_record;
00393283 1508 (*rec_var)->key = wxStrdup(str_id);
78d14f80
VS
1509 (*rec_var)->next = NULL;
1510
85452d74 1511 wxChar *end;
13de23f6
VS
1512 if (value_if_not_found != -2)
1513 (*rec_var)->id = value_if_not_found;
85452d74
VS
1514 else
1515 {
13de23f6
VS
1516 int asint = wxStrtol(str_id, &end, 10);
1517 if (*str_id && *end == 0)
1518 {
1519 // if str_id was integer, keep it verbosely:
1520 (*rec_var)->id = asint;
1521 }
1522 else
1523 {
3a301301 1524 (*rec_var)->id = wxNewId();
13de23f6 1525 }
85452d74
VS
1526 }
1527
78d14f80
VS
1528 return (*rec_var)->id;
1529}
1530
3b2a000e
VS
1531static void AddStdXRCID_Records();
1532
13de23f6
VS
1533/*static*/ int wxXmlResource::GetXRCID(const wxChar *str_id)
1534{
3b2a000e
VS
1535 static bool s_stdIDsAdded = false;
1536
1537 if ( !s_stdIDsAdded )
1538 {
1539 s_stdIDsAdded = true;
1540 AddStdXRCID_Records();
1541 }
1542
13de23f6
VS
1543 return XRCID_Lookup(str_id);
1544}
1545
78d14f80 1546
5ed345b7 1547static void CleanXRCID_Record(XRCID_record *rec)
78d14f80
VS
1548{
1549 if (rec)
1550 {
5ed345b7 1551 CleanXRCID_Record(rec->next);
00393283 1552 free(rec->key);
78d14f80
VS
1553 delete rec;
1554 }
1555}
1556
5ed345b7 1557static void CleanXRCID_Records()
78d14f80 1558{
5ed345b7 1559 for (int i = 0; i < XRCID_TABLE_SIZE; i++)
139c5871 1560 {
5ed345b7 1561 CleanXRCID_Record(XRCID_Records[i]);
139c5871
VS
1562 XRCID_Records[i] = NULL;
1563 }
78d14f80
VS
1564}
1565
13de23f6
VS
1566static void AddStdXRCID_Records()
1567{
1568#define stdID(id) XRCID_Lookup(wxT(#id), id)
1569 stdID(-1);
c369d4f1
VS
1570
1571 stdID(wxID_ANY);
1572 stdID(wxID_SEPARATOR);
e7a3a5a5 1573
c369d4f1
VS
1574 stdID(wxID_OPEN);
1575 stdID(wxID_CLOSE);
1576 stdID(wxID_NEW);
1577 stdID(wxID_SAVE);
1578 stdID(wxID_SAVEAS);
1579 stdID(wxID_REVERT);
1580 stdID(wxID_EXIT);
1581 stdID(wxID_UNDO);
1582 stdID(wxID_REDO);
1583 stdID(wxID_HELP);
1584 stdID(wxID_PRINT);
1585 stdID(wxID_PRINT_SETUP);
1586 stdID(wxID_PREVIEW);
1587 stdID(wxID_ABOUT);
1588 stdID(wxID_HELP_CONTENTS);
1589 stdID(wxID_HELP_COMMANDS);
1590 stdID(wxID_HELP_PROCEDURES);
1591 stdID(wxID_HELP_CONTEXT);
13de23f6 1592 stdID(wxID_CLOSE_ALL);
c369d4f1
VS
1593 stdID(wxID_PREFERENCES);
1594 stdID(wxID_CUT);
1595 stdID(wxID_COPY);
1596 stdID(wxID_PASTE);
1597 stdID(wxID_CLEAR);
1598 stdID(wxID_FIND);
1599 stdID(wxID_DUPLICATE);
1600 stdID(wxID_SELECTALL);
1601 stdID(wxID_DELETE);
1602 stdID(wxID_REPLACE);
1603 stdID(wxID_REPLACE_ALL);
1604 stdID(wxID_PROPERTIES);
1605 stdID(wxID_VIEW_DETAILS);
1606 stdID(wxID_VIEW_LARGEICONS);
1607 stdID(wxID_VIEW_SMALLICONS);
1608 stdID(wxID_VIEW_LIST);
1609 stdID(wxID_VIEW_SORTDATE);
1610 stdID(wxID_VIEW_SORTNAME);
1611 stdID(wxID_VIEW_SORTSIZE);
1612 stdID(wxID_VIEW_SORTTYPE);
1613 stdID(wxID_FILE1);
1614 stdID(wxID_FILE2);
1615 stdID(wxID_FILE3);
1616 stdID(wxID_FILE4);
1617 stdID(wxID_FILE5);
1618 stdID(wxID_FILE6);
1619 stdID(wxID_FILE7);
1620 stdID(wxID_FILE8);
1621 stdID(wxID_FILE9);
1622 stdID(wxID_OK);
1623 stdID(wxID_CANCEL);
1624 stdID(wxID_APPLY);
1625 stdID(wxID_YES);
1626 stdID(wxID_NO);
1627 stdID(wxID_STATIC);
1628 stdID(wxID_FORWARD);
1629 stdID(wxID_BACKWARD);
1630 stdID(wxID_DEFAULT);
1631 stdID(wxID_MORE);
1632 stdID(wxID_SETUP);
1633 stdID(wxID_RESET);
1634 stdID(wxID_CONTEXT_HELP);
1635 stdID(wxID_YESTOALL);
1636 stdID(wxID_NOTOALL);
1637 stdID(wxID_ABORT);
1638 stdID(wxID_RETRY);
1639 stdID(wxID_IGNORE);
1640 stdID(wxID_ADD);
1641 stdID(wxID_REMOVE);
1642 stdID(wxID_UP);
1643 stdID(wxID_DOWN);
1644 stdID(wxID_HOME);
1645 stdID(wxID_REFRESH);
1646 stdID(wxID_STOP);
1647 stdID(wxID_INDEX);
1648 stdID(wxID_BOLD);
1649 stdID(wxID_ITALIC);
1650 stdID(wxID_JUSTIFY_CENTER);
1651 stdID(wxID_JUSTIFY_FILL);
1652 stdID(wxID_JUSTIFY_RIGHT);
1653 stdID(wxID_JUSTIFY_LEFT);
1654 stdID(wxID_UNDERLINE);
1655 stdID(wxID_INDENT);
1656 stdID(wxID_UNINDENT);
1657 stdID(wxID_ZOOM_100);
1658 stdID(wxID_ZOOM_FIT);
1659 stdID(wxID_ZOOM_IN);
1660 stdID(wxID_ZOOM_OUT);
1661 stdID(wxID_UNDELETE);
1662 stdID(wxID_REVERT_TO_SAVED);
1663 stdID(wxID_SYSTEM_MENU);
1664 stdID(wxID_CLOSE_FRAME);
1665 stdID(wxID_MOVE_FRAME);
1666 stdID(wxID_RESIZE_FRAME);
1667 stdID(wxID_MAXIMIZE_FRAME);
1668 stdID(wxID_ICONIZE_FRAME);
1669 stdID(wxID_RESTORE_FRAME);
1670
13de23f6
VS
1671#undef stdID
1672}
78d14f80
VS
1673
1674
1675
1676
1677
1678// --------------- module and globals -----------------------------
1679
78d14f80
VS
1680class wxXmlResourceModule: public wxModule
1681{
1682DECLARE_DYNAMIC_CLASS(wxXmlResourceModule)
1683public:
1684 wxXmlResourceModule() {}
824e8eaa
VS
1685 bool OnInit()
1686 {
2b5f62a0 1687 wxXmlResource::AddSubclassFactory(new wxXmlSubclassFactoryCXX);
f80ea77b 1688 return true;
824e8eaa 1689 }
78d14f80
VS
1690 void OnExit()
1691 {
1542c42e 1692 delete wxXmlResource::Set(NULL);
461932ae
MB
1693 if(wxXmlResource::ms_subclassFactories)
1694 WX_CLEAR_LIST(wxXmlSubclassFactoriesList, *wxXmlResource::ms_subclassFactories);
2b5f62a0 1695 wxDELETE(wxXmlResource::ms_subclassFactories);
5ed345b7 1696 CleanXRCID_Records();
78d14f80
VS
1697 }
1698};
1699
1700IMPLEMENT_DYNAMIC_CLASS(wxXmlResourceModule, wxModule)
1701
1702
1703// When wxXml is loaded dynamically after the application is already running
1704// then the built-in module system won't pick this one up. Add it manually.
1705void wxXmlInitResourceModule()
1706{
1707 wxModule* module = new wxXmlResourceModule;
1708 module->Init();
1709 wxModule::RegisterModule(module);
1710}
a1e4ec87
VS
1711
1712#endif // wxUSE_XRC