]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_toolb.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC 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 #if wxUSE_XRC && wxUSE_TOOLBAR
24 #include "wx/xrc/xh_toolb.h"
25 #include "wx/toolbar.h"
28 IMPLEMENT_DYNAMIC_CLASS(wxToolBarXmlHandler
, wxXmlResourceHandler
)
30 wxToolBarXmlHandler::wxToolBarXmlHandler()
31 : wxXmlResourceHandler(), m_isInside(false), m_toolbar(NULL
)
33 XRC_ADD_STYLE(wxTB_FLAT
);
34 XRC_ADD_STYLE(wxTB_DOCKABLE
);
35 XRC_ADD_STYLE(wxTB_VERTICAL
);
36 XRC_ADD_STYLE(wxTB_HORIZONTAL
);
37 XRC_ADD_STYLE(wxTB_3DBUTTONS
);
38 XRC_ADD_STYLE(wxTB_TEXT
);
39 XRC_ADD_STYLE(wxTB_NOICONS
);
40 XRC_ADD_STYLE(wxTB_NODIVIDER
);
41 XRC_ADD_STYLE(wxTB_NOALIGN
);
42 XRC_ADD_STYLE(wxTB_HORZ_LAYOUT
);
46 wxObject
*wxToolBarXmlHandler::DoCreateResource()
48 if (m_class
== wxT("tool"))
50 wxCHECK_MSG(m_toolbar
, NULL
, wxT("Incorrect syntax of XRC resource: tool not within a toolbar!"));
52 if (GetPosition() != wxDefaultPosition
)
54 m_toolbar
->AddTool(GetID(),
55 GetBitmap(wxT("bitmap"), wxART_TOOLBAR
),
56 GetBitmap(wxT("bitmap2"), wxART_TOOLBAR
),
57 GetBool(wxT("toggle")),
61 GetText(wxT("tooltip")),
62 GetText(wxT("longhelp")));
66 wxItemKind kind
= wxITEM_NORMAL
;
67 if (GetBool(wxT("radio")))
69 if (GetBool(wxT("toggle")))
71 wxASSERT_MSG( kind
== wxITEM_NORMAL
,
72 _T("can't have both toggleable and radion button at once") );
75 m_toolbar
->AddTool(GetID(),
76 GetText(wxT("label")),
77 GetBitmap(wxT("bitmap"), wxART_TOOLBAR
),
78 GetBitmap(wxT("bitmap2"), wxART_TOOLBAR
),
80 GetText(wxT("tooltip")),
81 GetText(wxT("longhelp")));
83 return m_toolbar
; // must return non-NULL
86 else if (m_class
== wxT("separator"))
88 wxCHECK_MSG(m_toolbar
, NULL
, wxT("Incorrect syntax of XRC resource: separator not within a toolbar!"));
89 m_toolbar
->AddSeparator();
90 return m_toolbar
; // must return non-NULL
93 else /*<object class="wxToolBar">*/
95 int style
= GetStyle(wxT("style"), wxNO_BORDER
| wxTB_HORIZONTAL
);
97 if (!(style
& wxNO_BORDER
)) style
|= wxNO_BORDER
;
100 XRC_MAKE_INSTANCE(toolbar
, wxToolBar
)
102 toolbar
->Create(m_parentAsWindow
,
109 wxSize bmpsize
= GetSize(wxT("bitmapsize"));
110 if (!(bmpsize
== wxDefaultSize
))
111 toolbar
->SetToolBitmapSize(bmpsize
);
112 wxSize margins
= GetSize(wxT("margins"));
113 if (!(margins
== wxDefaultSize
))
114 toolbar
->SetMargins(margins
.x
, margins
.y
);
115 long packing
= GetLong(wxT("packing"), -1);
117 toolbar
->SetToolPacking(packing
);
118 long separation
= GetLong(wxT("separation"), -1);
119 if (separation
!= -1)
120 toolbar
->SetToolSeparation(separation
);
122 wxXmlNode
*children_node
= GetParamNode(wxT("object"));
124 children_node
= GetParamNode(wxT("object_ref"));
126 if (children_node
== NULL
) return toolbar
;
131 wxXmlNode
*n
= children_node
;
135 if ((n
->GetType() == wxXML_ELEMENT_NODE
) &&
136 (n
->GetName() == wxT("object") || n
->GetName() == wxT("object_ref")))
138 wxObject
*created
= CreateResFromNode(n
, toolbar
, NULL
);
139 wxControl
*control
= wxDynamicCast(created
, wxControl
);
140 if (!IsOfClass(n
, wxT("tool")) &&
141 !IsOfClass(n
, wxT("separator")) &&
143 toolbar
->AddControl(control
);
153 if (m_parentAsWindow
&& !GetBool(wxT("dontattachtoframe")))
155 wxFrame
*parentFrame
= wxDynamicCast(m_parent
, wxFrame
);
157 parentFrame
->SetToolBar(toolbar
);
164 bool wxToolBarXmlHandler::CanHandle(wxXmlNode
*node
)
166 return ((!m_isInside
&& IsOfClass(node
, wxT("wxToolBar"))) ||
167 (m_isInside
&& IsOfClass(node
, wxT("tool"))) ||
168 (m_isInside
&& IsOfClass(node
, wxT("separator"))));
171 #endif // wxUSE_XRC && wxUSE_TOOLBAR