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"
52 class wxXmlResourceDataRecord
55 wxXmlResourceDataRecord() : Doc(NULL
) {
57 Time
= wxDateTime::Now();
60 ~wxXmlResourceDataRecord() {delete Doc
;}
69 class wxXmlResourceDataRecords
: public wxVector
<wxXmlResourceDataRecord
*>
71 // this is a class so that it can be forward-declared
77 // helper used by DoFindResource() and elsewhere: returns true if this is an
78 // object or object_ref node
80 // node must be non-NULL
81 inline bool IsObjectNode(wxXmlNode
*node
)
83 return node
->GetType() == wxXML_ELEMENT_NODE
&&
84 (node
->GetName() == wxS("object") ||
85 node
->GetName() == wxS("object_ref"));
88 // special XML attribute with name of input file, see GetFileNameFromNode()
89 const char *ATTR_INPUT_FILENAME
= "__wx:filename";
91 // helper to get filename corresponding to an XML node
93 GetFileNameFromNode(wxXmlNode
*node
, const wxXmlResourceDataRecords
& files
)
95 // this loop does two things: it looks for ATTR_INPUT_FILENAME among
96 // parents and if it isn't used, it finds the root of the XML tree 'node'
100 // in some rare cases (specifically, when an <object_ref> is used, see
101 // wxXmlResource::CreateResFromNode() and MergeNodesOver()), we work
102 // with XML nodes that are not rooted in any document from 'files'
103 // (because a new node was created by CreateResFromNode() to merge the
104 // content of <object_ref> and the referenced <object>); in that case,
105 // we hack around the problem by putting the information about input
106 // file into a custom attribute
107 if ( node
->HasAttribute(ATTR_INPUT_FILENAME
) )
108 return node
->GetAttribute(ATTR_INPUT_FILENAME
);
110 if ( !node
->GetParent() )
111 break; // we found the root of this XML tree
113 node
= node
->GetParent();
116 // NB: 'node' now points to the root of XML document
118 for ( wxXmlResourceDataRecords::const_iterator i
= files
.begin();
119 i
!= files
.end(); ++i
)
121 if ( (*i
)->Doc
->GetRoot() == node
)
127 return wxEmptyString
; // not found
130 } // anonymous namespace
133 wxXmlResource
*wxXmlResource::ms_instance
= NULL
;
135 /*static*/ wxXmlResource
*wxXmlResource::Get()
138 ms_instance
= new wxXmlResource
;
142 /*static*/ wxXmlResource
*wxXmlResource::Set(wxXmlResource
*res
)
144 wxXmlResource
*old
= ms_instance
;
149 wxXmlResource::wxXmlResource(int flags
, const wxString
& domain
)
153 m_data
= new wxXmlResourceDataRecords
;
157 wxXmlResource::wxXmlResource(const wxString
& filemask
, int flags
, const wxString
& domain
)
161 m_data
= new wxXmlResourceDataRecords
;
166 wxXmlResource::~wxXmlResource()
170 for ( wxXmlResourceDataRecords::iterator i
= m_data
->begin();
171 i
!= m_data
->end(); ++i
)
178 void wxXmlResource::SetDomain(const wxString
& domain
)
185 wxString
wxXmlResource::ConvertFileNameToURL(const wxString
& filename
)
187 wxString
fnd(filename
);
189 // NB: as Load() and Unload() accept both filenames and URLs (should
190 // probably be changed to filenames only, but embedded resources
191 // currently rely on its ability to handle URLs - FIXME) we need to
192 // determine whether found name is filename and not URL and this is the
193 // fastest/simplest way to do it
194 if (wxFileName::FileExists(fnd
))
196 // Make the name absolute filename, because the app may
197 // change working directory later:
202 fnd
= fn
.GetFullPath();
205 fnd
= wxFileSystem::FileNameToURL(fnd
);
215 bool wxXmlResource::IsArchive(const wxString
& filename
)
217 const wxString fnd
= filename
.Lower();
219 return fnd
.Matches(wxT("*.zip")) || fnd
.Matches(wxT("*.xrs"));
222 #endif // wxUSE_FILESYSTEM
224 bool wxXmlResource::LoadFile(const wxFileName
& file
)
227 return Load(wxFileSystem::FileNameToURL(file
));
229 return Load(file
.GetFullPath());
233 bool wxXmlResource::LoadAllFiles(const wxString
& dirname
)
238 wxDir::GetAllFiles(dirname
, &files
, "*.xrc");
240 for ( wxArrayString::const_iterator i
= files
.begin(); i
!= files
.end(); ++i
)
249 bool wxXmlResource::Load(const wxString
& filemask_
)
251 wxString filemask
= ConvertFileNameToURL(filemask_
);
255 # define wxXmlFindFirst fsys.FindFirst(filemask, wxFILE)
256 # define wxXmlFindNext fsys.FindNext()
258 # define wxXmlFindFirst wxFindFirstFile(filemask, wxFILE)
259 # define wxXmlFindNext wxFindNextFile()
261 wxString fnd
= wxXmlFindFirst
;
264 wxLogError(_("Cannot load resources from '%s'."), filemask
);
271 if ( IsArchive(fnd
) )
273 if ( !Load(fnd
+ wxT("#zip:*.xrc")) )
276 else // a single resource URL
277 #endif // wxUSE_FILESYSTEM
279 wxXmlResourceDataRecord
*drec
= new wxXmlResourceDataRecord
;
281 Data().push_back(drec
);
286 # undef wxXmlFindFirst
287 # undef wxXmlFindNext
289 return UpdateResources();
292 bool wxXmlResource::Unload(const wxString
& filename
)
294 wxASSERT_MSG( !wxIsWild(filename
),
295 wxT("wildcards not supported by wxXmlResource::Unload()") );
297 wxString fnd
= ConvertFileNameToURL(filename
);
299 const bool isArchive
= IsArchive(fnd
);
302 #endif // wxUSE_FILESYSTEM
304 bool unloaded
= false;
305 for ( wxXmlResourceDataRecords::iterator i
= Data().begin();
306 i
!= Data().end(); ++i
)
311 if ( (*i
)->File
.StartsWith(fnd
) )
313 // don't break from the loop, we can have other matching files
315 else // a single resource URL
316 #endif // wxUSE_FILESYSTEM
318 if ( (*i
)->File
== fnd
)
324 // no sense in continuing, there is only one file with this URL
334 IMPLEMENT_ABSTRACT_CLASS(wxXmlResourceHandler
, wxObject
)
336 void wxXmlResource::AddHandler(wxXmlResourceHandler
*handler
)
338 m_handlers
.push_back(handler
);
339 handler
->SetParentResource(this);
342 void wxXmlResource::InsertHandler(wxXmlResourceHandler
*handler
)
344 m_handlers
.insert(m_handlers
.begin(), handler
);
345 handler
->SetParentResource(this);
350 void wxXmlResource::ClearHandlers()
352 for ( wxVector
<wxXmlResourceHandler
*>::iterator i
= m_handlers
.begin();
353 i
!= m_handlers
.end(); ++i
)
359 wxMenu
*wxXmlResource::LoadMenu(const wxString
& name
)
361 return (wxMenu
*)CreateResFromNode(FindResource(name
, wxT("wxMenu")), NULL
, NULL
);
366 wxMenuBar
*wxXmlResource::LoadMenuBar(wxWindow
*parent
, const wxString
& name
)
368 return (wxMenuBar
*)CreateResFromNode(FindResource(name
, wxT("wxMenuBar")), parent
, NULL
);
374 wxToolBar
*wxXmlResource::LoadToolBar(wxWindow
*parent
, const wxString
& name
)
376 return (wxToolBar
*)CreateResFromNode(FindResource(name
, wxT("wxToolBar")), parent
, NULL
);
381 wxDialog
*wxXmlResource::LoadDialog(wxWindow
*parent
, const wxString
& name
)
383 return (wxDialog
*)CreateResFromNode(FindResource(name
, wxT("wxDialog")), parent
, NULL
);
386 bool wxXmlResource::LoadDialog(wxDialog
*dlg
, wxWindow
*parent
, const wxString
& name
)
388 return CreateResFromNode(FindResource(name
, wxT("wxDialog")), parent
, dlg
) != NULL
;
393 wxPanel
*wxXmlResource::LoadPanel(wxWindow
*parent
, const wxString
& name
)
395 return (wxPanel
*)CreateResFromNode(FindResource(name
, wxT("wxPanel")), parent
, NULL
);
398 bool wxXmlResource::LoadPanel(wxPanel
*panel
, wxWindow
*parent
, const wxString
& name
)
400 return CreateResFromNode(FindResource(name
, wxT("wxPanel")), parent
, panel
) != NULL
;
403 wxFrame
*wxXmlResource::LoadFrame(wxWindow
* parent
, const wxString
& name
)
405 return (wxFrame
*)CreateResFromNode(FindResource(name
, wxT("wxFrame")), parent
, NULL
);
408 bool wxXmlResource::LoadFrame(wxFrame
* frame
, wxWindow
*parent
, const wxString
& name
)
410 return CreateResFromNode(FindResource(name
, wxT("wxFrame")), parent
, frame
) != NULL
;
413 wxBitmap
wxXmlResource::LoadBitmap(const wxString
& name
)
415 wxBitmap
*bmp
= (wxBitmap
*)CreateResFromNode(
416 FindResource(name
, wxT("wxBitmap")), NULL
, NULL
);
419 if (bmp
) { rt
= *bmp
; delete bmp
; }
423 wxIcon
wxXmlResource::LoadIcon(const wxString
& name
)
425 wxIcon
*icon
= (wxIcon
*)CreateResFromNode(
426 FindResource(name
, wxT("wxIcon")), NULL
, NULL
);
429 if (icon
) { rt
= *icon
; delete icon
; }
435 wxXmlResource::DoLoadObject(wxWindow
*parent
,
436 const wxString
& name
,
437 const wxString
& classname
,
440 wxXmlNode
* const node
= FindResource(name
, classname
, recursive
);
442 return node
? DoCreateResFromNode(*node
, parent
, NULL
) : NULL
;
446 wxXmlResource::DoLoadObject(wxObject
*instance
,
448 const wxString
& name
,
449 const wxString
& classname
,
452 wxXmlNode
* const node
= FindResource(name
, classname
, recursive
);
454 return node
&& DoCreateResFromNode(*node
, parent
, instance
) != NULL
;
458 bool wxXmlResource::AttachUnknownControl(const wxString
& name
,
459 wxWindow
*control
, wxWindow
*parent
)
462 parent
= control
->GetParent();
463 wxWindow
*container
= parent
->FindWindow(name
+ wxT("_container"));
466 wxLogError("Cannot find container for unknown control '%s'.", name
);
469 return control
->Reparent(container
);
473 static void ProcessPlatformProperty(wxXmlNode
*node
)
478 wxXmlNode
*c
= node
->GetChildren();
482 if (!c
->GetAttribute(wxT("platform"), &s
))
486 wxStringTokenizer
tkn(s
, wxT(" |"));
488 while (tkn
.HasMoreTokens())
490 s
= tkn
.GetNextToken();
492 if (s
== wxT("win")) isok
= true;
494 #if defined(__MAC__) || defined(__APPLE__)
495 if (s
== wxT("mac")) isok
= true;
496 #elif defined(__UNIX__)
497 if (s
== wxT("unix")) isok
= true;
500 if (s
== wxT("os2")) isok
= true;
510 ProcessPlatformProperty(c
);
515 wxXmlNode
*c2
= c
->GetNext();
516 node
->RemoveChild(c
);
525 bool wxXmlResource::UpdateResources()
529 # if wxUSE_FILESYSTEM
530 wxFSFile
*file
= NULL
;
535 wxString
encoding(wxT("UTF-8"));
536 #if !wxUSE_UNICODE && wxUSE_INTL
537 if ( (GetFlags() & wxXRC_USE_LOCALE
) == 0 )
539 // In case we are not using wxLocale to translate strings, convert the
540 // strings GUI's charset. This must not be done when wxXRC_USE_LOCALE
541 // is on, because it could break wxGetTranslation lookup.
542 encoding
= wxLocale::GetSystemEncodingName();
546 for ( wxXmlResourceDataRecords::iterator i
= Data().begin();
547 i
!= Data().end(); ++i
)
549 wxXmlResourceDataRecord
* const rec
= *i
;
551 modif
= (rec
->Doc
== NULL
);
553 if (!modif
&& !(m_flags
& wxXRC_NO_RELOADING
))
555 # if wxUSE_FILESYSTEM
556 file
= fsys
.OpenFile(rec
->File
);
558 modif
= file
&& file
->GetModificationTime() > rec
->Time
;
559 # else // wxUSE_DATETIME
561 # endif // wxUSE_DATETIME
564 wxLogError(_("Cannot open file '%s'."), rec
->File
);
569 # else // wxUSE_FILESYSTEM
571 modif
= wxDateTime(wxFileModificationTime(rec
->File
)) > rec
->Time
;
572 # else // wxUSE_DATETIME
574 # endif // wxUSE_DATETIME
575 # endif // wxUSE_FILESYSTEM
580 wxLogTrace(wxT("xrc"), wxT("opening file '%s'"), rec
->File
);
582 wxInputStream
*stream
= NULL
;
584 # if wxUSE_FILESYSTEM
585 file
= fsys
.OpenFile(rec
->File
);
587 stream
= file
->GetStream();
589 stream
= new wxFileInputStream(rec
->File
);
595 rec
->Doc
= new wxXmlDocument
;
597 if (!stream
|| !stream
->IsOk() || !rec
->Doc
->Load(*stream
, encoding
))
599 wxLogError(_("Cannot load resources from file '%s'."),
604 else if (rec
->Doc
->GetRoot()->GetName() != wxT("resource"))
609 "invalid XRC resource, doesn't have root node <resource>"
618 wxString verstr
= rec
->Doc
->GetRoot()->GetAttribute(
619 wxT("version"), wxT("0.0.0.0"));
620 if (wxSscanf(verstr
.c_str(), wxT("%i.%i.%i.%i"),
621 &v1
, &v2
, &v3
, &v4
) == 4)
622 version
= v1
*256*256*256+v2
*256*256+v3
*256+v4
;
627 if (m_version
!= version
)
629 wxLogError("Resource files must have same version number.");
633 ProcessPlatformProperty(rec
->Doc
->GetRoot());
636 rec
->Time
= file
->GetModificationTime();
637 #else // wxUSE_FILESYSTEM
638 rec
->Time
= wxDateTime(wxFileModificationTime(rec
->File
));
639 #endif // wxUSE_FILESYSTEM
640 #endif // wxUSE_DATETIME
643 # if wxUSE_FILESYSTEM
655 wxXmlNode
*wxXmlResource::DoFindResource(wxXmlNode
*parent
,
656 const wxString
& name
,
657 const wxString
& classname
,
658 bool recursive
) const
662 // first search for match at the top-level nodes (as this is
663 // where the resource is most commonly looked for):
664 for (node
= parent
->GetChildren(); node
; node
= node
->GetNext())
666 if ( IsObjectNode(node
) && node
->GetAttribute(wxS("name")) == name
)
668 // empty class name matches everything
669 if ( classname
.empty() )
672 wxString
cls(node
->GetAttribute(wxS("class")));
674 // object_ref may not have 'class' attribute:
675 if (cls
.empty() && node
->GetName() == wxS("object_ref"))
677 wxString refName
= node
->GetAttribute(wxS("ref"));
681 const wxXmlNode
* const refNode
= GetResourceNode(refName
);
683 cls
= refNode
->GetAttribute(wxS("class"));
686 if ( cls
== classname
)
691 // then recurse in child nodes
694 for (node
= parent
->GetChildren(); node
; node
= node
->GetNext())
696 if ( IsObjectNode(node
) )
698 wxXmlNode
* found
= DoFindResource(node
, name
, classname
, true);
708 wxXmlNode
*wxXmlResource::FindResource(const wxString
& name
,
709 const wxString
& classname
,
714 node
= GetResourceNodeAndLocation(name
, classname
, recursive
, &path
);
723 "XRC resource \"%s\" (class \"%s\") not found",
729 else // node was found
731 // ensure that relative paths work correctly when loading this node
732 // (which should happen as soon as we return as FindResource() result
733 // is always passed to CreateResFromNode())
734 m_curFileSystem
.ChangePathTo(path
);
736 #endif // wxUSE_FILESYSTEM
742 wxXmlResource::GetResourceNodeAndLocation(const wxString
& name
,
743 const wxString
& classname
,
745 wxString
*path
) const
747 // ensure everything is up-to-date: this is needed to support on-remand
748 // reloading of XRC files
749 const_cast<wxXmlResource
*>(this)->UpdateResources();
751 for ( wxXmlResourceDataRecords::const_iterator f
= Data().begin();
752 f
!= Data().end(); ++f
)
754 wxXmlResourceDataRecord
*const rec
= *f
;
755 wxXmlDocument
* const doc
= rec
->Doc
;
756 if ( !doc
|| !doc
->GetRoot() )
760 found
= DoFindResource(doc
->GetRoot(), name
, classname
, recursive
);
773 static void MergeNodesOver(wxXmlNode
& dest
, wxXmlNode
& overwriteWith
,
774 const wxString
& overwriteFilename
)
777 for ( wxXmlAttribute
*attr
= overwriteWith
.GetAttributes();
778 attr
; attr
= attr
->GetNext() )
780 wxXmlAttribute
*dattr
;
781 for (dattr
= dest
.GetAttributes(); dattr
; dattr
= dattr
->GetNext())
784 if ( dattr
->GetName() == attr
->GetName() )
786 dattr
->SetValue(attr
->GetValue());
792 dest
.AddAttribute(attr
->GetName(), attr
->GetValue());
795 // Merge child nodes:
796 for (wxXmlNode
* node
= overwriteWith
.GetChildren(); node
; node
= node
->GetNext())
798 wxString name
= node
->GetAttribute(wxT("name"), wxEmptyString
);
801 for (dnode
= dest
.GetChildren(); dnode
; dnode
= dnode
->GetNext() )
803 if ( dnode
->GetName() == node
->GetName() &&
804 dnode
->GetAttribute(wxT("name"), wxEmptyString
) == name
&&
805 dnode
->GetType() == node
->GetType() )
807 MergeNodesOver(*dnode
, *node
, overwriteFilename
);
814 wxXmlNode
*copyOfNode
= new wxXmlNode(*node
);
815 // remember referenced object's file, see GetFileNameFromNode()
816 copyOfNode
->AddAttribute(ATTR_INPUT_FILENAME
, overwriteFilename
);
818 static const wxChar
*AT_END
= wxT("end");
819 wxString insert_pos
= node
->GetAttribute(wxT("insert_at"), AT_END
);
820 if ( insert_pos
== AT_END
)
822 dest
.AddChild(copyOfNode
);
824 else if ( insert_pos
== wxT("begin") )
826 dest
.InsertChild(copyOfNode
, dest
.GetChildren());
831 if ( dest
.GetType() == wxXML_TEXT_NODE
&& overwriteWith
.GetContent().length() )
832 dest
.SetContent(overwriteWith
.GetContent());
836 wxXmlResource::DoCreateResFromNode(wxXmlNode
& node
,
839 wxXmlResourceHandler
*handlerToUse
)
841 // handling of referenced resource
842 if ( node
.GetName() == wxT("object_ref") )
844 wxString refName
= node
.GetAttribute(wxT("ref"), wxEmptyString
);
845 wxXmlNode
* refNode
= FindResource(refName
, wxEmptyString
, true);
854 "referenced object node with ref=\"%s\" not found",
861 if ( !node
.GetChildren() )
863 // In the typical, simple case, <object_ref> is used to link
864 // to another node and doesn't have any content of its own that
865 // would overwrite linked object's properties. In this case,
866 // we can simply create the resource from linked node.
868 return DoCreateResFromNode(*refNode
, parent
, instance
);
872 // In the more complicated (but rare) case, <object_ref> has
873 // subnodes that partially overwrite content of the referenced
874 // object. In this case, we need to merge both XML trees and
875 // load the resource from result of the merge.
877 wxXmlNode
copy(*refNode
);
878 MergeNodesOver(copy
, node
, GetFileNameFromNode(&node
, Data()));
880 // remember referenced object's file, see GetFileNameFromNode()
881 copy
.AddAttribute(ATTR_INPUT_FILENAME
,
882 GetFileNameFromNode(refNode
, Data()));
884 return DoCreateResFromNode(copy
, parent
, instance
);
890 if (handlerToUse
->CanHandle(&node
))
892 return handlerToUse
->CreateResource(&node
, parent
, instance
);
895 else if (node
.GetName() == wxT("object"))
897 for ( wxVector
<wxXmlResourceHandler
*>::iterator h
= m_handlers
.begin();
898 h
!= m_handlers
.end(); ++h
)
900 wxXmlResourceHandler
*handler
= *h
;
901 if (handler
->CanHandle(&node
))
902 return handler
->CreateResource(&node
, parent
, instance
);
911 "no handler found for XML node \"%s\" (class \"%s\")",
913 node
.GetAttribute("class", wxEmptyString
)
920 class wxXmlSubclassFactories
: public wxVector
<wxXmlSubclassFactory
*>
922 // this is a class so that it can be forward-declared
925 wxXmlSubclassFactories
*wxXmlResource::ms_subclassFactories
= NULL
;
927 /*static*/ void wxXmlResource::AddSubclassFactory(wxXmlSubclassFactory
*factory
)
929 if (!ms_subclassFactories
)
931 ms_subclassFactories
= new wxXmlSubclassFactories
;
933 ms_subclassFactories
->push_back(factory
);
936 class wxXmlSubclassFactoryCXX
: public wxXmlSubclassFactory
939 ~wxXmlSubclassFactoryCXX() {}
941 wxObject
*Create(const wxString
& className
)
943 wxClassInfo
* classInfo
= wxClassInfo::FindClass(className
);
946 return classInfo
->CreateObject();
955 wxXmlResourceHandler::wxXmlResourceHandler()
956 : m_node(NULL
), m_parent(NULL
), m_instance(NULL
),
957 m_parentAsWindow(NULL
)
962 wxObject
*wxXmlResourceHandler::CreateResource(wxXmlNode
*node
, wxObject
*parent
, wxObject
*instance
)
964 wxXmlNode
*myNode
= m_node
;
965 wxString myClass
= m_class
;
966 wxObject
*myParent
= m_parent
, *myInstance
= m_instance
;
967 wxWindow
*myParentAW
= m_parentAsWindow
;
969 m_instance
= instance
;
970 if (!m_instance
&& node
->HasAttribute(wxT("subclass")) &&
971 !(m_resource
->GetFlags() & wxXRC_NO_SUBCLASSING
))
973 wxString subclass
= node
->GetAttribute(wxT("subclass"), wxEmptyString
);
974 if (!subclass
.empty())
976 for (wxXmlSubclassFactories::iterator i
= wxXmlResource::ms_subclassFactories
->begin();
977 i
!= wxXmlResource::ms_subclassFactories
->end(); ++i
)
979 m_instance
= (*i
)->Create(subclass
);
986 wxString name
= node
->GetAttribute(wxT("name"), wxEmptyString
);
992 "subclass \"%s\" not found for resource \"%s\", not subclassing",
1001 m_class
= node
->GetAttribute(wxT("class"), wxEmptyString
);
1003 m_parentAsWindow
= wxDynamicCast(m_parent
, wxWindow
);
1005 wxObject
*returned
= DoCreateResource();
1009 m_parent
= myParent
; m_parentAsWindow
= myParentAW
;
1010 m_instance
= myInstance
;
1016 void wxXmlResourceHandler::AddStyle(const wxString
& name
, int value
)
1018 m_styleNames
.Add(name
);
1019 m_styleValues
.Add(value
);
1024 void wxXmlResourceHandler::AddWindowStyles()
1026 XRC_ADD_STYLE(wxCLIP_CHILDREN
);
1028 // the border styles all have the old and new names, recognize both for now
1029 XRC_ADD_STYLE(wxSIMPLE_BORDER
); XRC_ADD_STYLE(wxBORDER_SIMPLE
);
1030 XRC_ADD_STYLE(wxSUNKEN_BORDER
); XRC_ADD_STYLE(wxBORDER_SUNKEN
);
1031 XRC_ADD_STYLE(wxDOUBLE_BORDER
); XRC_ADD_STYLE(wxBORDER_DOUBLE
); // deprecated
1032 XRC_ADD_STYLE(wxBORDER_THEME
);
1033 XRC_ADD_STYLE(wxRAISED_BORDER
); XRC_ADD_STYLE(wxBORDER_RAISED
);
1034 XRC_ADD_STYLE(wxSTATIC_BORDER
); XRC_ADD_STYLE(wxBORDER_STATIC
);
1035 XRC_ADD_STYLE(wxNO_BORDER
); XRC_ADD_STYLE(wxBORDER_NONE
);
1037 XRC_ADD_STYLE(wxTRANSPARENT_WINDOW
);
1038 XRC_ADD_STYLE(wxWANTS_CHARS
);
1039 XRC_ADD_STYLE(wxTAB_TRAVERSAL
);
1040 XRC_ADD_STYLE(wxNO_FULL_REPAINT_ON_RESIZE
);
1041 XRC_ADD_STYLE(wxFULL_REPAINT_ON_RESIZE
);
1042 XRC_ADD_STYLE(wxALWAYS_SHOW_SB
);
1043 XRC_ADD_STYLE(wxWS_EX_BLOCK_EVENTS
);
1044 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY
);
1049 bool wxXmlResourceHandler::HasParam(const wxString
& param
)
1051 return (GetParamNode(param
) != NULL
);
1055 int wxXmlResourceHandler::GetStyle(const wxString
& param
, int defaults
)
1057 wxString s
= GetParamValue(param
);
1059 if (!s
) return defaults
;
1061 wxStringTokenizer
tkn(s
, wxT("| \t\n"), wxTOKEN_STRTOK
);
1065 while (tkn
.HasMoreTokens())
1067 fl
= tkn
.GetNextToken();
1068 index
= m_styleNames
.Index(fl
);
1069 if (index
!= wxNOT_FOUND
)
1071 style
|= m_styleValues
[index
];
1078 wxString::Format("unknown style flag \"%s\"", fl
)
1087 wxString
wxXmlResourceHandler::GetText(const wxString
& param
, bool translate
)
1089 wxXmlNode
*parNode
= GetParamNode(param
);
1090 wxString
str1(GetNodeContent(parNode
));
1093 // "\\" wasn't translated to "\" prior to 2.5.3.0:
1094 const bool escapeBackslash
= (m_resource
->CompareVersion(2,5,3,0) >= 0);
1096 // VS: First version of XRC resources used $ instead of & (which is
1097 // illegal in XML), but later I realized that '_' fits this purpose
1098 // much better (because &File means "File with F underlined").
1099 const wxChar amp_char
= (m_resource
->CompareVersion(2,3,0,1) < 0)
1102 for ( wxString::const_iterator dt
= str1
.begin(); dt
!= str1
.end(); ++dt
)
1104 // Remap amp_char to &, map double amp_char to amp_char (for things
1105 // like "&File..." -- this is illegal in XML, so we use "_File..."):
1106 if ( *dt
== amp_char
)
1108 if ( *(++dt
) == amp_char
)
1111 str2
<< wxT('&') << *dt
;
1113 // Remap \n to CR, \r to LF, \t to TAB, \\ to \:
1114 else if ( *dt
== wxT('\\') )
1116 switch ( (*(++dt
)).GetValue() )
1131 // "\\" wasn't translated to "\" prior to 2.5.3.0:
1132 if ( escapeBackslash
)
1137 // else fall-through to default: branch below
1140 str2
<< wxT('\\') << *dt
;
1150 if (m_resource
->GetFlags() & wxXRC_USE_LOCALE
)
1152 if (translate
&& parNode
&&
1153 parNode
->GetAttribute(wxT("translate"), wxEmptyString
) != wxT("0"))
1155 return wxGetTranslation(str2
, m_resource
->GetDomain());
1162 // The string is internally stored as UTF-8, we have to convert
1163 // it into system's default encoding so that it can be displayed:
1164 return wxString(str2
.wc_str(wxConvUTF8
), wxConvLocal
);
1169 // If wxXRC_USE_LOCALE is not set, then the string is already in
1170 // system's default encoding in ANSI build, so we don't have to
1171 // do anything special here.
1177 long wxXmlResourceHandler::GetLong(const wxString
& param
, long defaultv
)
1180 wxString str1
= GetParamValue(param
);
1182 if (!str1
.ToLong(&value
))
1188 float wxXmlResourceHandler::GetFloat(const wxString
& param
, float defaultv
)
1190 wxString str
= GetParamValue(param
);
1192 // strings in XRC always use C locale so make sure to use the
1193 // locale-independent wxString::ToCDouble() and not ToDouble() which uses
1194 // the current locale with a potentially different decimal point character
1196 if (!str
.ToCDouble(&value
))
1199 return wx_truncate_cast(float, value
);
1203 int wxXmlResourceHandler::GetID()
1205 return wxXmlResource::GetXRCID(GetName());
1210 wxString
wxXmlResourceHandler::GetName()
1212 return m_node
->GetAttribute(wxT("name"), wxT("-1"));
1217 bool wxXmlResourceHandler::GetBoolAttr(const wxString
& attr
, bool defaultv
)
1220 return m_node
->GetAttribute(attr
, &v
) ? v
== '1' : defaultv
;
1223 bool wxXmlResourceHandler::GetBool(const wxString
& param
, bool defaultv
)
1225 const wxString v
= GetParamValue(param
);
1227 return v
.empty() ? defaultv
: (v
== '1');
1231 static wxColour
GetSystemColour(const wxString
& name
)
1235 #define SYSCLR(clr) \
1236 if (name == wxT(#clr)) return wxSystemSettings::GetColour(clr);
1237 SYSCLR(wxSYS_COLOUR_SCROLLBAR
)
1238 SYSCLR(wxSYS_COLOUR_BACKGROUND
)
1239 SYSCLR(wxSYS_COLOUR_DESKTOP
)
1240 SYSCLR(wxSYS_COLOUR_ACTIVECAPTION
)
1241 SYSCLR(wxSYS_COLOUR_INACTIVECAPTION
)
1242 SYSCLR(wxSYS_COLOUR_MENU
)
1243 SYSCLR(wxSYS_COLOUR_WINDOW
)
1244 SYSCLR(wxSYS_COLOUR_WINDOWFRAME
)
1245 SYSCLR(wxSYS_COLOUR_MENUTEXT
)
1246 SYSCLR(wxSYS_COLOUR_WINDOWTEXT
)
1247 SYSCLR(wxSYS_COLOUR_CAPTIONTEXT
)
1248 SYSCLR(wxSYS_COLOUR_ACTIVEBORDER
)
1249 SYSCLR(wxSYS_COLOUR_INACTIVEBORDER
)
1250 SYSCLR(wxSYS_COLOUR_APPWORKSPACE
)
1251 SYSCLR(wxSYS_COLOUR_HIGHLIGHT
)
1252 SYSCLR(wxSYS_COLOUR_HIGHLIGHTTEXT
)
1253 SYSCLR(wxSYS_COLOUR_BTNFACE
)
1254 SYSCLR(wxSYS_COLOUR_3DFACE
)
1255 SYSCLR(wxSYS_COLOUR_BTNSHADOW
)
1256 SYSCLR(wxSYS_COLOUR_3DSHADOW
)
1257 SYSCLR(wxSYS_COLOUR_GRAYTEXT
)
1258 SYSCLR(wxSYS_COLOUR_BTNTEXT
)
1259 SYSCLR(wxSYS_COLOUR_INACTIVECAPTIONTEXT
)
1260 SYSCLR(wxSYS_COLOUR_BTNHIGHLIGHT
)
1261 SYSCLR(wxSYS_COLOUR_BTNHILIGHT
)
1262 SYSCLR(wxSYS_COLOUR_3DHIGHLIGHT
)
1263 SYSCLR(wxSYS_COLOUR_3DHILIGHT
)
1264 SYSCLR(wxSYS_COLOUR_3DDKSHADOW
)
1265 SYSCLR(wxSYS_COLOUR_3DLIGHT
)
1266 SYSCLR(wxSYS_COLOUR_INFOTEXT
)
1267 SYSCLR(wxSYS_COLOUR_INFOBK
)
1268 SYSCLR(wxSYS_COLOUR_LISTBOX
)
1269 SYSCLR(wxSYS_COLOUR_HOTLIGHT
)
1270 SYSCLR(wxSYS_COLOUR_GRADIENTACTIVECAPTION
)
1271 SYSCLR(wxSYS_COLOUR_GRADIENTINACTIVECAPTION
)
1272 SYSCLR(wxSYS_COLOUR_MENUHILIGHT
)
1273 SYSCLR(wxSYS_COLOUR_MENUBAR
)
1277 return wxNullColour
;
1280 wxColour
wxXmlResourceHandler::GetColour(const wxString
& param
, const wxColour
& defaultv
)
1282 wxString v
= GetParamValue(param
);
1289 // wxString -> wxColour conversion
1292 // the colour doesn't use #RRGGBB format, check if it is symbolic
1294 clr
= GetSystemColour(v
);
1301 wxString::Format("incorrect colour specification \"%s\"", v
)
1303 return wxNullColour
;
1312 // if 'param' has stock_id/stock_client, extracts them and returns true
1313 bool GetStockArtAttrs(const wxXmlNode
*paramNode
,
1314 const wxString
& defaultArtClient
,
1315 wxString
& art_id
, wxString
& art_client
)
1319 art_id
= paramNode
->GetAttribute("stock_id", "");
1321 if ( !art_id
.empty() )
1323 art_id
= wxART_MAKE_ART_ID_FROM_STR(art_id
);
1325 art_client
= paramNode
->GetAttribute("stock_client", "");
1326 if ( art_client
.empty() )
1327 art_client
= defaultArtClient
;
1329 art_client
= wxART_MAKE_CLIENT_ID_FROM_STR(art_client
);
1338 } // anonymous namespace
1340 wxBitmap
wxXmlResourceHandler::GetBitmap(const wxString
& param
,
1341 const wxArtClient
& defaultArtClient
,
1344 // it used to be possible to pass an empty string here to indicate that the
1345 // bitmap name should be read from this node itself but this is not
1346 // supported any more because GetBitmap(m_node) can be used directly
1348 wxASSERT_MSG( !param
.empty(), "bitmap parameter name can't be empty" );
1350 const wxXmlNode
* const node
= GetParamNode(param
);
1354 // this is not an error as bitmap parameter could be optional
1355 return wxNullBitmap
;
1358 return GetBitmap(node
, defaultArtClient
, size
);
1361 wxBitmap
wxXmlResourceHandler::GetBitmap(const wxXmlNode
* node
,
1362 const wxArtClient
& defaultArtClient
,
1365 wxCHECK_MSG( node
, wxNullBitmap
, "bitmap node can't be NULL" );
1367 /* If the bitmap is specified as stock item, query wxArtProvider for it: */
1368 wxString art_id
, art_client
;
1369 if ( GetStockArtAttrs(node
, defaultArtClient
,
1370 art_id
, art_client
) )
1372 wxBitmap
stockArt(wxArtProvider::GetBitmap(art_id
, art_client
, size
));
1373 if ( stockArt
.Ok() )
1377 /* ...or load the bitmap from file: */
1378 wxString name
= GetParamValue(node
);
1379 if (name
.empty()) return wxNullBitmap
;
1380 #if wxUSE_FILESYSTEM
1381 wxFSFile
*fsfile
= GetCurFileSystem().OpenFile(name
, wxFS_READ
| wxFS_SEEKABLE
);
1387 wxString::Format("cannot open bitmap resource \"%s\"", name
)
1389 return wxNullBitmap
;
1391 wxImage
img(*(fsfile
->GetStream()));
1402 wxString::Format("cannot create bitmap from \"%s\"", name
)
1404 return wxNullBitmap
;
1406 if (!(size
== wxDefaultSize
)) img
.Rescale(size
.x
, size
.y
);
1407 return wxBitmap(img
);
1411 wxIcon
wxXmlResourceHandler::GetIcon(const wxString
& param
,
1412 const wxArtClient
& defaultArtClient
,
1415 // see comment in GetBitmap(wxString) overload
1416 wxASSERT_MSG( !param
.empty(), "icon parameter name can't be empty" );
1418 const wxXmlNode
* const node
= GetParamNode(param
);
1422 // this is not an error as icon parameter could be optional
1426 return GetIcon(node
, defaultArtClient
, size
);
1429 wxIcon
wxXmlResourceHandler::GetIcon(const wxXmlNode
* node
,
1430 const wxArtClient
& defaultArtClient
,
1434 icon
.CopyFromBitmap(GetBitmap(node
, defaultArtClient
, size
));
1439 wxIconBundle
wxXmlResourceHandler::GetIconBundle(const wxString
& param
,
1440 const wxArtClient
& defaultArtClient
)
1442 wxString art_id
, art_client
;
1443 if ( GetStockArtAttrs(GetParamNode(param
), defaultArtClient
,
1444 art_id
, art_client
) )
1446 wxIconBundle
stockArt(wxArtProvider::GetIconBundle(art_id
, art_client
));
1447 if ( stockArt
.IsOk() )
1451 const wxString name
= GetParamValue(param
);
1453 return wxNullIconBundle
;
1455 #if wxUSE_FILESYSTEM
1456 wxFSFile
*fsfile
= GetCurFileSystem().OpenFile(name
, wxFS_READ
| wxFS_SEEKABLE
);
1457 if ( fsfile
== NULL
)
1462 wxString::Format("cannot open icon resource \"%s\"", name
)
1464 return wxNullIconBundle
;
1467 wxIconBundle
bundle(*(fsfile
->GetStream()));
1470 wxIconBundle
bundle(name
);
1473 if ( !bundle
.IsOk() )
1478 wxString::Format("cannot create icon from \"%s\"", name
)
1480 return wxNullIconBundle
;
1487 wxImageList
*wxXmlResourceHandler::GetImageList(const wxString
& param
)
1489 wxXmlNode
* const imagelist_node
= GetParamNode(param
);
1490 if ( !imagelist_node
)
1493 wxXmlNode
* const oldnode
= m_node
;
1494 m_node
= imagelist_node
;
1497 wxSize size
= GetSize();
1498 size
.SetDefaults(wxSize(wxSystemSettings::GetMetric(wxSYS_ICON_X
),
1499 wxSystemSettings::GetMetric(wxSYS_ICON_Y
)));
1501 // mask: true by default
1502 bool mask
= HasParam(wxT("mask")) ? GetBool(wxT("mask"), true) : true;
1504 // now we have everything we need to create the image list
1505 wxImageList
*imagelist
= new wxImageList(size
.x
, size
.y
, mask
);
1508 wxString parambitmap
= wxT("bitmap");
1509 if ( HasParam(parambitmap
) )
1511 wxXmlNode
*n
= m_node
->GetChildren();
1514 if (n
->GetType() == wxXML_ELEMENT_NODE
&& n
->GetName() == parambitmap
)
1516 // add icon instead of bitmap to keep the bitmap mask
1517 imagelist
->Add(GetIcon(n
));
1527 wxXmlNode
*wxXmlResourceHandler::GetParamNode(const wxString
& param
)
1529 wxCHECK_MSG(m_node
, NULL
, wxT("You can't access handler data before it was initialized!"));
1531 wxXmlNode
*n
= m_node
->GetChildren();
1535 if (n
->GetType() == wxXML_ELEMENT_NODE
&& n
->GetName() == param
)
1537 // TODO: check that there are no other properties/parameters with
1538 // the same name and log an error if there are (can't do this
1539 // right now as I'm not sure if it's not going to break code
1540 // using this function in unintentional way (i.e. for
1541 // accessing other things than properties), for example
1542 // wxBitmapComboBoxXmlHandler almost surely does
1550 bool wxXmlResourceHandler::IsOfClass(wxXmlNode
*node
, const wxString
& classname
)
1552 return node
->GetAttribute(wxT("class"), wxEmptyString
) == classname
;
1557 wxString
wxXmlResourceHandler::GetNodeContent(const wxXmlNode
*node
)
1559 const wxXmlNode
*n
= node
;
1560 if (n
== NULL
) return wxEmptyString
;
1561 n
= n
->GetChildren();
1565 if (n
->GetType() == wxXML_TEXT_NODE
||
1566 n
->GetType() == wxXML_CDATA_SECTION_NODE
)
1567 return n
->GetContent();
1570 return wxEmptyString
;
1575 wxString
wxXmlResourceHandler::GetParamValue(const wxString
& param
)
1578 return GetNodeContent(m_node
);
1580 return GetNodeContent(GetParamNode(param
));
1583 wxString
wxXmlResourceHandler::GetParamValue(const wxXmlNode
* node
)
1585 return GetNodeContent(node
);
1589 wxSize
wxXmlResourceHandler::GetSize(const wxString
& param
,
1590 wxWindow
*windowToUse
)
1592 wxString s
= GetParamValue(param
);
1593 if (s
.empty()) s
= wxT("-1,-1");
1597 is_dlg
= s
[s
.length()-1] == wxT('d');
1598 if (is_dlg
) s
.RemoveLast();
1600 if (!s
.BeforeFirst(wxT(',')).ToLong(&sx
) ||
1601 !s
.AfterLast(wxT(',')).ToLong(&sy
))
1606 wxString::Format("cannot parse coordinates value \"%s\"", s
)
1608 return wxDefaultSize
;
1615 return wxDLG_UNIT(windowToUse
, wxSize(sx
, sy
));
1617 else if (m_parentAsWindow
)
1619 return wxDLG_UNIT(m_parentAsWindow
, wxSize(sx
, sy
));
1626 "cannot convert dialog units: dialog unknown"
1628 return wxDefaultSize
;
1632 return wxSize(sx
, sy
);
1637 wxPoint
wxXmlResourceHandler::GetPosition(const wxString
& param
)
1639 wxSize sz
= GetSize(param
);
1640 return wxPoint(sz
.x
, sz
.y
);
1645 wxCoord
wxXmlResourceHandler::GetDimension(const wxString
& param
,
1647 wxWindow
*windowToUse
)
1649 wxString s
= GetParamValue(param
);
1650 if (s
.empty()) return defaultv
;
1654 is_dlg
= s
[s
.length()-1] == wxT('d');
1655 if (is_dlg
) s
.RemoveLast();
1662 wxString::Format("cannot parse dimension value \"%s\"", s
)
1671 return wxDLG_UNIT(windowToUse
, wxSize(sx
, 0)).x
;
1673 else if (m_parentAsWindow
)
1675 return wxDLG_UNIT(m_parentAsWindow
, wxSize(sx
, 0)).x
;
1682 "cannot convert dialog units: dialog unknown"
1692 // Get system font index using indexname
1693 static wxFont
GetSystemFont(const wxString
& name
)
1697 #define SYSFNT(fnt) \
1698 if (name == wxT(#fnt)) return wxSystemSettings::GetFont(fnt);
1699 SYSFNT(wxSYS_OEM_FIXED_FONT
)
1700 SYSFNT(wxSYS_ANSI_FIXED_FONT
)
1701 SYSFNT(wxSYS_ANSI_VAR_FONT
)
1702 SYSFNT(wxSYS_SYSTEM_FONT
)
1703 SYSFNT(wxSYS_DEVICE_DEFAULT_FONT
)
1704 SYSFNT(wxSYS_SYSTEM_FIXED_FONT
)
1705 SYSFNT(wxSYS_DEFAULT_GUI_FONT
)
1712 wxFont
wxXmlResourceHandler::GetFont(const wxString
& param
)
1714 wxXmlNode
*font_node
= GetParamNode(param
);
1715 if (font_node
== NULL
)
1718 wxString::Format("cannot find font node \"%s\"", param
));
1722 wxXmlNode
*oldnode
= m_node
;
1729 bool hasSize
= HasParam(wxT("size"));
1731 isize
= GetLong(wxT("size"), -1);
1734 int istyle
= wxNORMAL
;
1735 bool hasStyle
= HasParam(wxT("style"));
1738 wxString style
= GetParamValue(wxT("style"));
1739 if (style
== wxT("italic"))
1741 else if (style
== wxT("slant"))
1746 int iweight
= wxNORMAL
;
1747 bool hasWeight
= HasParam(wxT("weight"));
1750 wxString weight
= GetParamValue(wxT("weight"));
1751 if (weight
== wxT("bold"))
1753 else if (weight
== wxT("light"))
1758 bool hasUnderlined
= HasParam(wxT("underlined"));
1759 bool underlined
= hasUnderlined
? GetBool(wxT("underlined"), false) : false;
1761 // family and facename
1762 int ifamily
= wxDEFAULT
;
1763 bool hasFamily
= HasParam(wxT("family"));
1766 wxString family
= GetParamValue(wxT("family"));
1767 if (family
== wxT("decorative")) ifamily
= wxDECORATIVE
;
1768 else if (family
== wxT("roman")) ifamily
= wxROMAN
;
1769 else if (family
== wxT("script")) ifamily
= wxSCRIPT
;
1770 else if (family
== wxT("swiss")) ifamily
= wxSWISS
;
1771 else if (family
== wxT("modern")) ifamily
= wxMODERN
;
1772 else if (family
== wxT("teletype")) ifamily
= wxTELETYPE
;
1777 bool hasFacename
= HasParam(wxT("face"));
1780 wxString faces
= GetParamValue(wxT("face"));
1781 wxStringTokenizer
tk(faces
, wxT(","));
1783 wxArrayString
facenames(wxFontEnumerator::GetFacenames());
1784 while (tk
.HasMoreTokens())
1786 int index
= facenames
.Index(tk
.GetNextToken(), false);
1787 if (index
!= wxNOT_FOUND
)
1789 facename
= facenames
[index
];
1793 #else // !wxUSE_FONTENUM
1794 // just use the first face name if we can't check its availability:
1795 if (tk
.HasMoreTokens())
1796 facename
= tk
.GetNextToken();
1797 #endif // wxUSE_FONTENUM/!wxUSE_FONTENUM
1801 wxFontEncoding enc
= wxFONTENCODING_DEFAULT
;
1802 bool hasEncoding
= HasParam(wxT("encoding"));
1806 wxString encoding
= GetParamValue(wxT("encoding"));
1807 wxFontMapper mapper
;
1808 if (!encoding
.empty())
1809 enc
= mapper
.CharsetToEncoding(encoding
);
1810 if (enc
== wxFONTENCODING_SYSTEM
)
1811 enc
= wxFONTENCODING_DEFAULT
;
1813 #endif // wxUSE_FONTMAP
1815 // is this font based on a system font?
1816 wxFont font
= GetSystemFont(GetParamValue(wxT("sysfont")));
1820 if (hasSize
&& isize
!= -1)
1821 font
.SetPointSize(isize
);
1822 else if (HasParam(wxT("relativesize")))
1823 font
.SetPointSize(int(font
.GetPointSize() *
1824 GetFloat(wxT("relativesize"))));
1827 font
.SetStyle(istyle
);
1829 font
.SetWeight(iweight
);
1831 font
.SetUnderlined(underlined
);
1833 font
.SetFamily(ifamily
);
1835 font
.SetFaceName(facename
);
1837 font
.SetDefaultEncoding(enc
);
1839 else // not based on system font
1841 font
= wxFont(isize
== -1 ? wxNORMAL_FONT
->GetPointSize() : isize
,
1842 ifamily
, istyle
, iweight
,
1843 underlined
, facename
, enc
);
1851 void wxXmlResourceHandler::SetupWindow(wxWindow
*wnd
)
1853 //FIXME : add cursor
1855 if (HasParam(wxT("exstyle")))
1856 // Have to OR it with existing style, since
1857 // some implementations (e.g. wxGTK) use the extra style
1859 wnd
->SetExtraStyle(wnd
->GetExtraStyle() | GetStyle(wxT("exstyle")));
1860 if (HasParam(wxT("bg")))
1861 wnd
->SetBackgroundColour(GetColour(wxT("bg")));
1862 if (HasParam(wxT("ownbg")))
1863 wnd
->SetOwnBackgroundColour(GetColour(wxT("ownbg")));
1864 if (HasParam(wxT("fg")))
1865 wnd
->SetForegroundColour(GetColour(wxT("fg")));
1866 if (HasParam(wxT("ownfg")))
1867 wnd
->SetOwnForegroundColour(GetColour(wxT("ownfg")));
1868 if (GetBool(wxT("enabled"), 1) == 0)
1870 if (GetBool(wxT("focused"), 0) == 1)
1872 if (GetBool(wxT("hidden"), 0) == 1)
1875 if (HasParam(wxT("tooltip")))
1876 wnd
->SetToolTip(GetText(wxT("tooltip")));
1878 if (HasParam(wxT("font")))
1879 wnd
->SetFont(GetFont(wxT("font")));
1880 if (HasParam(wxT("ownfont")))
1881 wnd
->SetOwnFont(GetFont(wxT("ownfont")));
1882 if (HasParam(wxT("help")))
1883 wnd
->SetHelpText(GetText(wxT("help")));
1887 void wxXmlResourceHandler::CreateChildren(wxObject
*parent
, bool this_hnd_only
)
1889 for ( wxXmlNode
*n
= m_node
->GetChildren(); n
; n
= n
->GetNext() )
1891 if ( IsObjectNode(n
) )
1893 m_resource
->DoCreateResFromNode(*n
, parent
, NULL
,
1894 this_hnd_only
? this : NULL
);
1900 void wxXmlResourceHandler::CreateChildrenPrivately(wxObject
*parent
, wxXmlNode
*rootnode
)
1903 if (rootnode
== NULL
) root
= m_node
; else root
= rootnode
;
1904 wxXmlNode
*n
= root
->GetChildren();
1908 if (n
->GetType() == wxXML_ELEMENT_NODE
&& CanHandle(n
))
1910 CreateResource(n
, parent
, NULL
);
1917 //-----------------------------------------------------------------------------
1919 //-----------------------------------------------------------------------------
1921 void wxXmlResourceHandler::ReportError(const wxString
& message
)
1923 m_resource
->ReportError(m_node
, message
);
1926 void wxXmlResourceHandler::ReportError(wxXmlNode
*context
,
1927 const wxString
& message
)
1929 m_resource
->ReportError(context
? context
: m_node
, message
);
1932 void wxXmlResourceHandler::ReportParamError(const wxString
& param
,
1933 const wxString
& message
)
1935 m_resource
->ReportError(GetParamNode(param
), message
);
1938 void wxXmlResource::ReportError(wxXmlNode
*context
, const wxString
& message
)
1942 DoReportError("", NULL
, message
);
1946 // We need to find out the file that 'context' is part of. Performance of
1947 // this code is not critical, so we simply find the root XML node and
1948 // compare it with all loaded XRC files.
1949 const wxString filename
= GetFileNameFromNode(context
, Data());
1951 DoReportError(filename
, context
, message
);
1954 void wxXmlResource::DoReportError(const wxString
& xrcFile
, wxXmlNode
*position
,
1955 const wxString
& message
)
1957 const int line
= position
? position
->GetLineNumber() : -1;
1960 if ( !xrcFile
.empty() )
1961 loc
= xrcFile
+ ':';
1963 loc
+= wxString::Format("%d:", line
);
1967 wxLogError("XRC error: %s%s", loc
, message
);
1971 //-----------------------------------------------------------------------------
1972 // XRCID implementation
1973 //-----------------------------------------------------------------------------
1975 #define XRCID_TABLE_SIZE 1024
1980 /* Hold the id so that once an id is allocated for a name, it
1981 does not get created again by NewControlId at least
1982 until we are done with it */
1988 static XRCID_record
*XRCID_Records
[XRCID_TABLE_SIZE
] = {NULL
};
1990 static int XRCID_Lookup(const char *str_id
, int value_if_not_found
= wxID_NONE
)
1992 unsigned int index
= 0;
1994 for (const char *c
= str_id
; *c
!= '\0'; c
++) index
+= (unsigned int)*c
;
1995 index
%= XRCID_TABLE_SIZE
;
1997 XRCID_record
*oldrec
= NULL
;
1998 for (XRCID_record
*rec
= XRCID_Records
[index
]; rec
; rec
= rec
->next
)
2000 if (wxStrcmp(rec
->key
, str_id
) == 0)
2007 XRCID_record
**rec_var
= (oldrec
== NULL
) ?
2008 &XRCID_Records
[index
] : &oldrec
->next
;
2009 *rec_var
= new XRCID_record
;
2010 (*rec_var
)->key
= wxStrdup(str_id
);
2011 (*rec_var
)->next
= NULL
;
2014 if (value_if_not_found
!= wxID_NONE
)
2015 (*rec_var
)->id
= value_if_not_found
;
2018 int asint
= wxStrtol(str_id
, &end
, 10);
2019 if (*str_id
&& *end
== 0)
2021 // if str_id was integer, keep it verbosely:
2022 (*rec_var
)->id
= asint
;
2026 (*rec_var
)->id
= wxWindowBase::NewControlId();
2030 return (*rec_var
)->id
;
2036 // flag indicating whether standard XRC ids were already initialized
2037 static bool gs_stdIDsAdded
= false;
2039 void AddStdXRCID_Records()
2041 #define stdID(id) XRCID_Lookup(#id, id)
2045 stdID(wxID_SEPARATOR
);
2058 stdID(wxID_PRINT_SETUP
);
2059 stdID(wxID_PAGE_SETUP
);
2060 stdID(wxID_PREVIEW
);
2062 stdID(wxID_HELP_CONTENTS
);
2063 stdID(wxID_HELP_COMMANDS
);
2064 stdID(wxID_HELP_PROCEDURES
);
2065 stdID(wxID_HELP_CONTEXT
);
2066 stdID(wxID_CLOSE_ALL
);
2067 stdID(wxID_PREFERENCES
);
2074 stdID(wxID_DUPLICATE
);
2075 stdID(wxID_SELECTALL
);
2077 stdID(wxID_REPLACE
);
2078 stdID(wxID_REPLACE_ALL
);
2079 stdID(wxID_PROPERTIES
);
2080 stdID(wxID_VIEW_DETAILS
);
2081 stdID(wxID_VIEW_LARGEICONS
);
2082 stdID(wxID_VIEW_SMALLICONS
);
2083 stdID(wxID_VIEW_LIST
);
2084 stdID(wxID_VIEW_SORTDATE
);
2085 stdID(wxID_VIEW_SORTNAME
);
2086 stdID(wxID_VIEW_SORTSIZE
);
2087 stdID(wxID_VIEW_SORTTYPE
);
2103 stdID(wxID_FORWARD
);
2104 stdID(wxID_BACKWARD
);
2105 stdID(wxID_DEFAULT
);
2109 stdID(wxID_CONTEXT_HELP
);
2110 stdID(wxID_YESTOALL
);
2111 stdID(wxID_NOTOALL
);
2120 stdID(wxID_REFRESH
);
2125 stdID(wxID_JUSTIFY_CENTER
);
2126 stdID(wxID_JUSTIFY_FILL
);
2127 stdID(wxID_JUSTIFY_RIGHT
);
2128 stdID(wxID_JUSTIFY_LEFT
);
2129 stdID(wxID_UNDERLINE
);
2131 stdID(wxID_UNINDENT
);
2132 stdID(wxID_ZOOM_100
);
2133 stdID(wxID_ZOOM_FIT
);
2134 stdID(wxID_ZOOM_IN
);
2135 stdID(wxID_ZOOM_OUT
);
2136 stdID(wxID_UNDELETE
);
2137 stdID(wxID_REVERT_TO_SAVED
);
2138 stdID(wxID_SYSTEM_MENU
);
2139 stdID(wxID_CLOSE_FRAME
);
2140 stdID(wxID_MOVE_FRAME
);
2141 stdID(wxID_RESIZE_FRAME
);
2142 stdID(wxID_MAXIMIZE_FRAME
);
2143 stdID(wxID_ICONIZE_FRAME
);
2144 stdID(wxID_RESTORE_FRAME
);
2146 stdID(wxID_CONVERT
);
2147 stdID(wxID_EXECUTE
);
2149 stdID(wxID_HARDDISK
);
2155 stdID(wxID_JUMP_TO
);
2156 stdID(wxID_NETWORK
);
2157 stdID(wxID_SELECT_COLOR
);
2158 stdID(wxID_SELECT_FONT
);
2159 stdID(wxID_SORT_ASCENDING
);
2160 stdID(wxID_SORT_DESCENDING
);
2161 stdID(wxID_SPELL_CHECK
);
2162 stdID(wxID_STRIKETHROUGH
);
2167 } // anonymous namespace
2171 int wxXmlResource::DoGetXRCID(const char *str_id
, int value_if_not_found
)
2173 if ( !gs_stdIDsAdded
)
2175 gs_stdIDsAdded
= true;
2176 AddStdXRCID_Records();
2179 return XRCID_Lookup(str_id
, value_if_not_found
);
2183 wxString
wxXmlResource::FindXRCIDById(int numId
)
2185 for ( int i
= 0; i
< XRCID_TABLE_SIZE
; i
++ )
2187 for ( XRCID_record
*rec
= XRCID_Records
[i
]; rec
; rec
= rec
->next
)
2189 if ( rec
->id
== numId
)
2190 return wxString(rec
->key
);
2197 static void CleanXRCID_Record(XRCID_record
*rec
)
2201 CleanXRCID_Record(rec
->next
);
2208 static void CleanXRCID_Records()
2210 for (int i
= 0; i
< XRCID_TABLE_SIZE
; i
++)
2212 CleanXRCID_Record(XRCID_Records
[i
]);
2213 XRCID_Records
[i
] = NULL
;
2216 gs_stdIDsAdded
= false;
2220 //-----------------------------------------------------------------------------
2221 // module and globals
2222 //-----------------------------------------------------------------------------
2224 // normally we would do the cleanup from wxXmlResourceModule::OnExit() but it
2225 // can happen that some XRC records have been created because of the use of
2226 // XRCID() in event tables, which happens during static objects initialization,
2227 // but then the application initialization failed and so the wx modules were
2228 // neither initialized nor cleaned up -- this static object does the cleanup in
2230 static struct wxXRCStaticCleanup
2232 ~wxXRCStaticCleanup() { CleanXRCID_Records(); }
2235 class wxXmlResourceModule
: public wxModule
2237 DECLARE_DYNAMIC_CLASS(wxXmlResourceModule
)
2239 wxXmlResourceModule() {}
2242 wxXmlResource::AddSubclassFactory(new wxXmlSubclassFactoryCXX
);
2247 delete wxXmlResource::Set(NULL
);
2248 if(wxXmlResource::ms_subclassFactories
)
2250 for ( wxXmlSubclassFactories::iterator i
= wxXmlResource::ms_subclassFactories
->begin();
2251 i
!= wxXmlResource::ms_subclassFactories
->end(); ++i
)
2255 wxDELETE(wxXmlResource::ms_subclassFactories
);
2257 CleanXRCID_Records();
2261 IMPLEMENT_DYNAMIC_CLASS(wxXmlResourceModule
, wxModule
)
2264 // When wxXml is loaded dynamically after the application is already running
2265 // then the built-in module system won't pick this one up. Add it manually.
2266 void wxXmlInitResourceModule()
2268 wxModule
* module = new wxXmlResourceModule
;
2270 wxModule::RegisterModule(module);