1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xh_sizer.cpp
3 // Purpose: XRC resource for wxBoxSizer
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/xh_sizer.h"
25 #include "wx/statbox.h"
28 #include "wx/dialog.h"
29 #include "wx/button.h"
30 #include "wx/scrolwin.h"
33 #include "wx/gbsizer.h"
34 #include "wx/wrapsizer.h"
35 #include "wx/notebook.h"
36 #include "wx/tokenzr.h"
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
43 IMPLEMENT_DYNAMIC_CLASS(wxSizerXmlHandler
, wxXmlResourceHandler
)
45 wxSizerXmlHandler::wxSizerXmlHandler()
46 :wxXmlResourceHandler(),
51 XRC_ADD_STYLE(wxHORIZONTAL
);
52 XRC_ADD_STYLE(wxVERTICAL
);
55 XRC_ADD_STYLE(wxLEFT
);
56 XRC_ADD_STYLE(wxRIGHT
);
58 XRC_ADD_STYLE(wxBOTTOM
);
59 XRC_ADD_STYLE(wxNORTH
);
60 XRC_ADD_STYLE(wxSOUTH
);
61 XRC_ADD_STYLE(wxEAST
);
62 XRC_ADD_STYLE(wxWEST
);
65 XRC_ADD_STYLE(wxGROW
);
66 XRC_ADD_STYLE(wxEXPAND
);
67 XRC_ADD_STYLE(wxSHAPED
);
68 XRC_ADD_STYLE(wxSTRETCH_NOT
);
70 XRC_ADD_STYLE(wxALIGN_CENTER
);
71 XRC_ADD_STYLE(wxALIGN_CENTRE
);
72 XRC_ADD_STYLE(wxALIGN_LEFT
);
73 XRC_ADD_STYLE(wxALIGN_TOP
);
74 XRC_ADD_STYLE(wxALIGN_RIGHT
);
75 XRC_ADD_STYLE(wxALIGN_BOTTOM
);
76 XRC_ADD_STYLE(wxALIGN_CENTER_HORIZONTAL
);
77 XRC_ADD_STYLE(wxALIGN_CENTRE_HORIZONTAL
);
78 XRC_ADD_STYLE(wxALIGN_CENTER_VERTICAL
);
79 XRC_ADD_STYLE(wxALIGN_CENTRE_VERTICAL
);
81 XRC_ADD_STYLE(wxFIXED_MINSIZE
);
82 XRC_ADD_STYLE(wxRESERVE_SPACE_EVEN_IF_HIDDEN
);
84 // this flag doesn't do anything any more but we can just ignore its
85 // occurrences in the old resource files instead of raising a fuss because
87 AddStyle("wxADJUST_MINSIZE", 0);
89 // wxWrapSizer-specific flags
90 XRC_ADD_STYLE(wxEXTEND_LAST_ON_EACH_LINE
);
91 XRC_ADD_STYLE(wxREMOVE_LEADING_SPACES
);
96 bool wxSizerXmlHandler::CanHandle(wxXmlNode
*node
)
98 return ( (!m_isInside
&& IsSizerNode(node
)) ||
99 (m_isInside
&& IsOfClass(node
, wxT("sizeritem"))) ||
100 (m_isInside
&& IsOfClass(node
, wxT("spacer")))
105 wxObject
* wxSizerXmlHandler::DoCreateResource()
107 if (m_class
== wxT("sizeritem"))
108 return Handle_sizeritem();
110 else if (m_class
== wxT("spacer"))
111 return Handle_spacer();
114 return Handle_sizer();
120 bool wxSizerXmlHandler::IsSizerNode(wxXmlNode
*node
)
122 return (IsOfClass(node
, wxT("wxBoxSizer"))) ||
123 (IsOfClass(node
, wxT("wxStaticBoxSizer"))) ||
124 (IsOfClass(node
, wxT("wxGridSizer"))) ||
125 (IsOfClass(node
, wxT("wxFlexGridSizer"))) ||
126 (IsOfClass(node
, wxT("wxGridBagSizer"))) ||
127 (IsOfClass(node
, wxT("wxWrapSizer")));
131 wxObject
* wxSizerXmlHandler::Handle_sizeritem()
133 // find the item to be managed by this sizeritem
134 wxXmlNode
*n
= GetParamNode(wxT("object"));
136 n
= GetParamNode(wxT("object_ref"));
141 // create a sizer item for it
142 wxSizerItem
* sitem
= MakeSizerItem();
144 // now fetch the item to be managed
145 bool old_gbs
= m_isGBS
;
146 bool old_ins
= m_isInside
;
147 wxSizer
*old_par
= m_parentSizer
;
149 if (!IsSizerNode(n
)) m_parentSizer
= NULL
;
150 wxObject
*item
= CreateResFromNode(n
, m_parent
, NULL
);
151 m_isInside
= old_ins
;
152 m_parentSizer
= old_par
;
155 // and figure out what type it is
156 wxSizer
*sizer
= wxDynamicCast(item
, wxSizer
);
157 wxWindow
*wnd
= wxDynamicCast(item
, wxWindow
);
160 sitem
->AssignSizer(sizer
);
162 sitem
->AssignWindow(wnd
);
164 wxLogError(wxT("Error in resource."));
166 // finally, set other wxSizerItem attributes
167 SetSizerItemAttributes(sitem
);
174 wxLogError(wxT("Error in resource: no window/sizer/spacer within sizeritem object."));
180 wxObject
* wxSizerXmlHandler::Handle_spacer()
182 wxCHECK_MSG(m_parentSizer
, NULL
, wxT("Incorrect syntax of XRC resource: spacer not within sizer!"));
184 wxSizerItem
* sitem
= MakeSizerItem();
185 SetSizerItemAttributes(sitem
);
186 sitem
->AssignSpacer(GetSize());
192 wxObject
* wxSizerXmlHandler::Handle_sizer()
194 wxSizer
*sizer
= NULL
;
196 wxXmlNode
*parentNode
= m_node
->GetParent();
198 wxCHECK_MSG(m_parentSizer
!= NULL
||
199 (parentNode
&& parentNode
->GetType() == wxXML_ELEMENT_NODE
&&
200 m_parentAsWindow
), NULL
,
201 wxT("Sizer must have a window parent node"));
203 if (m_class
== wxT("wxBoxSizer"))
204 sizer
= Handle_wxBoxSizer();
207 else if (m_class
== wxT("wxStaticBoxSizer"))
208 sizer
= Handle_wxStaticBoxSizer();
211 else if (m_class
== wxT("wxGridSizer"))
212 sizer
= Handle_wxGridSizer();
214 else if (m_class
== wxT("wxFlexGridSizer"))
215 sizer
= Handle_wxFlexGridSizer();
217 else if (m_class
== wxT("wxGridBagSizer"))
218 sizer
= Handle_wxGridBagSizer();
220 else if (m_class
== wxT("wxWrapSizer"))
221 sizer
= Handle_wxWrapSizer();
225 wxLogError(_T("Failed to create size of class \"%s\""), m_class
.c_str());
229 wxSize minsize
= GetSize(wxT("minsize"));
230 if (!(minsize
== wxDefaultSize
))
231 sizer
->SetMinSize(minsize
);
234 wxSizer
*old_par
= m_parentSizer
;
235 bool old_ins
= m_isInside
;
238 m_parentSizer
= sizer
;
240 m_isGBS
= (m_class
== wxT("wxGridBagSizer"));
242 CreateChildren(m_parent
, true/*only this handler*/);
245 m_isInside
= old_ins
;
246 m_parentSizer
= old_par
;
248 if (m_parentSizer
== NULL
) // setup window:
250 m_parentAsWindow
->SetSizer(sizer
);
252 wxXmlNode
*nd
= m_node
;
254 if (GetSize() == wxDefaultSize
)
256 if ( wxDynamicCast(m_parentAsWindow
, wxScrolledWindow
) != NULL
)
258 sizer
->FitInside(m_parentAsWindow
);
262 sizer
->Fit(m_parentAsWindow
);
267 if (m_parentAsWindow
->IsTopLevel())
269 sizer
->SetSizeHints(m_parentAsWindow
);
277 wxSizer
* wxSizerXmlHandler::Handle_wxBoxSizer()
279 return new wxBoxSizer(GetStyle(wxT("orient"), wxHORIZONTAL
));
283 wxSizer
* wxSizerXmlHandler::Handle_wxStaticBoxSizer()
285 return new wxStaticBoxSizer(
286 new wxStaticBox(m_parentAsWindow
,
288 GetText(wxT("label")),
289 wxDefaultPosition
, wxDefaultSize
,
292 GetStyle(wxT("orient"), wxHORIZONTAL
));
294 #endif // wxUSE_STATBOX
296 wxSizer
* wxSizerXmlHandler::Handle_wxGridSizer()
298 return new wxGridSizer(GetLong(wxT("rows")), GetLong(wxT("cols")),
299 GetDimension(wxT("vgap")), GetDimension(wxT("hgap")));
303 wxSizer
* wxSizerXmlHandler::Handle_wxFlexGridSizer()
305 wxFlexGridSizer
*sizer
=
306 new wxFlexGridSizer(GetLong(wxT("rows")), GetLong(wxT("cols")),
307 GetDimension(wxT("vgap")), GetDimension(wxT("hgap")));
308 SetGrowables(sizer
, wxT("growablerows"), true);
309 SetGrowables(sizer
, wxT("growablecols"), false);
314 wxSizer
* wxSizerXmlHandler::Handle_wxGridBagSizer()
316 wxGridBagSizer
*sizer
=
317 new wxGridBagSizer(GetDimension(wxT("vgap")), GetDimension(wxT("hgap")));
318 SetGrowables(sizer
, wxT("growablerows"), true);
319 SetGrowables(sizer
, wxT("growablecols"), false);
323 wxSizer
* wxSizerXmlHandler::Handle_wxWrapSizer()
325 wxWrapSizer
*sizer
= new wxWrapSizer(GetStyle("orient"), GetStyle("flag"));
331 void wxSizerXmlHandler::SetGrowables(wxFlexGridSizer
* sizer
,
335 wxStringTokenizer tkn
;
337 tkn
.SetString(GetParamValue(param
), wxT(","));
338 while (tkn
.HasMoreTokens())
340 if (!tkn
.GetNextToken().ToULong(&l
))
341 wxLogError(wxT("growable[rows|cols] must be comma-separated list of row numbers"));
344 sizer
->AddGrowableRow(l
);
346 sizer
->AddGrowableCol(l
);
352 wxGBPosition
wxSizerXmlHandler::GetGBPos(const wxString
& param
)
354 wxSize sz
= GetSize(param
);
355 if (sz
.x
< 0) sz
.x
= 0;
356 if (sz
.y
< 0) sz
.y
= 0;
357 return wxGBPosition(sz
.x
, sz
.y
);
360 wxGBSpan
wxSizerXmlHandler::GetGBSpan(const wxString
& param
)
362 wxSize sz
= GetSize(param
);
363 if (sz
.x
< 1) sz
.x
= 1;
364 if (sz
.y
< 1) sz
.y
= 1;
365 return wxGBSpan(sz
.x
, sz
.y
);
370 wxSizerItem
* wxSizerXmlHandler::MakeSizerItem()
373 return new wxGBSizerItem();
375 return new wxSizerItem();
378 void wxSizerXmlHandler::SetSizerItemAttributes(wxSizerItem
* sitem
)
380 sitem
->SetProportion(GetLong(wxT("option"))); // Should this check for "proportion" too?
381 sitem
->SetFlag(GetStyle(wxT("flag")));
382 sitem
->SetBorder(GetDimension(wxT("border")));
383 wxSize sz
= GetSize(wxT("minsize"));
384 if (!(sz
== wxDefaultSize
))
385 sitem
->SetMinSize(sz
);
386 sz
= GetSize(wxT("ratio"));
387 if (!(sz
== wxDefaultSize
))
392 wxGBSizerItem
* gbsitem
= (wxGBSizerItem
*)sitem
;
393 gbsitem
->SetPos(GetGBPos(wxT("cellpos")));
394 gbsitem
->SetSpan(GetGBSpan(wxT("cellspan")));
397 // record the id of the item, if any, for use by XRCSIZERITEM()
398 sitem
->SetId(GetID());
401 void wxSizerXmlHandler::AddSizerItem(wxSizerItem
* sitem
)
404 ((wxGridBagSizer
*)m_parentSizer
)->Add((wxGBSizerItem
*)sitem
);
406 m_parentSizer
->Add(sitem
);
411 //-----------------------------------------------------------------------------
412 // wxStdDialogButtonSizerXmlHandler
413 //-----------------------------------------------------------------------------
416 IMPLEMENT_DYNAMIC_CLASS(wxStdDialogButtonSizerXmlHandler
, wxXmlResourceHandler
)
418 wxStdDialogButtonSizerXmlHandler::wxStdDialogButtonSizerXmlHandler()
419 : m_isInside(false), m_parentSizer(NULL
)
423 wxObject
*wxStdDialogButtonSizerXmlHandler::DoCreateResource()
425 if (m_class
== wxT("wxStdDialogButtonSizer"))
427 wxASSERT( !m_parentSizer
);
429 wxSizer
*s
= m_parentSizer
= new wxStdDialogButtonSizer
;
432 CreateChildren(m_parent
, true/*only this handler*/);
434 m_parentSizer
->Realize();
437 m_parentSizer
= NULL
;
441 else // m_class == "button"
443 wxASSERT( m_parentSizer
);
445 // find the item to be managed by this sizeritem
446 wxXmlNode
*n
= GetParamNode(wxT("object"));
448 n
= GetParamNode(wxT("object_ref"));
453 wxObject
*item
= CreateResFromNode(n
, m_parent
, NULL
);
454 wxButton
*button
= wxDynamicCast(item
, wxButton
);
457 m_parentSizer
->AddButton(button
);
459 wxLogError(wxT("Error in resource - expected button."));
465 wxLogError(wxT("Error in resource: no button within wxStdDialogButtonSizer."));
471 bool wxStdDialogButtonSizerXmlHandler::CanHandle(wxXmlNode
*node
)
473 return (!m_isInside
&& IsOfClass(node
, wxT("wxStdDialogButtonSizer"))) ||
474 (m_isInside
&& IsOfClass(node
, wxT("button")));
476 #endif // wxUSE_BUTTON