]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xh_toolb.cpp
avoid multiple reallocations in wxString::PrintfV() if vsnprintf() returns the total...
[wxWidgets.git] / src / xrc / xh_toolb.cpp
CommitLineData
78d14f80
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_toolb.cpp
b5d6954b 3// Purpose: XRC resource for wxBoxSizer
78d14f80
VS
4// Author: Vaclav Slavik
5// Created: 2000/08/11
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
f80ea77b 10
78d14f80
VS
11// For compilers that support precompilation, includes "wx.h".
12#include "wx/wxprec.h"
13
14#ifdef __BORLANDC__
15 #pragma hdrstop
16#endif
17
621be1ec 18#if wxUSE_XRC && wxUSE_TOOLBAR
a1e4ec87 19
78d14f80
VS
20#include "wx/xrc/xh_toolb.h"
21#include "wx/toolbar.h"
f2588180 22#include "wx/frame.h"
78d14f80 23
854e189f
VS
24IMPLEMENT_DYNAMIC_CLASS(wxToolBarXmlHandler, wxXmlResourceHandler)
25
f80ea77b
WS
26wxToolBarXmlHandler::wxToolBarXmlHandler()
27: wxXmlResourceHandler(), m_isInside(false), m_toolbar(NULL)
78d14f80 28{
544fee32
VS
29 XRC_ADD_STYLE(wxTB_FLAT);
30 XRC_ADD_STYLE(wxTB_DOCKABLE);
31 XRC_ADD_STYLE(wxTB_VERTICAL);
32 XRC_ADD_STYLE(wxTB_HORIZONTAL);
c37ffc1f
VS
33 XRC_ADD_STYLE(wxTB_3DBUTTONS);
34 XRC_ADD_STYLE(wxTB_TEXT);
35 XRC_ADD_STYLE(wxTB_NOICONS);
36 XRC_ADD_STYLE(wxTB_NODIVIDER);
37 XRC_ADD_STYLE(wxTB_NOALIGN);
b29c9f3b 38 XRC_ADD_STYLE(wxTB_HORZ_LAYOUT);
61b52e46 39 XRC_ADD_STYLE(wxTB_HORZ_TEXT);
ace1785b 40 AddWindowStyles();
78d14f80
VS
41}
42
78d14f80 43wxObject *wxToolBarXmlHandler::DoCreateResource()
f80ea77b 44{
78d14f80
VS
45 if (m_class == wxT("tool"))
46 {
b5d6954b 47 wxCHECK_MSG(m_toolbar, NULL, wxT("Incorrect syntax of XRC resource: tool not within a toolbar!"));
f80ea77b 48
c37ffc1f
VS
49 if (GetPosition() != wxDefaultPosition)
50 {
51 m_toolbar->AddTool(GetID(),
52 GetBitmap(wxT("bitmap"), wxART_TOOLBAR),
53 GetBitmap(wxT("bitmap2"), wxART_TOOLBAR),
54 GetBool(wxT("toggle")),
55 GetPosition().x,
56 GetPosition().y,
57 NULL,
58 GetText(wxT("tooltip")),
59 GetText(wxT("longhelp")));
60 }
61 else
f80ea77b 62 {
c37ffc1f
VS
63 wxItemKind kind = wxITEM_NORMAL;
64 if (GetBool(wxT("radio")))
65 kind = wxITEM_RADIO;
66 if (GetBool(wxT("toggle")))
67 {
68 wxASSERT_MSG( kind == wxITEM_NORMAL,
69 _T("can't have both toggleable and radion button at once") );
70 kind = wxITEM_CHECK;
f80ea77b 71 }
c37ffc1f
VS
72 m_toolbar->AddTool(GetID(),
73 GetText(wxT("label")),
74 GetBitmap(wxT("bitmap"), wxART_TOOLBAR),
75 GetBitmap(wxT("bitmap2"), wxART_TOOLBAR),
76 kind,
77 GetText(wxT("tooltip")),
78 GetText(wxT("longhelp")));
79 }
78d14f80
VS
80 return m_toolbar; // must return non-NULL
81 }
f80ea77b 82
78d14f80
VS
83 else if (m_class == wxT("separator"))
84 {
b5d6954b 85 wxCHECK_MSG(m_toolbar, NULL, wxT("Incorrect syntax of XRC resource: separator not within a toolbar!"));
78d14f80
VS
86 m_toolbar->AddSeparator();
87 return m_toolbar; // must return non-NULL
88 }
f80ea77b 89
78d14f80
VS
90 else /*<object class="wxToolBar">*/
91 {
92 int style = GetStyle(wxT("style"), wxNO_BORDER | wxTB_HORIZONTAL);
93#ifdef __WXMSW__
94 if (!(style & wxNO_BORDER)) style |= wxNO_BORDER;
95#endif
f2588180 96
544fee32 97 XRC_MAKE_INSTANCE(toolbar, wxToolBar)
f80ea77b 98
f2588180
VS
99 toolbar->Create(m_parentAsWindow,
100 GetID(),
101 GetPosition(),
102 GetSize(),
103 style,
104 GetName());
78d14f80
VS
105
106 wxSize bmpsize = GetSize(wxT("bitmapsize"));
107 if (!(bmpsize == wxDefaultSize))
108 toolbar->SetToolBitmapSize(bmpsize);
109 wxSize margins = GetSize(wxT("margins"));
110 if (!(margins == wxDefaultSize))
111 toolbar->SetMargins(margins.x, margins.y);
112 long packing = GetLong(wxT("packing"), -1);
113 if (packing != -1)
114 toolbar->SetToolPacking(packing);
115 long separation = GetLong(wxT("separation"), -1);
116 if (separation != -1)
117 toolbar->SetToolSeparation(separation);
118
119 wxXmlNode *children_node = GetParamNode(wxT("object"));
f2588180
VS
120 if (!children_node)
121 children_node = GetParamNode(wxT("object_ref"));
122
78d14f80
VS
123 if (children_node == NULL) return toolbar;
124
f80ea77b 125 m_isInside = true;
78d14f80
VS
126 m_toolbar = toolbar;
127
128 wxXmlNode *n = children_node;
129
130 while (n)
131 {
f80ea77b 132 if ((n->GetType() == wxXML_ELEMENT_NODE) &&
f2588180 133 (n->GetName() == wxT("object") || n->GetName() == wxT("object_ref")))
78d14f80
VS
134 {
135 wxObject *created = CreateResFromNode(n, toolbar, NULL);
136 wxControl *control = wxDynamicCast(created, wxControl);
a42aa5d7
VS
137 if (!IsOfClass(n, wxT("tool")) &&
138 !IsOfClass(n, wxT("separator")) &&
78d14f80
VS
139 control != NULL)
140 toolbar->AddControl(control);
141 }
142 n = n->GetNext();
143 }
144
f80ea77b 145 m_isInside = false;
78d14f80
VS
146 m_toolbar = NULL;
147
148 toolbar->Realize();
f2588180 149
017b6a0d 150 if (m_parentAsWindow && !GetBool(wxT("dontattachtoframe")))
f2588180
VS
151 {
152 wxFrame *parentFrame = wxDynamicCast(m_parent, wxFrame);
153 if (parentFrame)
154 parentFrame->SetToolBar(toolbar);
155 }
156
78d14f80
VS
157 return toolbar;
158 }
159}
160
78d14f80
VS
161bool wxToolBarXmlHandler::CanHandle(wxXmlNode *node)
162{
163 return ((!m_isInside && IsOfClass(node, wxT("wxToolBar"))) ||
f80ea77b 164 (m_isInside && IsOfClass(node, wxT("tool"))) ||
78d14f80
VS
165 (m_isInside && IsOfClass(node, wxT("separator"))));
166}
167
a1e4ec87 168#endif // wxUSE_XRC && wxUSE_TOOLBAR