1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resources
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xmlres.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/dialog.h"
25 #include "wx/wfstream.h"
26 #include "wx/filesys.h"
29 #include "wx/tokenzr.h"
30 #include "wx/fontenum.h"
31 #include "wx/module.h"
32 #include "wx/bitmap.h"
34 #include "wx/fontmap.h"
36 #include "wx/xrc/xml.h"
37 #include "wx/xrc/xmlres.h"
39 #include "wx/arrimpl.cpp"
40 WX_DEFINE_OBJARRAY(wxXmlResourceDataRecords
);
43 wxXmlResource::wxXmlResource(int flags
)
45 m_handlers
.DeleteContents(TRUE
);
50 wxXmlResource::wxXmlResource(const wxString
& filemask
, int flags
)
54 m_handlers
.DeleteContents(TRUE
);
58 wxXmlResource::~wxXmlResource()
64 bool wxXmlResource::Load(const wxString
& filemask
)
67 wxXmlResourceDataRecord
*drec
;
68 bool iswild
= wxIsWild(filemask
);
73 # define wxXmlFindFirst fsys.FindFirst(filemask, wxFILE)
74 # define wxXmlFindNext fsys.FindNext()
76 # define wxXmlFindFirst wxFindFirstFile(filemask, wxFILE)
77 # define wxXmlFindNext wxFindNextFile()
86 if (filemask
.Lower().Matches(wxT("*.zip")) ||
87 filemask
.Lower().Matches(wxT("*.rsc")))
89 rt
= rt
&& Load(fnd
+ wxT("#zip:*.xmb"));
90 rt
= rt
&& Load(fnd
+ wxT("#zip:*.xrc"));
95 drec
= new wxXmlResourceDataRecord
;
105 # undef wxXmlFindFirst
106 # undef wxXmlFindNext
112 void wxXmlResource::AddHandler(wxXmlResourceHandler
*handler
)
114 m_handlers
.Append(handler
);
115 handler
->SetParentResource(this);
120 void wxXmlResource::ClearHandlers()
127 wxMenu
*wxXmlResource::LoadMenu(const wxString
& name
)
129 return (wxMenu
*)CreateResFromNode(FindResource(name
, wxT("wxMenu")), NULL
, NULL
);
134 wxMenuBar
*wxXmlResource::LoadMenuBar(const wxString
& name
)
136 return (wxMenuBar
*)CreateResFromNode(FindResource(name
, wxT("wxMenuBar")), NULL
, NULL
);
141 wxToolBar
*wxXmlResource::LoadToolBar(wxWindow
*parent
, const wxString
& name
)
143 return (wxToolBar
*)CreateResFromNode(FindResource(name
, wxT("wxToolBar")), parent
, NULL
);
148 wxDialog
*wxXmlResource::LoadDialog(wxWindow
*parent
, const wxString
& name
)
150 wxDialog
*dialog
= new wxDialog
;
151 if (!LoadDialog(dialog
, parent
, name
))
152 { delete dialog
; return NULL
; }
156 bool wxXmlResource::LoadDialog(wxDialog
*dlg
, wxWindow
*parent
, const wxString
& name
)
158 return CreateResFromNode(FindResource(name
, wxT("wxDialog")), parent
, dlg
) != NULL
;
163 wxPanel
*wxXmlResource::LoadPanel(wxWindow
*parent
, const wxString
& name
)
165 return (wxPanel
*)CreateResFromNode(FindResource(name
, wxT("wxPanel")), parent
, NULL
);
168 bool wxXmlResource::LoadPanel(wxPanel
*panel
, wxWindow
*parent
, const wxString
& name
)
170 return CreateResFromNode(FindResource(name
, wxT("wxPanel")), parent
, panel
) != NULL
;
173 bool wxXmlResource::LoadFrame(wxFrame
* frame
, wxWindow
*parent
, const wxString
& name
)
175 return CreateResFromNode(FindResource(name
, wxT("wxFrame")), parent
, frame
) != NULL
;
178 wxBitmap
wxXmlResource::LoadBitmap(const wxString
& name
)
180 wxBitmap
*bmp
= (wxBitmap
*)CreateResFromNode(
181 FindResource(name
, wxT("wxBitmap")), NULL
, NULL
);
184 if (bmp
) { rt
= *bmp
; delete bmp
; }
188 wxIcon
wxXmlResource::LoadIcon(const wxString
& name
)
190 wxIcon
*icon
= (wxIcon
*)CreateResFromNode(
191 FindResource(name
, wxT("wxIcon")), NULL
, NULL
);
194 if (icon
) { rt
= *icon
; delete icon
; }
198 bool wxXmlResource::AttachUnknownControl(const wxString
& name
,
199 wxWindow
*control
, wxWindow
*parent
)
202 parent
= control
->GetParent();
203 wxWindow
*container
= parent
->FindWindow(name
+ wxT("_container"));
206 wxLogError(_("Cannot find container for unknown control '%s'."), name
.c_str());
209 return control
->Reparent(container
);
213 static void ProcessPlatformProperty(wxXmlNode
*node
)
218 wxXmlNode
*c
= node
->GetChildren();
222 if (!c
->GetPropVal(wxT("platform"), &s
))
226 wxStringTokenizer
tkn(s
, " |");
228 while (tkn
.HasMoreTokens())
230 s
= tkn
.GetNextToken();
233 s
== wxString(wxT("win"))
234 #elif defined(__UNIX__)
235 s
== wxString(wxT("unix"))
236 #elif defined(__MAC__)
237 s
== wxString(wxT("mac"))
238 #elif defined(__OS2__)
239 s
== wxString(wxT("os2"))
249 ProcessPlatformProperty(c
);
254 node
->RemoveChild(c
);
255 wxXmlNode
*c2
= c
->GetNext();
264 void wxXmlResource::UpdateResources()
267 # if wxUSE_FILESYSTEM
268 wxFSFile
*file
= NULL
;
272 for (size_t i
= 0; i
< m_data
.GetCount(); i
++)
274 modif
= (m_data
[i
].Doc
== NULL
);
278 # if wxUSE_FILESYSTEM
279 file
= fsys
.OpenFile(m_data
[i
].File
);
280 modif
= file
&& file
->GetModificationTime() > m_data
[i
].Time
;
282 wxLogError(_("Cannot open file '%s'."), m_data
[i
].File
.c_str());
285 modif
= wxDateTime(wxFileModificationTime(m_data
[i
].File
)) > m_data
[i
].Time
;
291 wxInputStream
*stream
= NULL
;
293 # if wxUSE_FILESYSTEM
294 file
= fsys
.OpenFile(m_data
[i
].File
);
296 stream
= file
->GetStream();
298 stream
= new wxFileInputStream(m_data
[i
].File
);
303 delete m_data
[i
].Doc
;
304 m_data
[i
].Doc
= new wxXmlDocument
;
306 if (!stream
|| !m_data
[i
].Doc
->Load(*stream
))
308 wxLogError(_("Cannot load resources from file '%s'."), m_data
[i
].File
.c_str());
309 wxDELETE(m_data
[i
].Doc
);
311 else if (m_data
[i
].Doc
->GetRoot()->GetName() != wxT("resource"))
313 wxLogError(_("Invalid XRC resource '%s': doesn't have root node 'resource'."), m_data
[i
].File
.c_str());
314 wxDELETE(m_data
[i
].Doc
);
320 wxString verstr
= m_data
[i
].Doc
->GetRoot()->GetPropVal(
321 wxT("version"), wxT("0.0.0.0"));
322 if (wxSscanf(verstr
.c_str(), wxT("%i.%i.%i.%i"),
323 &v1
, &v2
, &v3
, &v4
) == 4)
324 version
= v1
*256*256*256+v2
*256*256+v3
*256+v4
;
329 if (m_version
!= version
)
330 wxLogError(_("Resource files must have same version number!"));
332 ProcessPlatformProperty(m_data
[i
].Doc
->GetRoot());
333 m_data
[i
].Time
= file
->GetModificationTime();
336 # if wxUSE_FILESYSTEM
347 wxXmlNode
*wxXmlResource::FindResource(const wxString
& name
, const wxString
& classname
)
349 UpdateResources(); //ensure everything is up-to-date
352 for (size_t f
= 0; f
< m_data
.GetCount(); f
++)
354 if (m_data
[f
].Doc
== NULL
|| m_data
[f
].Doc
->GetRoot() == NULL
) continue;
355 for (wxXmlNode
*node
= m_data
[f
].Doc
->GetRoot()->GetChildren();
356 node
; node
= node
->GetNext())
357 if (node
->GetType() == wxXML_ELEMENT_NODE
&&
359 node
->GetPropVal(wxT("class"), wxEmptyString
) == classname
) &&
360 node
->GetName() == wxT("object") &&
361 node
->GetPropVal(wxT("name"), &dummy
) &&
365 m_curFileSystem
.ChangePathTo(m_data
[f
].File
);
371 wxLogError(_("XRC resource '%s' (class '%s') not found!"),
372 name
.c_str(), classname
.c_str());
378 wxObject
*wxXmlResource::CreateResFromNode(wxXmlNode
*node
, wxObject
*parent
, wxObject
*instance
)
380 if (node
== NULL
) return NULL
;
382 wxXmlResourceHandler
*handler
;
384 wxNode
* ND
= m_handlers
.GetFirst();
387 handler
= (wxXmlResourceHandler
*)ND
->GetData();
388 if (node
->GetName() == wxT("object") && handler
->CanHandle(node
))
390 ret
= handler
->CreateResource(node
, parent
, instance
);
396 wxLogError(_("No handler found for XML node '%s', class '%s'!"),
397 node
->GetName().c_str(),
398 node
->GetPropVal(wxT("class"), wxEmptyString
).c_str());
410 wxXmlResourceHandler::wxXmlResourceHandler()
411 : m_node(NULL
), m_parent(NULL
), m_instance(NULL
),
412 m_parentAsWindow(NULL
), m_instanceAsWindow(NULL
)
417 wxObject
*wxXmlResourceHandler::CreateResource(wxXmlNode
*node
, wxObject
*parent
, wxObject
*instance
)
419 wxXmlNode
*myNode
= m_node
;
420 wxString myClass
= m_class
;
421 wxObject
*myParent
= m_parent
, *myInstance
= m_instance
;
422 wxWindow
*myParentAW
= m_parentAsWindow
, *myInstanceAW
= m_instanceAsWindow
;
424 m_instance
= instance
;
425 if (!m_instance
&& node
->HasProp(wxT("subclass")) &&
426 !(m_resource
->GetFlags() & wxXRC_NO_SUBCLASSING
))
428 wxString subclass
= node
->GetPropVal(wxT("subclass"), wxEmptyString
);
429 wxClassInfo
* classInfo
= wxClassInfo::FindClass(subclass
);
432 m_instance
= classInfo
->CreateObject();
436 wxLogError(_("Subclass '%s' not found for resource '%s', not subclassing!"),
437 subclass
.c_str(), node
->GetPropVal(wxT("name"), wxEmptyString
).c_str());
440 m_instance
= classInfo
->CreateObject();
444 m_class
= node
->GetPropVal(wxT("class"), wxEmptyString
);
446 m_parentAsWindow
= wxDynamicCast(m_parent
, wxWindow
);
447 m_instanceAsWindow
= wxDynamicCast(m_instance
, wxWindow
);
449 wxObject
*returned
= DoCreateResource();
453 m_parent
= myParent
; m_parentAsWindow
= myParentAW
;
454 m_instance
= myInstance
; m_instanceAsWindow
= myInstanceAW
;
460 void wxXmlResourceHandler::AddStyle(const wxString
& name
, int value
)
462 m_styleNames
.Add(name
);
463 m_styleValues
.Add(value
);
468 void wxXmlResourceHandler::AddWindowStyles()
470 XRC_ADD_STYLE(wxSIMPLE_BORDER
);
471 XRC_ADD_STYLE(wxSUNKEN_BORDER
);
472 XRC_ADD_STYLE(wxDOUBLE_BORDER
);
473 XRC_ADD_STYLE(wxRAISED_BORDER
);
474 XRC_ADD_STYLE(wxSTATIC_BORDER
);
475 XRC_ADD_STYLE(wxNO_BORDER
);
476 XRC_ADD_STYLE(wxTRANSPARENT_WINDOW
);
477 XRC_ADD_STYLE(wxWANTS_CHARS
);
478 XRC_ADD_STYLE(wxNO_FULL_REPAINT_ON_RESIZE
);
483 bool wxXmlResourceHandler::HasParam(const wxString
& param
)
485 return (GetParamNode(param
) != NULL
);
489 int wxXmlResourceHandler::GetStyle(const wxString
& param
, int defaults
)
491 wxString s
= GetParamValue(param
);
493 if (!s
) return defaults
;
495 wxStringTokenizer
tkn(s
, wxT("| "), wxTOKEN_STRTOK
);
499 while (tkn
.HasMoreTokens())
501 fl
= tkn
.GetNextToken();
502 index
= m_styleNames
.Index(fl
);
503 if (index
!= wxNOT_FOUND
)
504 style
|= m_styleValues
[index
];
506 wxLogError(_("Unknown style flag ") + fl
);
513 wxString
wxXmlResourceHandler::GetText(const wxString
& param
)
520 if (m_resource
->GetFlags() & wxXRC_USE_LOCALE
)
521 str1
= wxGetTranslation(GetParamValue(param
));
523 str1
= GetParamValue(param
);
525 // VS: First version of XRC resources used $ instead of & (which is illegal in XML),
526 // but later I realized that '_' fits this purpose much better (because
527 // &File means "File with F underlined").
528 if (m_resource
->CompareVersion(2,3,0,1) < 0)
533 for (dt
= str1
.c_str(); *dt
; dt
++)
535 // Remap amp_char to &, map double amp_char to amp_char (for things
536 // like "&File..." -- this is illegal in XML, so we use "_File..."):
539 if ( *(++dt
) == amp_char
)
542 str2
<< wxT('&') << *dt
;
544 // Remap \n to CR, \r to LF, \t to TAB:
545 else if (*dt
== wxT('\\'))
548 case wxT('n') : str2
<< wxT('\n'); break;
549 case wxT('t') : str2
<< wxT('\t'); break;
550 case wxT('r') : str2
<< wxT('\r'); break;
551 default : str2
<< wxT('\\') << *dt
; break;
561 long wxXmlResourceHandler::GetLong(const wxString
& param
, long defaultv
)
564 wxString str1
= GetParamValue(param
);
566 if (!str1
.ToLong(&value
))
573 int wxXmlResourceHandler::GetID()
575 wxString sid
= GetName();
578 if (sid
== wxT("-1")) return -1;
579 else if (sid
.IsNumber() && sid
.ToLong(&num
)) return num
;
580 #define stdID(id) else if (sid == wxT(#id)) return id
581 stdID(wxID_OPEN
); stdID(wxID_CLOSE
); stdID(wxID_NEW
);
582 stdID(wxID_SAVE
); stdID(wxID_SAVEAS
); stdID(wxID_REVERT
);
583 stdID(wxID_EXIT
); stdID(wxID_UNDO
); stdID(wxID_REDO
);
584 stdID(wxID_HELP
); stdID(wxID_PRINT
); stdID(wxID_PRINT_SETUP
);
585 stdID(wxID_PREVIEW
); stdID(wxID_ABOUT
); stdID(wxID_HELP_CONTENTS
);
586 stdID(wxID_HELP_COMMANDS
); stdID(wxID_HELP_PROCEDURES
);
587 stdID(wxID_CUT
); stdID(wxID_COPY
); stdID(wxID_PASTE
);
588 stdID(wxID_CLEAR
); stdID(wxID_FIND
); stdID(wxID_DUPLICATE
);
589 stdID(wxID_SELECTALL
); stdID(wxID_OK
); stdID(wxID_CANCEL
);
590 stdID(wxID_APPLY
); stdID(wxID_YES
); stdID(wxID_NO
);
591 stdID(wxID_STATIC
); stdID(wxID_FORWARD
); stdID(wxID_BACKWARD
);
592 stdID(wxID_DEFAULT
); stdID(wxID_MORE
); stdID(wxID_SETUP
);
593 stdID(wxID_RESET
); stdID(wxID_HELP_CONTEXT
);
595 else return wxXmlResource::GetXMLID(sid
);
599 wxString
wxXmlResourceHandler::GetName()
601 return m_node
->GetPropVal(wxT("name"), wxT("-1"));
606 bool wxXmlResourceHandler::GetBool(const wxString
& param
, bool defaultv
)
608 wxString v
= GetParamValue(param
);
610 if (!v
) return defaultv
;
611 else return (v
== wxT("1"));
616 wxColour
wxXmlResourceHandler::GetColour(const wxString
& param
)
618 wxString v
= GetParamValue(param
);
619 unsigned long tmp
= 0;
621 if (v
.Length() != 7 || v
[0u] != wxT('#') ||
622 wxSscanf(v
.c_str(), wxT("#%lX"), &tmp
) != 1)
624 wxLogError(_("XRC resource: Incorrect colour specification '%s' for property '%s'."),
625 v
.c_str(), param
.c_str());
629 return wxColour((unsigned char) ((tmp
& 0xFF0000) >> 16) ,
630 (unsigned char) ((tmp
& 0x00FF00) >> 8),
631 (unsigned char) ((tmp
& 0x0000FF)));
636 wxBitmap
wxXmlResourceHandler::GetBitmap(const wxString
& param
, wxSize size
)
638 wxString name
= GetParamValue(param
);
639 if (name
.IsEmpty()) return wxNullBitmap
;
641 wxFSFile
*fsfile
= GetCurFileSystem().OpenFile(name
);
644 wxLogError(_("XRC resource: Cannot create bitmap from '%s'."), param
.c_str());
647 wxImage
img(*(fsfile
->GetStream()));
650 wxImage
img(GetParamValue(wxT("bitmap")));
654 wxLogError(_("XRC resource: Cannot create bitmap from '%s'."), param
.c_str());
657 if (!(size
== wxDefaultSize
)) img
.Rescale(size
.x
, size
.y
);
658 return img
.ConvertToBitmap();
663 wxIcon
wxXmlResourceHandler::GetIcon(const wxString
& param
, wxSize size
)
665 #if wxCHECK_VERSION(2,3,0) || defined(__WXMSW__)
667 icon
.CopyFromBitmap(GetBitmap(param
, size
));
670 wxBitmap bmppt
= GetBitmap(param
, size
);
671 iconpt
= (wxIcon
*)(&bmppt
);
672 wxIcon
icon(*iconpt
);
679 wxXmlNode
*wxXmlResourceHandler::GetParamNode(const wxString
& param
)
681 wxXmlNode
*n
= m_node
->GetChildren();
685 if (n
->GetType() == wxXML_ELEMENT_NODE
&& n
->GetName() == param
)
693 wxString
wxXmlResourceHandler::GetNodeContent(wxXmlNode
*node
)
696 if (n
== NULL
) return wxEmptyString
;
697 n
= n
->GetChildren();
701 if (n
->GetType() == wxXML_TEXT_NODE
||
702 n
->GetType() == wxXML_CDATA_SECTION_NODE
)
703 return n
->GetContent();
706 return wxEmptyString
;
711 wxString
wxXmlResourceHandler::GetParamValue(const wxString
& param
)
714 return GetNodeContent(m_node
);
716 return GetNodeContent(GetParamNode(param
));
721 wxSize
wxXmlResourceHandler::GetSize(const wxString
& param
)
723 wxString s
= GetParamValue(param
);
724 if (s
.IsEmpty()) s
= wxT("-1,-1");
728 is_dlg
= s
[s
.Length()-1] == wxT('d');
729 if (is_dlg
) s
.RemoveLast();
731 if (!s
.BeforeFirst(wxT(',')).ToLong(&sx
) ||
732 !s
.AfterLast(wxT(',')).ToLong(&sy
))
734 wxLogError(_("Cannot parse coordinates from '%s'."), s
.c_str());
735 return wxDefaultSize
;
740 if (m_instanceAsWindow
)
741 return wxDLG_UNIT(m_instanceAsWindow
, wxSize(sx
, sy
));
742 else if (m_parentAsWindow
)
743 return wxDLG_UNIT(m_parentAsWindow
, wxSize(sx
, sy
));
746 wxLogError(_("Cannot convert dialog units: dialog unknown."));
747 return wxDefaultSize
;
750 else return wxSize(sx
, sy
);
755 wxPoint
wxXmlResourceHandler::GetPosition(const wxString
& param
)
757 wxSize sz
= GetSize(param
);
758 return wxPoint(sz
.x
, sz
.y
);
763 wxCoord
wxXmlResourceHandler::GetDimension(const wxString
& param
, wxCoord defaultv
)
765 wxString s
= GetParamValue(param
);
766 if (s
.IsEmpty()) return defaultv
;
770 is_dlg
= s
[s
.Length()-1] == wxT('d');
771 if (is_dlg
) s
.RemoveLast();
775 wxLogError(_("Cannot parse dimension from '%s'."), s
.c_str());
781 if (m_instanceAsWindow
)
782 return wxDLG_UNIT(m_instanceAsWindow
, wxSize(sx
, 0)).x
;
783 else if (m_parentAsWindow
)
784 return wxDLG_UNIT(m_parentAsWindow
, wxSize(sx
, 0)).x
;
787 wxLogError(_("Cannot convert dialog units: dialog unknown."));
796 wxFont
wxXmlResourceHandler::GetFont(const wxString
& param
)
798 wxXmlNode
*font_node
= GetParamNode(param
);
799 if (font_node
== NULL
)
801 wxLogError(_("Cannot find font node '%s'."), param
.c_str());
805 wxXmlNode
*oldnode
= m_node
;
808 long size
= GetLong(wxT("size"), 12);
810 wxString style
= GetParamValue(wxT("style"));
811 wxString weight
= GetParamValue(wxT("weight"));
812 int istyle
= wxNORMAL
, iweight
= wxNORMAL
;
813 if (style
== wxT("italic")) istyle
= wxITALIC
;
814 else if (style
== wxT("slant")) istyle
= wxSLANT
;
815 if (weight
== wxT("bold")) iweight
= wxBOLD
;
816 else if (weight
== wxT("light")) iweight
= wxLIGHT
;
818 wxString family
= GetParamValue(wxT("family"));
819 int ifamily
= wxDEFAULT
;
820 if (family
== wxT("decorative")) ifamily
= wxDECORATIVE
;
821 else if (family
== wxT("roman")) ifamily
= wxROMAN
;
822 else if (family
== wxT("script")) ifamily
= wxSCRIPT
;
823 else if (family
== wxT("swiss")) ifamily
= wxSWISS
;
824 else if (family
== wxT("modern")) ifamily
= wxMODERN
;
826 bool underlined
= GetBool(wxT("underlined"), FALSE
);
828 wxString encoding
= GetParamValue(wxT("encoding"));
830 wxFontEncoding enc
= wxFONTENCODING_DEFAULT
;
831 if (!encoding
.IsEmpty())
832 enc
= mapper
.CharsetToEncoding(encoding
);
833 if (enc
== wxFONTENCODING_SYSTEM
)
834 enc
= wxFONTENCODING_DEFAULT
;
836 wxString faces
= GetParamValue(wxT("face"));
837 wxString facename
= wxEmptyString
;
838 wxFontEnumerator enu
;
839 enu
.EnumerateFacenames();
840 wxStringTokenizer
tk(faces
, wxT(","));
841 while (tk
.HasMoreTokens())
843 int index
= enu
.GetFacenames()->Index(tk
.GetNextToken(), FALSE
);
844 if (index
!= wxNOT_FOUND
)
846 facename
= (*enu
.GetFacenames())[index
];
853 wxFont
font(size
, ifamily
, istyle
, iweight
, underlined
, facename
, enc
);
858 void wxXmlResourceHandler::SetupWindow(wxWindow
*wnd
)
862 if (HasParam(wxT("exstyle")))
863 wnd
->SetExtraStyle(GetStyle(wxT("exstyle")));
864 if (HasParam(wxT("bg")))
865 wnd
->SetBackgroundColour(GetColour(wxT("bg")));
866 if (HasParam(wxT("fg")))
867 wnd
->SetForegroundColour(GetColour(wxT("fg")));
868 if (GetBool(wxT("enabled"), 1) == 0)
870 if (GetBool(wxT("focused"), 0) == 1)
872 if (GetBool(wxT("hidden"), 0) == 1)
875 if (HasParam(wxT("tooltip")))
876 wnd
->SetToolTip(GetText(wxT("tooltip")));
878 if (HasParam(wxT("font")))
879 wnd
->SetFont(GetFont());
883 void wxXmlResourceHandler::CreateChildren(wxObject
*parent
, bool this_hnd_only
)
885 wxXmlNode
*n
= m_node
->GetChildren();
889 if (n
->GetType() == wxXML_ELEMENT_NODE
&&
890 n
->GetName() == wxT("object"))
892 if (this_hnd_only
&& CanHandle(n
))
893 CreateResource(n
, parent
, NULL
);
895 m_resource
->CreateResFromNode(n
, parent
, NULL
);
902 void wxXmlResourceHandler::CreateChildrenPrivately(wxObject
*parent
, wxXmlNode
*rootnode
)
905 if (rootnode
== NULL
) root
= m_node
; else root
= rootnode
;
906 wxXmlNode
*n
= root
->GetChildren();
910 if (n
->GetType() == wxXML_ELEMENT_NODE
&& CanHandle(n
))
912 CreateResource(n
, parent
, NULL
);
924 // --------------- XMLID implementation -----------------------------
926 #define XMLID_TABLE_SIZE 1024
936 static XMLID_record
*XMLID_Records
[XMLID_TABLE_SIZE
] = {NULL
};
938 /*static*/ int wxXmlResource::GetXMLID(const wxChar
*str_id
)
940 static int XMLID_LastID
= wxID_HIGHEST
;
944 for (const wxChar
*c
= str_id
; *c
!= wxT('\0'); c
++) index
+= (int)*c
;
945 index
%= XMLID_TABLE_SIZE
;
947 XMLID_record
*oldrec
= NULL
;
949 for (XMLID_record
*rec
= XMLID_Records
[index
]; rec
; rec
= rec
->next
)
951 if (wxStrcmp(rec
->key
, str_id
) == 0)
959 XMLID_record
**rec_var
= (oldrec
== NULL
) ?
960 &XMLID_Records
[index
] : &oldrec
->next
;
961 *rec_var
= new XMLID_record
;
962 (*rec_var
)->id
= ++XMLID_LastID
;
963 (*rec_var
)->key
= wxStrdup(str_id
);
964 (*rec_var
)->next
= NULL
;
966 return (*rec_var
)->id
;
970 static void CleanXMLID_Record(XMLID_record
*rec
)
974 CleanXMLID_Record(rec
->next
);
980 static void CleanXMLID_Records()
982 for (int i
= 0; i
< XMLID_TABLE_SIZE
; i
++)
983 CleanXMLID_Record(XMLID_Records
[i
]);
993 // --------------- module and globals -----------------------------
996 static wxXmlResource gs_XmlResource
;
998 wxXmlResource
*wxTheXmlResource
= &gs_XmlResource
;
1001 class wxXmlResourceModule
: public wxModule
1003 DECLARE_DYNAMIC_CLASS(wxXmlResourceModule
)
1005 wxXmlResourceModule() {}
1006 bool OnInit() {return TRUE
;}
1009 wxTheXmlResource
->ClearHandlers();
1010 CleanXMLID_Records();
1014 IMPLEMENT_DYNAMIC_CLASS(wxXmlResourceModule
, wxModule
)
1017 // When wxXml is loaded dynamically after the application is already running
1018 // then the built-in module system won't pick this one up. Add it manually.
1019 void wxXmlInitResourceModule()
1021 wxModule
* module = new wxXmlResourceModule
;
1023 wxModule::RegisterModule(module);