]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xml/xh_toolb.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML resource for wxBoxSizer
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_toolb.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/xml/xh_toolb.h"
23 #include "wx/toolbar.h"
28 wxToolBarXmlHandler::wxToolBarXmlHandler()
29 : wxXmlResourceHandler(), m_IsInside(FALSE
), m_Toolbar(NULL
)
32 ADD_STYLE(wxTB_DOCKABLE
);
33 ADD_STYLE(wxTB_VERTICAL
);
34 ADD_STYLE(wxTB_HORIZONTAL
);
39 wxObject
*wxToolBarXmlHandler::DoCreateResource()
41 if (m_Node
->GetName() == _T("tool"))
43 wxCHECK_MSG(m_Toolbar
, NULL
, _T("Incorrect syntax of XML resource: tool not within a toolbar!"));
44 m_Toolbar
->AddTool(GetID(),
45 GetBitmap(_T("bitmap")),
46 GetBitmap(_T("bitmap2")),
47 GetBool(_T("toggle")),
51 GetText(_T("tooltip")),
52 GetText(_T("longhelp")));
53 return m_Toolbar
; // must return non-NULL
56 else if (m_Node
->GetName() == _T("separator"))
58 wxCHECK_MSG(m_Toolbar
, NULL
, _T("Incorrect syntax of XML resource: separator not within a toolbar!"));
59 m_Toolbar
->AddSeparator();
60 return m_Toolbar
; // must return non-NULL
65 wxToolBar
*toolbar
= new wxToolBar(m_ParentAsWindow
,
72 wxSize bmpsize
= GetSize(_T("bitmapsize"));
73 if (!(bmpsize
== wxDefaultSize
))
74 toolbar
->SetToolBitmapSize(bmpsize
);
75 wxSize margins
= GetSize(_T("margins"));
76 if (!(margins
== wxDefaultSize
))
77 toolbar
->SetMargins(margins
.x
, margins
.y
);
78 long packing
= GetLong(_T("packing"), -1);
80 toolbar
->SetToolPacking(packing
);
81 long separation
= GetLong(_T("separation"), -1);
83 toolbar
->SetToolSeparation(separation
);
86 wxXmlNode
*children_node
= GetParamNode(_T("children"));
87 if (children_node
== NULL
) return toolbar
;
92 wxXmlNode
*n
= children_node
->GetChildren();
96 if (n
->GetType() == wxXML_ELEMENT_NODE
)
98 wxObject
*created
= CreateResFromNode(n
, toolbar
, NULL
);
99 wxControl
*control
= wxDynamicCast(created
, wxControl
);
100 if (n
->GetName() != _T("tool") &&
101 n
->GetName() != _T("separator") &&
103 toolbar
->AddControl(control
);
118 bool wxToolBarXmlHandler::CanHandle(wxXmlNode
*node
)
120 return ((!m_IsInside
&& node
->GetName() == _T("toolbar")) ||
121 (m_IsInside
&& node
->GetName() == _T("tool")) ||
122 (m_IsInside
&& node
->GetName() == _T("separator")));