1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xmlres.cpp
3 // Purpose: XRC resources
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
20 #include "wx/xrc/xmlres.h"
27 #include "wx/dialog.h"
28 #include "wx/settings.h"
29 #include "wx/bitmap.h"
31 #include "wx/module.h"
32 #include "wx/wxcrtvararg.h"
39 #include "wx/vector.h"
40 #include "wx/wfstream.h"
41 #include "wx/filesys.h"
42 #include "wx/filename.h"
43 #include "wx/tokenzr.h"
44 #include "wx/fontenum.h"
45 #include "wx/fontmap.h"
46 #include "wx/artprov.h"
47 #include "wx/imaglist.h"
49 #include "wx/xml/xml.h"
50 #include "wx/hashset.h"
51 #include "wx/scopedptr.h"
56 // Helper function to get modification time of either a wxFileSystem URI or
57 // just a normal file name, depending on the build.
60 wxDateTime
GetXRCFileModTime(const wxString
& filename
)
64 wxScopedPtr
<wxFSFile
> file(fsys
.OpenFile(filename
));
66 return file
? file
->GetModificationTime() : wxDateTime();
67 #else // wxUSE_FILESYSTEM
68 return wxDateTime(wxFileModificationTime(filename
));
69 #endif // wxUSE_FILESYSTEM
72 #endif // wxUSE_DATETIME
74 } // anonymous namespace
76 // Assign the given value to the specified entry or add a new value with this
78 static void XRCID_Assign(const wxString
& str_id
, int value
);
80 class wxXmlResourceDataRecord
83 // Ctor takes ownership of the document pointer.
84 wxXmlResourceDataRecord(const wxString
& File_
,
87 : File(File_
), Doc(Doc_
)
90 Time
= GetXRCFileModTime(File
);
94 ~wxXmlResourceDataRecord() {delete Doc
;}
102 wxDECLARE_NO_COPY_CLASS(wxXmlResourceDataRecord
);
105 class wxXmlResourceDataRecords
: public wxVector
<wxXmlResourceDataRecord
*>
107 // this is a class so that it can be forward-declared
110 WX_DECLARE_HASH_SET_PTR(int, ::wxIntegerHash
, ::wxIntegerEqual
, wxHashSetInt
);
112 class wxIdRange
// Holds data for a particular rangename
115 wxIdRange(const wxXmlNode
* node
,
116 const wxString
& rname
,
117 const wxString
& startno
,
118 const wxString
& rsize
);
120 // Note the existence of an item within the range
121 void NoteItem(const wxXmlNode
* node
, const wxString
& item
);
123 // The manager is telling us that it's finished adding items
124 void Finalise(const wxXmlNode
* node
);
126 wxString
GetName() const { return m_name
; }
127 bool IsFinalised() const { return m_finalised
; }
129 const wxString m_name
;
133 bool m_item_end_found
;
135 wxHashSetInt m_indices
;
137 friend class wxIdRangeManager
;
140 class wxIdRangeManager
144 // Gets the global resources object or creates one if none exists.
145 static wxIdRangeManager
*Get();
147 // Sets the global resources object and returns a pointer to the previous
148 // one (may be NULL).
149 static wxIdRangeManager
*Set(wxIdRangeManager
*res
);
151 // Create a new IDrange from this node
152 void AddRange(const wxXmlNode
* node
);
153 // Tell the IdRange that this item exists, and should be pre-allocated an ID
154 void NotifyRangeOfItem(const wxXmlNode
* node
, const wxString
& item
) const;
155 // Tells all IDranges that they're now complete, and can create their IDs
156 void FinaliseRanges(const wxXmlNode
* node
) const;
157 // Searches for a known IdRange matching 'name', returning its index or -1
158 int Find(const wxString
& rangename
) const;
161 wxIdRange
* FindRangeForItem(const wxXmlNode
* node
,
162 const wxString
& item
,
163 wxString
& value
) const;
164 wxVector
<wxIdRange
*> m_IdRanges
;
167 static wxIdRangeManager
*ms_instance
;
173 // helper used by DoFindResource() and elsewhere: returns true if this is an
174 // object or object_ref node
176 // node must be non-NULL
177 inline bool IsObjectNode(wxXmlNode
*node
)
179 return node
->GetType() == wxXML_ELEMENT_NODE
&&
180 (node
->GetName() == wxS("object") ||
181 node
->GetName() == wxS("object_ref"));
184 // special XML attribute with name of input file, see GetFileNameFromNode()
185 const char *ATTR_INPUT_FILENAME
= "__wx:filename";
187 // helper to get filename corresponding to an XML node
189 GetFileNameFromNode(const wxXmlNode
*node
, const wxXmlResourceDataRecords
& files
)
191 // this loop does two things: it looks for ATTR_INPUT_FILENAME among
192 // parents and if it isn't used, it finds the root of the XML tree 'node'
196 // in some rare cases (specifically, when an <object_ref> is used, see
197 // wxXmlResource::CreateResFromNode() and MergeNodesOver()), we work
198 // with XML nodes that are not rooted in any document from 'files'
199 // (because a new node was created by CreateResFromNode() to merge the
200 // content of <object_ref> and the referenced <object>); in that case,
201 // we hack around the problem by putting the information about input
202 // file into a custom attribute
203 if ( node
->HasAttribute(ATTR_INPUT_FILENAME
) )
204 return node
->GetAttribute(ATTR_INPUT_FILENAME
);
206 if ( !node
->GetParent() )
207 break; // we found the root of this XML tree
209 node
= node
->GetParent();
212 // NB: 'node' now points to the root of XML document
214 for ( wxXmlResourceDataRecords::const_iterator i
= files
.begin();
215 i
!= files
.end(); ++i
)
217 if ( (*i
)->Doc
->GetRoot() == node
)
223 return wxEmptyString
; // not found
226 } // anonymous namespace
229 wxXmlResource
*wxXmlResource::ms_instance
= NULL
;
231 /*static*/ wxXmlResource
*wxXmlResource::Get()
234 ms_instance
= new wxXmlResource
;
238 /*static*/ wxXmlResource
*wxXmlResource::Set(wxXmlResource
*res
)
240 wxXmlResource
*old
= ms_instance
;
245 wxXmlResource::wxXmlResource(int flags
, const wxString
& domain
)
249 m_data
= new wxXmlResourceDataRecords
;
253 wxXmlResource::wxXmlResource(const wxString
& filemask
, int flags
, const wxString
& domain
)
257 m_data
= new wxXmlResourceDataRecords
;
262 wxXmlResource::~wxXmlResource()
266 for ( wxXmlResourceDataRecords::iterator i
= m_data
->begin();
267 i
!= m_data
->end(); ++i
)
274 void wxXmlResource::SetDomain(const wxString
& domain
)
281 wxString
wxXmlResource::ConvertFileNameToURL(const wxString
& filename
)
283 wxString
fnd(filename
);
285 // NB: as Load() and Unload() accept both filenames and URLs (should
286 // probably be changed to filenames only, but embedded resources
287 // currently rely on its ability to handle URLs - FIXME) we need to
288 // determine whether found name is filename and not URL and this is the
289 // fastest/simplest way to do it
290 if (wxFileName::FileExists(fnd
))
292 // Make the name absolute filename, because the app may
293 // change working directory later:
298 fnd
= fn
.GetFullPath();
301 fnd
= wxFileSystem::FileNameToURL(fnd
);
311 bool wxXmlResource::IsArchive(const wxString
& filename
)
313 const wxString fnd
= filename
.Lower();
315 return fnd
.Matches(wxT("*.zip")) || fnd
.Matches(wxT("*.xrs"));
318 #endif // wxUSE_FILESYSTEM
320 bool wxXmlResource::LoadFile(const wxFileName
& file
)
323 return Load(wxFileSystem::FileNameToURL(file
));
325 return Load(file
.GetFullPath());
329 bool wxXmlResource::LoadAllFiles(const wxString
& dirname
)
334 wxDir::GetAllFiles(dirname
, &files
, "*.xrc");
336 for ( wxArrayString::const_iterator i
= files
.begin(); i
!= files
.end(); ++i
)
345 bool wxXmlResource::Load(const wxString
& filemask_
)
347 wxString filemask
= ConvertFileNameToURL(filemask_
);
353 # define wxXmlFindFirst fsys.FindFirst(filemask, wxFILE)
354 # define wxXmlFindNext fsys.FindNext()
356 # define wxXmlFindFirst wxFindFirstFile(filemask, wxFILE)
357 # define wxXmlFindNext wxFindNextFile()
359 wxString fnd
= wxXmlFindFirst
;
362 wxLogError(_("Cannot load resources from '%s'."), filemask
);
369 if ( IsArchive(fnd
) )
371 if ( !Load(fnd
+ wxT("#zip:*.xrc")) )
374 else // a single resource URL
375 #endif // wxUSE_FILESYSTEM
377 wxXmlDocument
* const doc
= DoLoadFile(fnd
);
381 Data().push_back(new wxXmlResourceDataRecord(fnd
, doc
));
386 # undef wxXmlFindFirst
387 # undef wxXmlFindNext
392 bool wxXmlResource::Unload(const wxString
& filename
)
394 wxASSERT_MSG( !wxIsWild(filename
),
395 wxT("wildcards not supported by wxXmlResource::Unload()") );
397 wxString fnd
= ConvertFileNameToURL(filename
);
399 const bool isArchive
= IsArchive(fnd
);
402 #endif // wxUSE_FILESYSTEM
404 bool unloaded
= false;
405 for ( wxXmlResourceDataRecords::iterator i
= Data().begin();
406 i
!= Data().end(); ++i
)
411 if ( (*i
)->File
.StartsWith(fnd
) )
413 // don't break from the loop, we can have other matching files
415 else // a single resource URL
416 #endif // wxUSE_FILESYSTEM
418 if ( (*i
)->File
== fnd
)
424 // no sense in continuing, there is only one file with this URL
434 IMPLEMENT_ABSTRACT_CLASS(wxXmlResourceHandler
, wxObject
)
436 void wxXmlResource::AddHandler(wxXmlResourceHandler
*handler
)
438 m_handlers
.push_back(handler
);
439 handler
->SetParentResource(this);
442 void wxXmlResource::InsertHandler(wxXmlResourceHandler
*handler
)
444 m_handlers
.insert(m_handlers
.begin(), handler
);
445 handler
->SetParentResource(this);
450 void wxXmlResource::ClearHandlers()
452 for ( wxVector
<wxXmlResourceHandler
*>::iterator i
= m_handlers
.begin();
453 i
!= m_handlers
.end(); ++i
)
459 wxMenu
*wxXmlResource::LoadMenu(const wxString
& name
)
461 return (wxMenu
*)CreateResFromNode(FindResource(name
, wxT("wxMenu")), NULL
, NULL
);
466 wxMenuBar
*wxXmlResource::LoadMenuBar(wxWindow
*parent
, const wxString
& name
)
468 return (wxMenuBar
*)CreateResFromNode(FindResource(name
, wxT("wxMenuBar")), parent
, NULL
);
474 wxToolBar
*wxXmlResource::LoadToolBar(wxWindow
*parent
, const wxString
& name
)
476 return (wxToolBar
*)CreateResFromNode(FindResource(name
, wxT("wxToolBar")), parent
, NULL
);
481 wxDialog
*wxXmlResource::LoadDialog(wxWindow
*parent
, const wxString
& name
)
483 return (wxDialog
*)CreateResFromNode(FindResource(name
, wxT("wxDialog")), parent
, NULL
);
486 bool wxXmlResource::LoadDialog(wxDialog
*dlg
, wxWindow
*parent
, const wxString
& name
)
488 return CreateResFromNode(FindResource(name
, wxT("wxDialog")), parent
, dlg
) != NULL
;
493 wxPanel
*wxXmlResource::LoadPanel(wxWindow
*parent
, const wxString
& name
)
495 return (wxPanel
*)CreateResFromNode(FindResource(name
, wxT("wxPanel")), parent
, NULL
);
498 bool wxXmlResource::LoadPanel(wxPanel
*panel
, wxWindow
*parent
, const wxString
& name
)
500 return CreateResFromNode(FindResource(name
, wxT("wxPanel")), parent
, panel
) != NULL
;
503 wxFrame
*wxXmlResource::LoadFrame(wxWindow
* parent
, const wxString
& name
)
505 return (wxFrame
*)CreateResFromNode(FindResource(name
, wxT("wxFrame")), parent
, NULL
);
508 bool wxXmlResource::LoadFrame(wxFrame
* frame
, wxWindow
*parent
, const wxString
& name
)
510 return CreateResFromNode(FindResource(name
, wxT("wxFrame")), parent
, frame
) != NULL
;
513 wxBitmap
wxXmlResource::LoadBitmap(const wxString
& name
)
515 wxBitmap
*bmp
= (wxBitmap
*)CreateResFromNode(
516 FindResource(name
, wxT("wxBitmap")), NULL
, NULL
);
519 if (bmp
) { rt
= *bmp
; delete bmp
; }
523 wxIcon
wxXmlResource::LoadIcon(const wxString
& name
)
525 wxIcon
*icon
= (wxIcon
*)CreateResFromNode(
526 FindResource(name
, wxT("wxIcon")), NULL
, NULL
);
529 if (icon
) { rt
= *icon
; delete icon
; }
535 wxXmlResource::DoLoadObject(wxWindow
*parent
,
536 const wxString
& name
,
537 const wxString
& classname
,
540 wxXmlNode
* const node
= FindResource(name
, classname
, recursive
);
542 return node
? DoCreateResFromNode(*node
, parent
, NULL
) : NULL
;
546 wxXmlResource::DoLoadObject(wxObject
*instance
,
548 const wxString
& name
,
549 const wxString
& classname
,
552 wxXmlNode
* const node
= FindResource(name
, classname
, recursive
);
554 return node
&& DoCreateResFromNode(*node
, parent
, instance
) != NULL
;
558 bool wxXmlResource::AttachUnknownControl(const wxString
& name
,
559 wxWindow
*control
, wxWindow
*parent
)
562 parent
= control
->GetParent();
563 wxWindow
*container
= parent
->FindWindow(name
+ wxT("_container"));
566 wxLogError("Cannot find container for unknown control '%s'.", name
);
569 return control
->Reparent(container
);
573 static void ProcessPlatformProperty(wxXmlNode
*node
)
578 wxXmlNode
*c
= node
->GetChildren();
582 if (!c
->GetAttribute(wxT("platform"), &s
))
586 wxStringTokenizer
tkn(s
, wxT(" |"));
588 while (tkn
.HasMoreTokens())
590 s
= tkn
.GetNextToken();
592 if (s
== wxT("win")) isok
= true;
594 #if defined(__MAC__) || defined(__APPLE__)
595 if (s
== wxT("mac")) isok
= true;
596 #elif defined(__UNIX__)
597 if (s
== wxT("unix")) isok
= true;
600 if (s
== wxT("os2")) isok
= true;
610 ProcessPlatformProperty(c
);
615 wxXmlNode
*c2
= c
->GetNext();
616 node
->RemoveChild(c
);
623 static void PreprocessForIdRanges(wxXmlNode
*rootnode
)
625 // First go through the top level, looking for the names of ID ranges
626 // as processing items is a lot easier if names are already known
627 wxXmlNode
*c
= rootnode
->GetChildren();
630 if (c
->GetName() == wxT("ids-range"))
631 wxIdRangeManager::Get()->AddRange(c
);
635 // Next, examine every 'name' for the '[' that denotes an ID in a range
636 c
= rootnode
->GetChildren();
639 wxString name
= c
->GetAttribute(wxT("name"));
640 if (name
.find('[') != wxString::npos
)
641 wxIdRangeManager::Get()->NotifyRangeOfItem(rootnode
, name
);
643 // Do any children by recursion, then proceed to the next sibling
644 PreprocessForIdRanges(c
);
649 bool wxXmlResource::UpdateResources()
653 for ( wxXmlResourceDataRecords::iterator i
= Data().begin();
654 i
!= Data().end(); ++i
)
656 wxXmlResourceDataRecord
* const rec
= *i
;
658 // Check if we need to reload this one.
660 // We never do it if this flag is specified.
661 if ( m_flags
& wxXRC_NO_RELOADING
)
664 // Otherwise check its modification time if we can.
666 const wxDateTime lastModTime
= GetXRCFileModTime(rec
->File
);
668 if ( lastModTime
.IsValid() && lastModTime
<= rec
->Time
)
669 #else // !wxUSE_DATETIME
670 // Never reload the file contents: we can't know whether it changed or
671 // not in this build configuration and it would be unexpected and
672 // counter-productive to get a performance hit (due to constant
673 // reloading of XRC files) in a minimal wx build which is presumably
674 // used because of resource constraints of the current platform.
675 #endif // wxUSE_DATETIME/!wxUSE_DATETIME
677 // No need to reload, the file wasn't modified since we did it
682 wxXmlDocument
* const doc
= DoLoadFile(rec
->File
);
685 // Notice that we keep the old XML document: it seems better to
686 // preserve it instead of throwing it away if we have nothing to
692 // Replace the old resource contents with the new one.
696 // And, now that we loaded it successfully, update the last load time.
698 rec
->Time
= lastModTime
.IsValid() ? lastModTime
: wxDateTime::Now();
699 #endif // wxUSE_DATETIME
705 wxXmlDocument
*wxXmlResource::DoLoadFile(const wxString
& filename
)
707 wxLogTrace(wxT("xrc"), wxT("opening file '%s'"), filename
);
709 wxInputStream
*stream
= NULL
;
713 wxScopedPtr
<wxFSFile
> file(fsys
.OpenFile(filename
));
716 // Notice that we don't have ownership of the stream in this case, it
717 // remains owned by wxFSFile.
718 stream
= file
->GetStream();
720 #else // !wxUSE_FILESYSTEM
721 wxFileInputStream
fstream(filename
);
723 #endif // wxUSE_FILESYSTEM/!wxUSE_FILESYSTEM
725 if ( !stream
|| !stream
->IsOk() )
727 wxLogError(_("Cannot open resources file '%s'."), filename
);
731 wxString
encoding(wxT("UTF-8"));
732 #if !wxUSE_UNICODE && wxUSE_INTL
733 if ( (GetFlags() & wxXRC_USE_LOCALE
) == 0 )
735 // In case we are not using wxLocale to translate strings, convert the
736 // strings GUI's charset. This must not be done when wxXRC_USE_LOCALE
737 // is on, because it could break wxGetTranslation lookup.
738 encoding
= wxLocale::GetSystemEncodingName();
742 wxScopedPtr
<wxXmlDocument
> doc(new wxXmlDocument
);
743 if (!doc
->Load(*stream
, encoding
))
745 wxLogError(_("Cannot load resources from file '%s'."), filename
);
749 wxXmlNode
* const root
= doc
->GetRoot();
750 if (root
->GetName() != wxT("resource"))
755 "invalid XRC resource, doesn't have root node <resource>"
762 wxString verstr
= root
->GetAttribute(wxT("version"), wxT("0.0.0.0"));
763 if (wxSscanf(verstr
, wxT("%i.%i.%i.%i"), &v1
, &v2
, &v3
, &v4
) == 4)
764 version
= v1
*256*256*256+v2
*256*256+v3
*256+v4
;
769 if (m_version
!= version
)
771 wxLogWarning("Resource files must have same version number.");
774 ProcessPlatformProperty(root
);
775 PreprocessForIdRanges(root
);
776 wxIdRangeManager::Get()->FinaliseRanges(root
);
778 return doc
.release();
781 wxXmlNode
*wxXmlResource::DoFindResource(wxXmlNode
*parent
,
782 const wxString
& name
,
783 const wxString
& classname
,
784 bool recursive
) const
788 // first search for match at the top-level nodes (as this is
789 // where the resource is most commonly looked for):
790 for (node
= parent
->GetChildren(); node
; node
= node
->GetNext())
792 if ( IsObjectNode(node
) && node
->GetAttribute(wxS("name")) == name
)
794 // empty class name matches everything
795 if ( classname
.empty() )
798 wxString
cls(node
->GetAttribute(wxS("class")));
800 // object_ref may not have 'class' attribute:
801 if (cls
.empty() && node
->GetName() == wxS("object_ref"))
803 wxString refName
= node
->GetAttribute(wxS("ref"));
807 const wxXmlNode
* const refNode
= GetResourceNode(refName
);
809 cls
= refNode
->GetAttribute(wxS("class"));
812 if ( cls
== classname
)
817 // then recurse in child nodes
820 for (node
= parent
->GetChildren(); node
; node
= node
->GetNext())
822 if ( IsObjectNode(node
) )
824 wxXmlNode
* found
= DoFindResource(node
, name
, classname
, true);
834 wxXmlNode
*wxXmlResource::FindResource(const wxString
& name
,
835 const wxString
& classname
,
840 node
= GetResourceNodeAndLocation(name
, classname
, recursive
, &path
);
849 "XRC resource \"%s\" (class \"%s\") not found",
855 else // node was found
857 // ensure that relative paths work correctly when loading this node
858 // (which should happen as soon as we return as FindResource() result
859 // is always passed to CreateResFromNode())
860 m_curFileSystem
.ChangePathTo(path
);
862 #endif // wxUSE_FILESYSTEM
868 wxXmlResource::GetResourceNodeAndLocation(const wxString
& name
,
869 const wxString
& classname
,
871 wxString
*path
) const
873 // ensure everything is up-to-date: this is needed to support on-demand
874 // reloading of XRC files
875 const_cast<wxXmlResource
*>(this)->UpdateResources();
877 for ( wxXmlResourceDataRecords::const_iterator f
= Data().begin();
878 f
!= Data().end(); ++f
)
880 wxXmlResourceDataRecord
*const rec
= *f
;
881 wxXmlDocument
* const doc
= rec
->Doc
;
882 if ( !doc
|| !doc
->GetRoot() )
886 found
= DoFindResource(doc
->GetRoot(), name
, classname
, recursive
);
899 static void MergeNodesOver(wxXmlNode
& dest
, wxXmlNode
& overwriteWith
,
900 const wxString
& overwriteFilename
)
903 for ( wxXmlAttribute
*attr
= overwriteWith
.GetAttributes();
904 attr
; attr
= attr
->GetNext() )
906 wxXmlAttribute
*dattr
;
907 for (dattr
= dest
.GetAttributes(); dattr
; dattr
= dattr
->GetNext())
910 if ( dattr
->GetName() == attr
->GetName() )
912 dattr
->SetValue(attr
->GetValue());
918 dest
.AddAttribute(attr
->GetName(), attr
->GetValue());
921 // Merge child nodes:
922 for (wxXmlNode
* node
= overwriteWith
.GetChildren(); node
; node
= node
->GetNext())
924 wxString name
= node
->GetAttribute(wxT("name"), wxEmptyString
);
927 for (dnode
= dest
.GetChildren(); dnode
; dnode
= dnode
->GetNext() )
929 if ( dnode
->GetName() == node
->GetName() &&
930 dnode
->GetAttribute(wxT("name"), wxEmptyString
) == name
&&
931 dnode
->GetType() == node
->GetType() )
933 MergeNodesOver(*dnode
, *node
, overwriteFilename
);
940 wxXmlNode
*copyOfNode
= new wxXmlNode(*node
);
941 // remember referenced object's file, see GetFileNameFromNode()
942 copyOfNode
->AddAttribute(ATTR_INPUT_FILENAME
, overwriteFilename
);
944 static const wxChar
*AT_END
= wxT("end");
945 wxString insert_pos
= node
->GetAttribute(wxT("insert_at"), AT_END
);
946 if ( insert_pos
== AT_END
)
948 dest
.AddChild(copyOfNode
);
950 else if ( insert_pos
== wxT("begin") )
952 dest
.InsertChild(copyOfNode
, dest
.GetChildren());
957 if ( dest
.GetType() == wxXML_TEXT_NODE
&& overwriteWith
.GetContent().length() )
958 dest
.SetContent(overwriteWith
.GetContent());
962 wxXmlResource::DoCreateResFromNode(wxXmlNode
& node
,
965 wxXmlResourceHandler
*handlerToUse
)
967 // handling of referenced resource
968 if ( node
.GetName() == wxT("object_ref") )
970 wxString refName
= node
.GetAttribute(wxT("ref"), wxEmptyString
);
971 wxXmlNode
* refNode
= FindResource(refName
, wxEmptyString
, true);
980 "referenced object node with ref=\"%s\" not found",
987 const bool hasOnlyRefAttr
= node
.GetAttributes() != NULL
&&
988 node
.GetAttributes()->GetNext() == NULL
;
990 if ( hasOnlyRefAttr
&& !node
.GetChildren() )
992 // In the typical, simple case, <object_ref> is used to link
993 // to another node and doesn't have any content of its own that
994 // would overwrite linked object's properties. In this case,
995 // we can simply create the resource from linked node.
997 return DoCreateResFromNode(*refNode
, parent
, instance
);
1001 // In the more complicated (but rare) case, <object_ref> has
1002 // subnodes that partially overwrite content of the referenced
1003 // object. In this case, we need to merge both XML trees and
1004 // load the resource from result of the merge.
1006 wxXmlNode
copy(*refNode
);
1007 MergeNodesOver(copy
, node
, GetFileNameFromNode(&node
, Data()));
1009 // remember referenced object's file, see GetFileNameFromNode()
1010 copy
.AddAttribute(ATTR_INPUT_FILENAME
,
1011 GetFileNameFromNode(refNode
, Data()));
1013 return DoCreateResFromNode(copy
, parent
, instance
);
1019 if (handlerToUse
->CanHandle(&node
))
1021 return handlerToUse
->CreateResource(&node
, parent
, instance
);
1024 else if (node
.GetName() == wxT("object"))
1026 for ( wxVector
<wxXmlResourceHandler
*>::iterator h
= m_handlers
.begin();
1027 h
!= m_handlers
.end(); ++h
)
1029 wxXmlResourceHandler
*handler
= *h
;
1030 if (handler
->CanHandle(&node
))
1031 return handler
->CreateResource(&node
, parent
, instance
);
1040 "no handler found for XML node \"%s\" (class \"%s\")",
1042 node
.GetAttribute("class", wxEmptyString
)
1048 wxIdRange::wxIdRange(const wxXmlNode
* node
,
1049 const wxString
& rname
,
1050 const wxString
& startno
,
1051 const wxString
& rsize
)
1055 m_item_end_found(0),
1059 if ( startno
.ToLong(&l
) )
1067 wxXmlResource::Get()->ReportError
1070 "a negative id-range start parameter was given"
1076 wxXmlResource::Get()->ReportError
1079 "the id-range start parameter was malformed"
1084 if ( rsize
.ToULong(&ul
) )
1090 wxXmlResource::Get()->ReportError
1093 "the id-range size parameter was malformed"
1098 void wxIdRange::NoteItem(const wxXmlNode
* node
, const wxString
& item
)
1100 // Nothing gets added here, but the existence of each item is noted
1101 // thus getting an accurate count. 'item' will be either an integer e.g.
1102 // [0] [123]: will eventually create an XRCID as start+integer or [start]
1103 // or [end] which are synonyms for [0] or [range_size-1] respectively.
1104 wxString
content(item
.Mid(1, item
.length()-2));
1106 // Check that basename+item wasn't foo[]
1107 if (content
.empty())
1109 wxXmlResource::Get()->ReportError(node
, "an empty id-range item found");
1113 if (content
=="start")
1115 // "start" means [0], so store that in the set
1116 if (m_indices
.count(0) == 0)
1118 m_indices
.insert(0);
1122 wxXmlResource::Get()->ReportError
1125 "duplicate id-range item found"
1129 else if (content
=="end")
1131 // We can't yet be certain which XRCID this will be equivalent to, so
1132 // just note that there's an item with this name, in case we need to
1133 // inc the range size
1134 m_item_end_found
= true;
1138 // Anything else will be an integer, or rubbish
1140 if ( content
.ToULong(&l
) )
1142 if (m_indices
.count(l
) == 0)
1144 m_indices
.insert(l
);
1145 // Check that this item wouldn't fall outside the current range
1154 wxXmlResource::Get()->ReportError
1157 "duplicate id-range item found"
1164 wxXmlResource::Get()->ReportError
1167 "an id-range item had a malformed index"
1173 void wxIdRange::Finalise(const wxXmlNode
* node
)
1175 wxCHECK_RET( !IsFinalised(),
1176 "Trying to finalise an already-finalised range" );
1178 // Now we know about all the items, we can get an accurate range size
1179 // Expand any requested range-size if there were more items than would fit
1180 m_size
= wxMax(m_size
, m_indices
.size());
1182 // If an item is explicitly called foo[end], ensure it won't clash with
1184 if ( m_item_end_found
&& m_indices
.count(m_size
-1) )
1188 // This will happen if someone creates a range but no items in this xrc
1189 // file Report the error and abort, but don't finalise, in case items
1191 wxXmlResource::Get()->ReportError
1194 "trying to create an empty id-range"
1201 // This is the usual case, where the user didn't specify a start ID
1202 // So get the range using NewControlId().
1204 // NB: negative numbers, but NewControlId already returns the most
1206 m_start
= wxWindow::NewControlId(m_size
);
1207 wxCHECK_RET( m_start
!= wxID_NONE
,
1208 "insufficient IDs available to create range" );
1209 m_end
= m_start
+ m_size
- 1;
1213 // The user already specified a start value, which must be positive
1214 m_end
= m_start
+ m_size
- 1;
1217 // Create the XRCIDs
1218 for (int i
=m_start
; i
<= m_end
; ++i
)
1220 // Ensure that we overwrite any existing value as otherwise
1221 // wxXmlResource::Unload() followed by Load() wouldn't work correctly.
1222 XRCID_Assign(m_name
+ wxString::Format("[%i]", i
-m_start
), i
);
1224 wxLogTrace("xrcrange",
1225 "integer = %i %s now returns %i",
1227 m_name
+ wxString::Format("[%i]", i
-m_start
),
1228 XRCID((m_name
+ wxString::Format("[%i]", i
-m_start
)).mb_str()));
1230 // and these special ones
1231 XRCID_Assign(m_name
+ "[start]", m_start
);
1232 XRCID_Assign(m_name
+ "[end]", m_end
);
1233 wxLogTrace("xrcrange","%s[start] = %i %s[end] = %i",
1234 m_name
.mb_str(),XRCID(wxString(m_name
+"[start]").mb_str()),
1235 m_name
.mb_str(),XRCID(wxString(m_name
+"[end]").mb_str()));
1240 wxIdRangeManager
*wxIdRangeManager::ms_instance
= NULL
;
1242 /*static*/ wxIdRangeManager
*wxIdRangeManager::Get()
1245 ms_instance
= new wxIdRangeManager
;
1249 /*static*/ wxIdRangeManager
*wxIdRangeManager::Set(wxIdRangeManager
*res
)
1251 wxIdRangeManager
*old
= ms_instance
;
1256 wxIdRangeManager::~wxIdRangeManager()
1258 for ( wxVector
<wxIdRange
*>::iterator i
= m_IdRanges
.begin();
1259 i
!= m_IdRanges
.end(); ++i
)
1268 void wxIdRangeManager::AddRange(const wxXmlNode
* node
)
1270 wxString name
= node
->GetAttribute("name");
1271 wxString start
= node
->GetAttribute("start", "0");
1272 wxString size
= node
->GetAttribute("size", "0");
1275 wxXmlResource::Get()->ReportError
1278 "xrc file contains an id-range without a name"
1283 int index
= Find(name
);
1284 if (index
== wxNOT_FOUND
)
1286 wxLogTrace("xrcrange",
1287 "Adding ID range, name=%s start=%s size=%s",
1290 m_IdRanges
.push_back(new wxIdRange(node
, name
, start
, size
));
1294 // There was already a range with this name. Let's hope this is
1295 // from an Unload()/(re)Load(), not an unintentional duplication
1296 wxLogTrace("xrcrange",
1297 "Replacing ID range, name=%s start=%s size=%s",
1300 wxIdRange
* oldrange
= m_IdRanges
.at(index
);
1301 m_IdRanges
.at(index
) = new wxIdRange(node
, name
, start
, size
);
1307 wxIdRangeManager::FindRangeForItem(const wxXmlNode
* node
,
1308 const wxString
& item
,
1309 wxString
& value
) const
1311 wxString basename
= item
.BeforeFirst('[');
1312 wxCHECK_MSG( !basename
.empty(), NULL
,
1313 "an id-range item without a range name" );
1315 int index
= Find(basename
);
1316 if (index
== wxNOT_FOUND
)
1318 // Don't assert just because we've found an unexpected foo[123]
1319 // Someone might just want such a name, nothing to do with ranges
1323 value
= item
.Mid(basename
.Len());
1324 if (value
.at(value
.length()-1)==']')
1326 return m_IdRanges
.at(index
);
1328 wxXmlResource::Get()->ReportError(node
, "a malformed id-range item");
1333 wxIdRangeManager::NotifyRangeOfItem(const wxXmlNode
* node
,
1334 const wxString
& item
) const
1337 wxIdRange
* range
= FindRangeForItem(node
, item
, value
);
1339 range
->NoteItem(node
, value
);
1342 int wxIdRangeManager::Find(const wxString
& rangename
) const
1344 for ( int i
=0; i
< (int)m_IdRanges
.size(); ++i
)
1346 if (m_IdRanges
.at(i
)->GetName() == rangename
)
1353 void wxIdRangeManager::FinaliseRanges(const wxXmlNode
* node
) const
1355 for ( wxVector
<wxIdRange
*>::const_iterator i
= m_IdRanges
.begin();
1356 i
!= m_IdRanges
.end(); ++i
)
1358 // Check if this range has already been finalised. Quite possible,
1359 // as FinaliseRanges() gets called for each .xrc file loaded
1360 if (!(*i
)->IsFinalised())
1362 wxLogTrace("xrcrange", "Finalising ID range %s", (*i
)->GetName());
1363 (*i
)->Finalise(node
);
1369 class wxXmlSubclassFactories
: public wxVector
<wxXmlSubclassFactory
*>
1371 // this is a class so that it can be forward-declared
1374 wxXmlSubclassFactories
*wxXmlResource::ms_subclassFactories
= NULL
;
1376 /*static*/ void wxXmlResource::AddSubclassFactory(wxXmlSubclassFactory
*factory
)
1378 if (!ms_subclassFactories
)
1380 ms_subclassFactories
= new wxXmlSubclassFactories
;
1382 ms_subclassFactories
->push_back(factory
);
1385 class wxXmlSubclassFactoryCXX
: public wxXmlSubclassFactory
1388 ~wxXmlSubclassFactoryCXX() {}
1390 wxObject
*Create(const wxString
& className
)
1392 wxClassInfo
* classInfo
= wxClassInfo::FindClass(className
);
1395 return classInfo
->CreateObject();
1404 wxXmlResourceHandler::wxXmlResourceHandler()
1405 : m_node(NULL
), m_parent(NULL
), m_instance(NULL
),
1406 m_parentAsWindow(NULL
)
1411 wxObject
*wxXmlResourceHandler::CreateResource(wxXmlNode
*node
, wxObject
*parent
, wxObject
*instance
)
1413 wxXmlNode
*myNode
= m_node
;
1414 wxString myClass
= m_class
;
1415 wxObject
*myParent
= m_parent
, *myInstance
= m_instance
;
1416 wxWindow
*myParentAW
= m_parentAsWindow
;
1418 m_instance
= instance
;
1419 if (!m_instance
&& node
->HasAttribute(wxT("subclass")) &&
1420 !(m_resource
->GetFlags() & wxXRC_NO_SUBCLASSING
))
1422 wxString subclass
= node
->GetAttribute(wxT("subclass"), wxEmptyString
);
1423 if (!subclass
.empty())
1425 for (wxXmlSubclassFactories::iterator i
= wxXmlResource::ms_subclassFactories
->begin();
1426 i
!= wxXmlResource::ms_subclassFactories
->end(); ++i
)
1428 m_instance
= (*i
)->Create(subclass
);
1435 wxString name
= node
->GetAttribute(wxT("name"), wxEmptyString
);
1441 "subclass \"%s\" not found for resource \"%s\", not subclassing",
1450 m_class
= node
->GetAttribute(wxT("class"), wxEmptyString
);
1452 m_parentAsWindow
= wxDynamicCast(m_parent
, wxWindow
);
1454 wxObject
*returned
= DoCreateResource();
1458 m_parent
= myParent
; m_parentAsWindow
= myParentAW
;
1459 m_instance
= myInstance
;
1465 void wxXmlResourceHandler::AddStyle(const wxString
& name
, int value
)
1467 m_styleNames
.Add(name
);
1468 m_styleValues
.Add(value
);
1473 void wxXmlResourceHandler::AddWindowStyles()
1475 XRC_ADD_STYLE(wxCLIP_CHILDREN
);
1477 // the border styles all have the old and new names, recognize both for now
1478 XRC_ADD_STYLE(wxSIMPLE_BORDER
); XRC_ADD_STYLE(wxBORDER_SIMPLE
);
1479 XRC_ADD_STYLE(wxSUNKEN_BORDER
); XRC_ADD_STYLE(wxBORDER_SUNKEN
);
1480 XRC_ADD_STYLE(wxDOUBLE_BORDER
); XRC_ADD_STYLE(wxBORDER_DOUBLE
); // deprecated
1481 XRC_ADD_STYLE(wxBORDER_THEME
);
1482 XRC_ADD_STYLE(wxRAISED_BORDER
); XRC_ADD_STYLE(wxBORDER_RAISED
);
1483 XRC_ADD_STYLE(wxSTATIC_BORDER
); XRC_ADD_STYLE(wxBORDER_STATIC
);
1484 XRC_ADD_STYLE(wxNO_BORDER
); XRC_ADD_STYLE(wxBORDER_NONE
);
1486 XRC_ADD_STYLE(wxTRANSPARENT_WINDOW
);
1487 XRC_ADD_STYLE(wxWANTS_CHARS
);
1488 XRC_ADD_STYLE(wxTAB_TRAVERSAL
);
1489 XRC_ADD_STYLE(wxNO_FULL_REPAINT_ON_RESIZE
);
1490 XRC_ADD_STYLE(wxFULL_REPAINT_ON_RESIZE
);
1491 XRC_ADD_STYLE(wxALWAYS_SHOW_SB
);
1492 XRC_ADD_STYLE(wxWS_EX_BLOCK_EVENTS
);
1493 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY
);
1498 bool wxXmlResourceHandler::HasParam(const wxString
& param
)
1500 return (GetParamNode(param
) != NULL
);
1504 int wxXmlResourceHandler::GetStyle(const wxString
& param
, int defaults
)
1506 wxString s
= GetParamValue(param
);
1508 if (!s
) return defaults
;
1510 wxStringTokenizer
tkn(s
, wxT("| \t\n"), wxTOKEN_STRTOK
);
1514 while (tkn
.HasMoreTokens())
1516 fl
= tkn
.GetNextToken();
1517 index
= m_styleNames
.Index(fl
);
1518 if (index
!= wxNOT_FOUND
)
1520 style
|= m_styleValues
[index
];
1527 wxString::Format("unknown style flag \"%s\"", fl
)
1536 wxString
wxXmlResourceHandler::GetText(const wxString
& param
, bool translate
)
1538 wxXmlNode
*parNode
= GetParamNode(param
);
1539 wxString
str1(GetNodeContent(parNode
));
1542 // "\\" wasn't translated to "\" prior to 2.5.3.0:
1543 const bool escapeBackslash
= (m_resource
->CompareVersion(2,5,3,0) >= 0);
1545 // VS: First version of XRC resources used $ instead of & (which is
1546 // illegal in XML), but later I realized that '_' fits this purpose
1547 // much better (because &File means "File with F underlined").
1548 const wxChar amp_char
= (m_resource
->CompareVersion(2,3,0,1) < 0)
1551 for ( wxString::const_iterator dt
= str1
.begin(); dt
!= str1
.end(); ++dt
)
1553 // Remap amp_char to &, map double amp_char to amp_char (for things
1554 // like "&File..." -- this is illegal in XML, so we use "_File..."):
1555 if ( *dt
== amp_char
)
1557 if ( dt
+1 == str1
.end() || *(++dt
) == amp_char
)
1560 str2
<< wxT('&') << *dt
;
1562 // Remap \n to CR, \r to LF, \t to TAB, \\ to \:
1563 else if ( *dt
== wxT('\\') )
1565 switch ( (*(++dt
)).GetValue() )
1580 // "\\" wasn't translated to "\" prior to 2.5.3.0:
1581 if ( escapeBackslash
)
1586 // else fall-through to default: branch below
1589 str2
<< wxT('\\') << *dt
;
1599 if (m_resource
->GetFlags() & wxXRC_USE_LOCALE
)
1601 if (translate
&& parNode
&&
1602 parNode
->GetAttribute(wxT("translate"), wxEmptyString
) != wxT("0"))
1604 return wxGetTranslation(str2
, m_resource
->GetDomain());
1611 // The string is internally stored as UTF-8, we have to convert
1612 // it into system's default encoding so that it can be displayed:
1613 return wxString(str2
.wc_str(wxConvUTF8
), wxConvLocal
);
1618 // If wxXRC_USE_LOCALE is not set, then the string is already in
1619 // system's default encoding in ANSI build, so we don't have to
1620 // do anything special here.
1626 long wxXmlResourceHandler::GetLong(const wxString
& param
, long defaultv
)
1629 wxString str1
= GetParamValue(param
);
1631 if (!str1
.ToLong(&value
))
1637 float wxXmlResourceHandler::GetFloat(const wxString
& param
, float defaultv
)
1639 wxString str
= GetParamValue(param
);
1641 // strings in XRC always use C locale so make sure to use the
1642 // locale-independent wxString::ToCDouble() and not ToDouble() which uses
1643 // the current locale with a potentially different decimal point character
1645 if (!str
.ToCDouble(&value
))
1648 return wx_truncate_cast(float, value
);
1652 int wxXmlResourceHandler::GetID()
1654 return wxXmlResource::GetXRCID(GetName());
1659 wxString
wxXmlResourceHandler::GetName()
1661 return m_node
->GetAttribute(wxT("name"), wxT("-1"));
1666 bool wxXmlResourceHandler::GetBoolAttr(const wxString
& attr
, bool defaultv
)
1669 return m_node
->GetAttribute(attr
, &v
) ? v
== '1' : defaultv
;
1672 bool wxXmlResourceHandler::GetBool(const wxString
& param
, bool defaultv
)
1674 const wxString v
= GetParamValue(param
);
1676 return v
.empty() ? defaultv
: (v
== '1');
1680 static wxColour
GetSystemColour(const wxString
& name
)
1684 #define SYSCLR(clr) \
1685 if (name == wxT(#clr)) return wxSystemSettings::GetColour(clr);
1686 SYSCLR(wxSYS_COLOUR_SCROLLBAR
)
1687 SYSCLR(wxSYS_COLOUR_BACKGROUND
)
1688 SYSCLR(wxSYS_COLOUR_DESKTOP
)
1689 SYSCLR(wxSYS_COLOUR_ACTIVECAPTION
)
1690 SYSCLR(wxSYS_COLOUR_INACTIVECAPTION
)
1691 SYSCLR(wxSYS_COLOUR_MENU
)
1692 SYSCLR(wxSYS_COLOUR_WINDOW
)
1693 SYSCLR(wxSYS_COLOUR_WINDOWFRAME
)
1694 SYSCLR(wxSYS_COLOUR_MENUTEXT
)
1695 SYSCLR(wxSYS_COLOUR_WINDOWTEXT
)
1696 SYSCLR(wxSYS_COLOUR_CAPTIONTEXT
)
1697 SYSCLR(wxSYS_COLOUR_ACTIVEBORDER
)
1698 SYSCLR(wxSYS_COLOUR_INACTIVEBORDER
)
1699 SYSCLR(wxSYS_COLOUR_APPWORKSPACE
)
1700 SYSCLR(wxSYS_COLOUR_HIGHLIGHT
)
1701 SYSCLR(wxSYS_COLOUR_HIGHLIGHTTEXT
)
1702 SYSCLR(wxSYS_COLOUR_BTNFACE
)
1703 SYSCLR(wxSYS_COLOUR_3DFACE
)
1704 SYSCLR(wxSYS_COLOUR_BTNSHADOW
)
1705 SYSCLR(wxSYS_COLOUR_3DSHADOW
)
1706 SYSCLR(wxSYS_COLOUR_GRAYTEXT
)
1707 SYSCLR(wxSYS_COLOUR_BTNTEXT
)
1708 SYSCLR(wxSYS_COLOUR_INACTIVECAPTIONTEXT
)
1709 SYSCLR(wxSYS_COLOUR_BTNHIGHLIGHT
)
1710 SYSCLR(wxSYS_COLOUR_BTNHILIGHT
)
1711 SYSCLR(wxSYS_COLOUR_3DHIGHLIGHT
)
1712 SYSCLR(wxSYS_COLOUR_3DHILIGHT
)
1713 SYSCLR(wxSYS_COLOUR_3DDKSHADOW
)
1714 SYSCLR(wxSYS_COLOUR_3DLIGHT
)
1715 SYSCLR(wxSYS_COLOUR_INFOTEXT
)
1716 SYSCLR(wxSYS_COLOUR_INFOBK
)
1717 SYSCLR(wxSYS_COLOUR_LISTBOX
)
1718 SYSCLR(wxSYS_COLOUR_HOTLIGHT
)
1719 SYSCLR(wxSYS_COLOUR_GRADIENTACTIVECAPTION
)
1720 SYSCLR(wxSYS_COLOUR_GRADIENTINACTIVECAPTION
)
1721 SYSCLR(wxSYS_COLOUR_MENUHILIGHT
)
1722 SYSCLR(wxSYS_COLOUR_MENUBAR
)
1726 return wxNullColour
;
1729 wxColour
wxXmlResourceHandler::GetColour(const wxString
& param
, const wxColour
& defaultv
)
1731 wxString v
= GetParamValue(param
);
1738 // wxString -> wxColour conversion
1741 // the colour doesn't use #RRGGBB format, check if it is symbolic
1743 clr
= GetSystemColour(v
);
1750 wxString::Format("incorrect colour specification \"%s\"", v
)
1752 return wxNullColour
;
1761 // if 'param' has stock_id/stock_client, extracts them and returns true
1762 bool GetStockArtAttrs(const wxXmlNode
*paramNode
,
1763 const wxString
& defaultArtClient
,
1764 wxString
& art_id
, wxString
& art_client
)
1768 art_id
= paramNode
->GetAttribute("stock_id", "");
1770 if ( !art_id
.empty() )
1772 art_id
= wxART_MAKE_ART_ID_FROM_STR(art_id
);
1774 art_client
= paramNode
->GetAttribute("stock_client", "");
1775 if ( art_client
.empty() )
1776 art_client
= defaultArtClient
;
1778 art_client
= wxART_MAKE_CLIENT_ID_FROM_STR(art_client
);
1787 } // anonymous namespace
1789 wxBitmap
wxXmlResourceHandler::GetBitmap(const wxString
& param
,
1790 const wxArtClient
& defaultArtClient
,
1793 // it used to be possible to pass an empty string here to indicate that the
1794 // bitmap name should be read from this node itself but this is not
1795 // supported any more because GetBitmap(m_node) can be used directly
1797 wxASSERT_MSG( !param
.empty(), "bitmap parameter name can't be empty" );
1799 const wxXmlNode
* const node
= GetParamNode(param
);
1803 // this is not an error as bitmap parameter could be optional
1804 return wxNullBitmap
;
1807 return GetBitmap(node
, defaultArtClient
, size
);
1810 wxBitmap
wxXmlResourceHandler::GetBitmap(const wxXmlNode
* node
,
1811 const wxArtClient
& defaultArtClient
,
1814 wxCHECK_MSG( node
, wxNullBitmap
, "bitmap node can't be NULL" );
1816 /* If the bitmap is specified as stock item, query wxArtProvider for it: */
1817 wxString art_id
, art_client
;
1818 if ( GetStockArtAttrs(node
, defaultArtClient
,
1819 art_id
, art_client
) )
1821 wxBitmap
stockArt(wxArtProvider::GetBitmap(art_id
, art_client
, size
));
1822 if ( stockArt
.IsOk() )
1826 /* ...or load the bitmap from file: */
1827 wxString name
= GetParamValue(node
);
1828 if (name
.empty()) return wxNullBitmap
;
1829 #if wxUSE_FILESYSTEM
1830 wxFSFile
*fsfile
= GetCurFileSystem().OpenFile(name
, wxFS_READ
| wxFS_SEEKABLE
);
1836 wxString::Format("cannot open bitmap resource \"%s\"", name
)
1838 return wxNullBitmap
;
1840 wxImage
img(*(fsfile
->GetStream()));
1851 wxString::Format("cannot create bitmap from \"%s\"", name
)
1853 return wxNullBitmap
;
1855 if (!(size
== wxDefaultSize
)) img
.Rescale(size
.x
, size
.y
);
1856 return wxBitmap(img
);
1860 wxIcon
wxXmlResourceHandler::GetIcon(const wxString
& param
,
1861 const wxArtClient
& defaultArtClient
,
1864 // see comment in GetBitmap(wxString) overload
1865 wxASSERT_MSG( !param
.empty(), "icon parameter name can't be empty" );
1867 const wxXmlNode
* const node
= GetParamNode(param
);
1871 // this is not an error as icon parameter could be optional
1875 return GetIcon(node
, defaultArtClient
, size
);
1878 wxIcon
wxXmlResourceHandler::GetIcon(const wxXmlNode
* node
,
1879 const wxArtClient
& defaultArtClient
,
1883 icon
.CopyFromBitmap(GetBitmap(node
, defaultArtClient
, size
));
1888 wxIconBundle
wxXmlResourceHandler::GetIconBundle(const wxString
& param
,
1889 const wxArtClient
& defaultArtClient
)
1891 wxString art_id
, art_client
;
1892 if ( GetStockArtAttrs(GetParamNode(param
), defaultArtClient
,
1893 art_id
, art_client
) )
1895 wxIconBundle
stockArt(wxArtProvider::GetIconBundle(art_id
, art_client
));
1896 if ( stockArt
.IsOk() )
1900 const wxString name
= GetParamValue(param
);
1902 return wxNullIconBundle
;
1904 #if wxUSE_FILESYSTEM
1905 wxFSFile
*fsfile
= GetCurFileSystem().OpenFile(name
, wxFS_READ
| wxFS_SEEKABLE
);
1906 if ( fsfile
== NULL
)
1911 wxString::Format("cannot open icon resource \"%s\"", name
)
1913 return wxNullIconBundle
;
1916 wxIconBundle
bundle(*(fsfile
->GetStream()));
1919 wxIconBundle
bundle(name
);
1922 if ( !bundle
.IsOk() )
1927 wxString::Format("cannot create icon from \"%s\"", name
)
1929 return wxNullIconBundle
;
1936 wxImageList
*wxXmlResourceHandler::GetImageList(const wxString
& param
)
1938 wxXmlNode
* const imagelist_node
= GetParamNode(param
);
1939 if ( !imagelist_node
)
1942 wxXmlNode
* const oldnode
= m_node
;
1943 m_node
= imagelist_node
;
1945 // Get the size if we have it, otherwise we will use the size of the first
1947 wxSize size
= GetSize();
1949 // Start adding images, we'll create the image list when adding the first
1951 wxImageList
* imagelist
= NULL
;
1952 wxString parambitmap
= wxT("bitmap");
1953 if ( HasParam(parambitmap
) )
1955 wxXmlNode
*n
= m_node
->GetChildren();
1958 if (n
->GetType() == wxXML_ELEMENT_NODE
&& n
->GetName() == parambitmap
)
1960 wxIcon icon
= GetIcon(n
, wxART_OTHER
, size
);
1963 // We need the real image list size to create it.
1964 if ( size
== wxDefaultSize
)
1965 size
= icon
.GetSize();
1967 // We use the mask by default.
1968 bool mask
= !HasParam(wxS("mask")) || GetBool(wxS("mask"));
1970 imagelist
= new wxImageList(size
.x
, size
.y
, mask
);
1973 // add icon instead of bitmap to keep the bitmap mask
1974 imagelist
->Add(icon
);
1984 wxXmlNode
*wxXmlResourceHandler::GetParamNode(const wxString
& param
)
1986 wxCHECK_MSG(m_node
, NULL
, wxT("You can't access handler data before it was initialized!"));
1988 wxXmlNode
*n
= m_node
->GetChildren();
1992 if (n
->GetType() == wxXML_ELEMENT_NODE
&& n
->GetName() == param
)
1994 // TODO: check that there are no other properties/parameters with
1995 // the same name and log an error if there are (can't do this
1996 // right now as I'm not sure if it's not going to break code
1997 // using this function in unintentional way (i.e. for
1998 // accessing other things than properties), for example
1999 // wxBitmapComboBoxXmlHandler almost surely does
2008 bool wxXmlResourceHandler::IsOfClass(wxXmlNode
*node
, const wxString
& classname
)
2010 return node
->GetAttribute(wxT("class")) == classname
;
2015 wxString
wxXmlResourceHandler::GetNodeContent(const wxXmlNode
*node
)
2017 const wxXmlNode
*n
= node
;
2018 if (n
== NULL
) return wxEmptyString
;
2019 n
= n
->GetChildren();
2023 if (n
->GetType() == wxXML_TEXT_NODE
||
2024 n
->GetType() == wxXML_CDATA_SECTION_NODE
)
2025 return n
->GetContent();
2028 return wxEmptyString
;
2033 wxString
wxXmlResourceHandler::GetParamValue(const wxString
& param
)
2036 return GetNodeContent(m_node
);
2038 return GetNodeContent(GetParamNode(param
));
2041 wxString
wxXmlResourceHandler::GetParamValue(const wxXmlNode
* node
)
2043 return GetNodeContent(node
);
2047 wxSize
wxXmlResourceHandler::GetSize(const wxString
& param
,
2048 wxWindow
*windowToUse
)
2050 wxString s
= GetParamValue(param
);
2051 if (s
.empty()) s
= wxT("-1,-1");
2055 is_dlg
= s
[s
.length()-1] == wxT('d');
2056 if (is_dlg
) s
.RemoveLast();
2058 if (!s
.BeforeFirst(wxT(',')).ToLong(&sx
) ||
2059 !s
.AfterLast(wxT(',')).ToLong(&sy
))
2064 wxString::Format("cannot parse coordinates value \"%s\"", s
)
2066 return wxDefaultSize
;
2073 return wxDLG_UNIT(windowToUse
, wxSize(sx
, sy
));
2075 else if (m_parentAsWindow
)
2077 return wxDLG_UNIT(m_parentAsWindow
, wxSize(sx
, sy
));
2084 "cannot convert dialog units: dialog unknown"
2086 return wxDefaultSize
;
2090 return wxSize(sx
, sy
);
2095 wxPoint
wxXmlResourceHandler::GetPosition(const wxString
& param
)
2097 wxSize sz
= GetSize(param
);
2098 return wxPoint(sz
.x
, sz
.y
);
2103 wxCoord
wxXmlResourceHandler::GetDimension(const wxString
& param
,
2105 wxWindow
*windowToUse
)
2107 wxString s
= GetParamValue(param
);
2108 if (s
.empty()) return defaultv
;
2112 is_dlg
= s
[s
.length()-1] == wxT('d');
2113 if (is_dlg
) s
.RemoveLast();
2120 wxString::Format("cannot parse dimension value \"%s\"", s
)
2129 return wxDLG_UNIT(windowToUse
, wxSize(sx
, 0)).x
;
2131 else if (m_parentAsWindow
)
2133 return wxDLG_UNIT(m_parentAsWindow
, wxSize(sx
, 0)).x
;
2140 "cannot convert dialog units: dialog unknown"
2150 wxXmlResourceHandler::GetDirection(const wxString
& param
, wxDirection dirDefault
)
2154 const wxString dirstr
= GetParamValue(param
);
2155 if ( dirstr
.empty() )
2157 else if ( dirstr
== "wxLEFT" )
2159 else if ( dirstr
== "wxRIGHT" )
2161 else if ( dirstr
== "wxTOP" )
2163 else if ( dirstr
== "wxBOTTOM" )
2169 GetParamNode(param
),
2172 "Invalid direction \"%s\": must be one of "
2173 "wxLEFT|wxRIGHT|wxTOP|wxBOTTOM.",
2184 // Get system font index using indexname
2185 static wxFont
GetSystemFont(const wxString
& name
)
2189 #define SYSFNT(fnt) \
2190 if (name == wxT(#fnt)) return wxSystemSettings::GetFont(fnt);
2191 SYSFNT(wxSYS_OEM_FIXED_FONT
)
2192 SYSFNT(wxSYS_ANSI_FIXED_FONT
)
2193 SYSFNT(wxSYS_ANSI_VAR_FONT
)
2194 SYSFNT(wxSYS_SYSTEM_FONT
)
2195 SYSFNT(wxSYS_DEVICE_DEFAULT_FONT
)
2196 SYSFNT(wxSYS_SYSTEM_FIXED_FONT
)
2197 SYSFNT(wxSYS_DEFAULT_GUI_FONT
)
2204 wxFont
wxXmlResourceHandler::GetFont(const wxString
& param
)
2206 wxXmlNode
*font_node
= GetParamNode(param
);
2207 if (font_node
== NULL
)
2210 wxString::Format("cannot find font node \"%s\"", param
));
2214 wxXmlNode
*oldnode
= m_node
;
2221 bool hasSize
= HasParam(wxT("size"));
2223 isize
= GetLong(wxT("size"), -1);
2226 int istyle
= wxNORMAL
;
2227 bool hasStyle
= HasParam(wxT("style"));
2230 wxString style
= GetParamValue(wxT("style"));
2231 if (style
== wxT("italic"))
2233 else if (style
== wxT("slant"))
2238 int iweight
= wxNORMAL
;
2239 bool hasWeight
= HasParam(wxT("weight"));
2242 wxString weight
= GetParamValue(wxT("weight"));
2243 if (weight
== wxT("bold"))
2245 else if (weight
== wxT("light"))
2250 bool hasUnderlined
= HasParam(wxT("underlined"));
2251 bool underlined
= hasUnderlined
? GetBool(wxT("underlined"), false) : false;
2253 // family and facename
2254 int ifamily
= wxDEFAULT
;
2255 bool hasFamily
= HasParam(wxT("family"));
2258 wxString family
= GetParamValue(wxT("family"));
2259 if (family
== wxT("decorative")) ifamily
= wxDECORATIVE
;
2260 else if (family
== wxT("roman")) ifamily
= wxROMAN
;
2261 else if (family
== wxT("script")) ifamily
= wxSCRIPT
;
2262 else if (family
== wxT("swiss")) ifamily
= wxSWISS
;
2263 else if (family
== wxT("modern")) ifamily
= wxMODERN
;
2264 else if (family
== wxT("teletype")) ifamily
= wxTELETYPE
;
2269 bool hasFacename
= HasParam(wxT("face"));
2272 wxString faces
= GetParamValue(wxT("face"));
2273 wxStringTokenizer
tk(faces
, wxT(","));
2275 wxArrayString
facenames(wxFontEnumerator::GetFacenames());
2276 while (tk
.HasMoreTokens())
2278 int index
= facenames
.Index(tk
.GetNextToken(), false);
2279 if (index
!= wxNOT_FOUND
)
2281 facename
= facenames
[index
];
2285 #else // !wxUSE_FONTENUM
2286 // just use the first face name if we can't check its availability:
2287 if (tk
.HasMoreTokens())
2288 facename
= tk
.GetNextToken();
2289 #endif // wxUSE_FONTENUM/!wxUSE_FONTENUM
2293 wxFontEncoding enc
= wxFONTENCODING_DEFAULT
;
2294 bool hasEncoding
= HasParam(wxT("encoding"));
2298 wxString encoding
= GetParamValue(wxT("encoding"));
2299 wxFontMapper mapper
;
2300 if (!encoding
.empty())
2301 enc
= mapper
.CharsetToEncoding(encoding
);
2302 if (enc
== wxFONTENCODING_SYSTEM
)
2303 enc
= wxFONTENCODING_DEFAULT
;
2305 #endif // wxUSE_FONTMAP
2307 // is this font based on a system font?
2308 wxFont font
= GetSystemFont(GetParamValue(wxT("sysfont")));
2312 if (hasSize
&& isize
!= -1)
2313 font
.SetPointSize(isize
);
2314 else if (HasParam(wxT("relativesize")))
2315 font
.SetPointSize(int(font
.GetPointSize() *
2316 GetFloat(wxT("relativesize"))));
2319 font
.SetStyle(istyle
);
2321 font
.SetWeight(iweight
);
2323 font
.SetUnderlined(underlined
);
2325 font
.SetFamily(ifamily
);
2327 font
.SetFaceName(facename
);
2329 font
.SetDefaultEncoding(enc
);
2331 else // not based on system font
2333 font
= wxFont(isize
== -1 ? wxNORMAL_FONT
->GetPointSize() : isize
,
2334 ifamily
, istyle
, iweight
,
2335 underlined
, facename
, enc
);
2343 void wxXmlResourceHandler::SetupWindow(wxWindow
*wnd
)
2345 //FIXME : add cursor
2347 if (HasParam(wxT("exstyle")))
2348 // Have to OR it with existing style, since
2349 // some implementations (e.g. wxGTK) use the extra style
2351 wnd
->SetExtraStyle(wnd
->GetExtraStyle() | GetStyle(wxT("exstyle")));
2352 if (HasParam(wxT("bg")))
2353 wnd
->SetBackgroundColour(GetColour(wxT("bg")));
2354 if (HasParam(wxT("ownbg")))
2355 wnd
->SetOwnBackgroundColour(GetColour(wxT("ownbg")));
2356 if (HasParam(wxT("fg")))
2357 wnd
->SetForegroundColour(GetColour(wxT("fg")));
2358 if (HasParam(wxT("ownfg")))
2359 wnd
->SetOwnForegroundColour(GetColour(wxT("ownfg")));
2360 if (GetBool(wxT("enabled"), 1) == 0)
2362 if (GetBool(wxT("focused"), 0) == 1)
2364 if (GetBool(wxT("hidden"), 0) == 1)
2367 if (HasParam(wxT("tooltip")))
2368 wnd
->SetToolTip(GetText(wxT("tooltip")));
2370 if (HasParam(wxT("font")))
2371 wnd
->SetFont(GetFont(wxT("font")));
2372 if (HasParam(wxT("ownfont")))
2373 wnd
->SetOwnFont(GetFont(wxT("ownfont")));
2374 if (HasParam(wxT("help")))
2375 wnd
->SetHelpText(GetText(wxT("help")));
2379 void wxXmlResourceHandler::CreateChildren(wxObject
*parent
, bool this_hnd_only
)
2381 for ( wxXmlNode
*n
= m_node
->GetChildren(); n
; n
= n
->GetNext() )
2383 if ( IsObjectNode(n
) )
2385 m_resource
->DoCreateResFromNode(*n
, parent
, NULL
,
2386 this_hnd_only
? this : NULL
);
2392 void wxXmlResourceHandler::CreateChildrenPrivately(wxObject
*parent
, wxXmlNode
*rootnode
)
2395 if (rootnode
== NULL
) root
= m_node
; else root
= rootnode
;
2396 wxXmlNode
*n
= root
->GetChildren();
2400 if (n
->GetType() == wxXML_ELEMENT_NODE
&& CanHandle(n
))
2402 CreateResource(n
, parent
, NULL
);
2409 //-----------------------------------------------------------------------------
2411 //-----------------------------------------------------------------------------
2413 void wxXmlResourceHandler::ReportError(const wxString
& message
)
2415 m_resource
->ReportError(m_node
, message
);
2418 void wxXmlResourceHandler::ReportError(wxXmlNode
*context
,
2419 const wxString
& message
)
2421 m_resource
->ReportError(context
? context
: m_node
, message
);
2424 void wxXmlResourceHandler::ReportParamError(const wxString
& param
,
2425 const wxString
& message
)
2427 m_resource
->ReportError(GetParamNode(param
), message
);
2430 void wxXmlResource::ReportError(const wxXmlNode
*context
, const wxString
& message
)
2434 DoReportError("", NULL
, message
);
2438 // We need to find out the file that 'context' is part of. Performance of
2439 // this code is not critical, so we simply find the root XML node and
2440 // compare it with all loaded XRC files.
2441 const wxString filename
= GetFileNameFromNode(context
, Data());
2443 DoReportError(filename
, context
, message
);
2446 void wxXmlResource::DoReportError(const wxString
& xrcFile
, const wxXmlNode
*position
,
2447 const wxString
& message
)
2449 const int line
= position
? position
->GetLineNumber() : -1;
2452 if ( !xrcFile
.empty() )
2453 loc
= xrcFile
+ ':';
2455 loc
+= wxString::Format("%d:", line
);
2459 wxLogError("XRC error: %s%s", loc
, message
);
2463 //-----------------------------------------------------------------------------
2464 // XRCID implementation
2465 //-----------------------------------------------------------------------------
2467 #define XRCID_TABLE_SIZE 1024
2472 /* Hold the id so that once an id is allocated for a name, it
2473 does not get created again by NewControlId at least
2474 until we are done with it */
2480 static XRCID_record
*XRCID_Records
[XRCID_TABLE_SIZE
] = {NULL
};
2482 // Extremely simplistic hash function which probably ought to be replaced with
2483 // wxStringHash::stringHash().
2484 static inline unsigned XRCIdHash(const char *str_id
)
2488 for (const char *c
= str_id
; *c
!= '\0'; c
++) index
+= (unsigned int)*c
;
2489 index
%= XRCID_TABLE_SIZE
;
2494 static void XRCID_Assign(const wxString
& str_id
, int value
)
2496 const wxCharBuffer
buf_id(str_id
.mb_str());
2497 const unsigned index
= XRCIdHash(buf_id
);
2500 XRCID_record
*oldrec
= NULL
;
2501 for (XRCID_record
*rec
= XRCID_Records
[index
]; rec
; rec
= rec
->next
)
2503 if (wxStrcmp(rec
->key
, buf_id
) == 0)
2511 XRCID_record
**rec_var
= (oldrec
== NULL
) ?
2512 &XRCID_Records
[index
] : &oldrec
->next
;
2513 *rec_var
= new XRCID_record
;
2514 (*rec_var
)->key
= wxStrdup(str_id
);
2515 (*rec_var
)->id
= value
;
2516 (*rec_var
)->next
= NULL
;
2519 static int XRCID_Lookup(const char *str_id
, int value_if_not_found
= wxID_NONE
)
2521 const unsigned index
= XRCIdHash(str_id
);
2524 XRCID_record
*oldrec
= NULL
;
2525 for (XRCID_record
*rec
= XRCID_Records
[index
]; rec
; rec
= rec
->next
)
2527 if (wxStrcmp(rec
->key
, str_id
) == 0)
2534 XRCID_record
**rec_var
= (oldrec
== NULL
) ?
2535 &XRCID_Records
[index
] : &oldrec
->next
;
2536 *rec_var
= new XRCID_record
;
2537 (*rec_var
)->key
= wxStrdup(str_id
);
2538 (*rec_var
)->next
= NULL
;
2541 if (value_if_not_found
!= wxID_NONE
)
2542 (*rec_var
)->id
= value_if_not_found
;
2545 int asint
= wxStrtol(str_id
, &end
, 10);
2546 if (*str_id
&& *end
== 0)
2548 // if str_id was integer, keep it verbosely:
2549 (*rec_var
)->id
= asint
;
2553 (*rec_var
)->id
= wxWindowBase::NewControlId();
2557 return (*rec_var
)->id
;
2563 // flag indicating whether standard XRC ids were already initialized
2564 static bool gs_stdIDsAdded
= false;
2566 void AddStdXRCID_Records()
2568 #define stdID(id) XRCID_Lookup(#id, id)
2572 stdID(wxID_SEPARATOR
);
2585 stdID(wxID_PRINT_SETUP
);
2586 stdID(wxID_PAGE_SETUP
);
2587 stdID(wxID_PREVIEW
);
2589 stdID(wxID_HELP_CONTENTS
);
2590 stdID(wxID_HELP_COMMANDS
);
2591 stdID(wxID_HELP_PROCEDURES
);
2592 stdID(wxID_HELP_CONTEXT
);
2593 stdID(wxID_CLOSE_ALL
);
2594 stdID(wxID_PREFERENCES
);
2601 stdID(wxID_DUPLICATE
);
2602 stdID(wxID_SELECTALL
);
2604 stdID(wxID_REPLACE
);
2605 stdID(wxID_REPLACE_ALL
);
2606 stdID(wxID_PROPERTIES
);
2607 stdID(wxID_VIEW_DETAILS
);
2608 stdID(wxID_VIEW_LARGEICONS
);
2609 stdID(wxID_VIEW_SMALLICONS
);
2610 stdID(wxID_VIEW_LIST
);
2611 stdID(wxID_VIEW_SORTDATE
);
2612 stdID(wxID_VIEW_SORTNAME
);
2613 stdID(wxID_VIEW_SORTSIZE
);
2614 stdID(wxID_VIEW_SORTTYPE
);
2630 stdID(wxID_FORWARD
);
2631 stdID(wxID_BACKWARD
);
2632 stdID(wxID_DEFAULT
);
2636 stdID(wxID_CONTEXT_HELP
);
2637 stdID(wxID_YESTOALL
);
2638 stdID(wxID_NOTOALL
);
2647 stdID(wxID_REFRESH
);
2652 stdID(wxID_JUSTIFY_CENTER
);
2653 stdID(wxID_JUSTIFY_FILL
);
2654 stdID(wxID_JUSTIFY_RIGHT
);
2655 stdID(wxID_JUSTIFY_LEFT
);
2656 stdID(wxID_UNDERLINE
);
2658 stdID(wxID_UNINDENT
);
2659 stdID(wxID_ZOOM_100
);
2660 stdID(wxID_ZOOM_FIT
);
2661 stdID(wxID_ZOOM_IN
);
2662 stdID(wxID_ZOOM_OUT
);
2663 stdID(wxID_UNDELETE
);
2664 stdID(wxID_REVERT_TO_SAVED
);
2665 stdID(wxID_SYSTEM_MENU
);
2666 stdID(wxID_CLOSE_FRAME
);
2667 stdID(wxID_MOVE_FRAME
);
2668 stdID(wxID_RESIZE_FRAME
);
2669 stdID(wxID_MAXIMIZE_FRAME
);
2670 stdID(wxID_ICONIZE_FRAME
);
2671 stdID(wxID_RESTORE_FRAME
);
2673 stdID(wxID_CONVERT
);
2674 stdID(wxID_EXECUTE
);
2676 stdID(wxID_HARDDISK
);
2682 stdID(wxID_JUMP_TO
);
2683 stdID(wxID_NETWORK
);
2684 stdID(wxID_SELECT_COLOR
);
2685 stdID(wxID_SELECT_FONT
);
2686 stdID(wxID_SORT_ASCENDING
);
2687 stdID(wxID_SORT_DESCENDING
);
2688 stdID(wxID_SPELL_CHECK
);
2689 stdID(wxID_STRIKETHROUGH
);
2694 } // anonymous namespace
2698 int wxXmlResource::DoGetXRCID(const char *str_id
, int value_if_not_found
)
2700 if ( !gs_stdIDsAdded
)
2702 gs_stdIDsAdded
= true;
2703 AddStdXRCID_Records();
2706 return XRCID_Lookup(str_id
, value_if_not_found
);
2710 wxString
wxXmlResource::FindXRCIDById(int numId
)
2712 for ( int i
= 0; i
< XRCID_TABLE_SIZE
; i
++ )
2714 for ( XRCID_record
*rec
= XRCID_Records
[i
]; rec
; rec
= rec
->next
)
2716 if ( rec
->id
== numId
)
2717 return wxString(rec
->key
);
2724 static void CleanXRCID_Record(XRCID_record
*rec
)
2728 CleanXRCID_Record(rec
->next
);
2735 static void CleanXRCID_Records()
2737 for (int i
= 0; i
< XRCID_TABLE_SIZE
; i
++)
2739 CleanXRCID_Record(XRCID_Records
[i
]);
2740 XRCID_Records
[i
] = NULL
;
2743 gs_stdIDsAdded
= false;
2747 //-----------------------------------------------------------------------------
2748 // module and globals
2749 //-----------------------------------------------------------------------------
2751 // normally we would do the cleanup from wxXmlResourceModule::OnExit() but it
2752 // can happen that some XRC records have been created because of the use of
2753 // XRCID() in event tables, which happens during static objects initialization,
2754 // but then the application initialization failed and so the wx modules were
2755 // neither initialized nor cleaned up -- this static object does the cleanup in
2757 static struct wxXRCStaticCleanup
2759 ~wxXRCStaticCleanup() { CleanXRCID_Records(); }
2762 class wxXmlResourceModule
: public wxModule
2764 DECLARE_DYNAMIC_CLASS(wxXmlResourceModule
)
2766 wxXmlResourceModule() {}
2769 wxXmlResource::AddSubclassFactory(new wxXmlSubclassFactoryCXX
);
2774 delete wxXmlResource::Set(NULL
);
2775 delete wxIdRangeManager::Set(NULL
);
2776 if(wxXmlResource::ms_subclassFactories
)
2778 for ( wxXmlSubclassFactories::iterator i
= wxXmlResource::ms_subclassFactories
->begin();
2779 i
!= wxXmlResource::ms_subclassFactories
->end(); ++i
)
2783 wxDELETE(wxXmlResource::ms_subclassFactories
);
2785 CleanXRCID_Records();
2789 IMPLEMENT_DYNAMIC_CLASS(wxXmlResourceModule
, wxModule
)
2792 // When wxXml is loaded dynamically after the application is already running
2793 // then the built-in module system won't pick this one up. Add it manually.
2794 void wxXmlInitResourceModule()
2796 wxModule
* module = new wxXmlResourceModule
;
2798 wxModule::RegisterModule(module);