Add missing styles support to wxWindow XRC handler.
[wxWidgets.git] / src / xrc / xh_sizer.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xh_sizer.cpp
3 // Purpose: XRC resource for wxBoxSizer
4 // Author: Vaclav Slavik
5 // Created: 2000/03/21
6 // RCS-ID: $Id$
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
13
14 #ifdef __BORLANDC__
15 #pragma hdrstop
16 #endif
17
18 #if wxUSE_XRC
19
20 #include "wx/xrc/xh_sizer.h"
21
22 #ifndef WX_PRECOMP
23 #include "wx/log.h"
24 #include "wx/panel.h"
25 #include "wx/statbox.h"
26 #include "wx/sizer.h"
27 #include "wx/frame.h"
28 #include "wx/dialog.h"
29 #include "wx/button.h"
30 #include "wx/scrolwin.h"
31 #endif
32
33 #include "wx/gbsizer.h"
34 #include "wx/wrapsizer.h"
35 #include "wx/notebook.h"
36 #include "wx/tokenzr.h"
37
38
39 //-----------------------------------------------------------------------------
40 // wxSizerXmlHandler
41 //-----------------------------------------------------------------------------
42
43 IMPLEMENT_DYNAMIC_CLASS(wxSizerXmlHandler, wxXmlResourceHandler)
44
45 wxSizerXmlHandler::wxSizerXmlHandler()
46 :wxXmlResourceHandler(),
47 m_isInside(false),
48 m_isGBS(false),
49 m_parentSizer(NULL)
50 {
51 XRC_ADD_STYLE(wxHORIZONTAL);
52 XRC_ADD_STYLE(wxVERTICAL);
53
54 // and flags
55 XRC_ADD_STYLE(wxLEFT);
56 XRC_ADD_STYLE(wxRIGHT);
57 XRC_ADD_STYLE(wxTOP);
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);
63 XRC_ADD_STYLE(wxALL);
64
65 XRC_ADD_STYLE(wxGROW);
66 XRC_ADD_STYLE(wxEXPAND);
67 XRC_ADD_STYLE(wxSHAPED);
68 XRC_ADD_STYLE(wxSTRETCH_NOT);
69
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);
80
81 XRC_ADD_STYLE(wxFIXED_MINSIZE);
82 XRC_ADD_STYLE(wxRESERVE_SPACE_EVEN_IF_HIDDEN);
83
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
86 // of it
87 AddStyle("wxADJUST_MINSIZE", 0);
88
89 // wxWrapSizer-specific flags
90 XRC_ADD_STYLE(wxEXTEND_LAST_ON_EACH_LINE);
91 XRC_ADD_STYLE(wxREMOVE_LEADING_SPACES);
92 }
93
94
95
96 bool wxSizerXmlHandler::CanHandle(wxXmlNode *node)
97 {
98 return ( (!m_isInside && IsSizerNode(node)) ||
99 (m_isInside && IsOfClass(node, wxT("sizeritem"))) ||
100 (m_isInside && IsOfClass(node, wxT("spacer")))
101 );
102 }
103
104
105 wxObject* wxSizerXmlHandler::DoCreateResource()
106 {
107 if (m_class == wxT("sizeritem"))
108 return Handle_sizeritem();
109
110 else if (m_class == wxT("spacer"))
111 return Handle_spacer();
112
113 else
114 return Handle_sizer();
115 }
116
117
118 wxSizer* wxSizerXmlHandler::DoCreateSizer(const wxString& name)
119 {
120 if (name == wxT("wxBoxSizer"))
121 return Handle_wxBoxSizer();
122 #if wxUSE_STATBOX
123 else if (name == wxT("wxStaticBoxSizer"))
124 return Handle_wxStaticBoxSizer();
125 #endif
126 else if (name == wxT("wxGridSizer"))
127 {
128 if ( !ValidateGridSizerChildren() )
129 return NULL;
130 return Handle_wxGridSizer();
131 }
132 else if (name == wxT("wxFlexGridSizer"))
133 {
134 return Handle_wxFlexGridSizer();
135 }
136 else if (name == wxT("wxGridBagSizer"))
137 {
138 return Handle_wxGridBagSizer();
139 }
140 else if (name == wxT("wxWrapSizer"))
141 {
142 return Handle_wxWrapSizer();
143 }
144
145 ReportError(wxString::Format("unknown sizer class \"%s\"", name));
146 return NULL;
147 }
148
149
150
151 bool wxSizerXmlHandler::IsSizerNode(wxXmlNode *node) const
152 {
153 return (IsOfClass(node, wxT("wxBoxSizer"))) ||
154 (IsOfClass(node, wxT("wxStaticBoxSizer"))) ||
155 (IsOfClass(node, wxT("wxGridSizer"))) ||
156 (IsOfClass(node, wxT("wxFlexGridSizer"))) ||
157 (IsOfClass(node, wxT("wxGridBagSizer"))) ||
158 (IsOfClass(node, wxT("wxWrapSizer")));
159 }
160
161
162 wxObject* wxSizerXmlHandler::Handle_sizeritem()
163 {
164 // find the item to be managed by this sizeritem
165 wxXmlNode *n = GetParamNode(wxT("object"));
166 if ( !n )
167 n = GetParamNode(wxT("object_ref"));
168
169 // did we find one?
170 if (n)
171 {
172 // create a sizer item for it
173 wxSizerItem* sitem = MakeSizerItem();
174
175 // now fetch the item to be managed
176 bool old_gbs = m_isGBS;
177 bool old_ins = m_isInside;
178 wxSizer *old_par = m_parentSizer;
179 m_isInside = false;
180 if (!IsSizerNode(n)) m_parentSizer = NULL;
181 wxObject *item = CreateResFromNode(n, m_parent, NULL);
182 m_isInside = old_ins;
183 m_parentSizer = old_par;
184 m_isGBS = old_gbs;
185
186 // and figure out what type it is
187 wxSizer *sizer = wxDynamicCast(item, wxSizer);
188 wxWindow *wnd = wxDynamicCast(item, wxWindow);
189
190 if (sizer)
191 sitem->AssignSizer(sizer);
192 else if (wnd)
193 sitem->AssignWindow(wnd);
194 else
195 ReportError(n, "unexpected item in sizer");
196
197 // finally, set other wxSizerItem attributes
198 SetSizerItemAttributes(sitem);
199
200 AddSizerItem(sitem);
201 return item;
202 }
203 else /*n == NULL*/
204 {
205 ReportError("no window/sizer/spacer within sizeritem object");
206 return NULL;
207 }
208 }
209
210
211 wxObject* wxSizerXmlHandler::Handle_spacer()
212 {
213 if ( !m_parentSizer )
214 {
215 ReportError("spacer only allowed inside a sizer");
216 return NULL;
217 }
218
219 wxSizerItem* sitem = MakeSizerItem();
220 SetSizerItemAttributes(sitem);
221 sitem->AssignSpacer(GetSize());
222 AddSizerItem(sitem);
223 return NULL;
224 }
225
226
227 wxObject* wxSizerXmlHandler::Handle_sizer()
228 {
229 wxXmlNode *parentNode = m_node->GetParent();
230
231 if ( !m_parentSizer &&
232 (!parentNode || parentNode->GetType() != wxXML_ELEMENT_NODE ||
233 !m_parentAsWindow) )
234 {
235 ReportError("sizer must have a window parent");
236 return NULL;
237 }
238
239 // Create the sizer of the appropriate class.
240 wxSizer * const sizer = DoCreateSizer(m_class);
241
242 // creation of sizer failed for some (already reported) reason, so exit:
243 if ( !sizer )
244 return NULL;
245
246 wxSize minsize = GetSize(wxT("minsize"));
247 if (!(minsize == wxDefaultSize))
248 sizer->SetMinSize(minsize);
249
250 // save state
251 wxSizer *old_par = m_parentSizer;
252 bool old_ins = m_isInside;
253
254 // set new state
255 m_parentSizer = sizer;
256 m_isInside = true;
257 m_isGBS = (m_class == wxT("wxGridBagSizer"));
258
259 wxObject* parent = m_parent;
260 #if wxUSE_STATBOX
261 // wxStaticBoxSizer's child controls should be parented by the box itself,
262 // not its parent.
263 wxStaticBoxSizer* const stsizer = wxDynamicCast(sizer, wxStaticBoxSizer);
264 if ( stsizer )
265 parent = stsizer->GetStaticBox();
266 #endif // wxUSE_STATBOX
267
268 CreateChildren(parent, true/*only this handler*/);
269
270 // set growable rows and cols for sizers which support this
271 if ( wxFlexGridSizer *flexsizer = wxDynamicCast(sizer, wxFlexGridSizer) )
272 {
273 SetGrowables(flexsizer, wxT("growablerows"), true);
274 SetGrowables(flexsizer, wxT("growablecols"), false);
275 }
276
277 // restore state
278 m_isInside = old_ins;
279 m_parentSizer = old_par;
280
281 if (m_parentSizer == NULL) // setup window:
282 {
283 m_parentAsWindow->SetSizer(sizer);
284
285 wxXmlNode *nd = m_node;
286 m_node = parentNode;
287 if (GetSize() == wxDefaultSize)
288 {
289 if ( wxDynamicCast(m_parentAsWindow, wxScrolledWindow) != NULL )
290 {
291 sizer->FitInside(m_parentAsWindow);
292 }
293 else
294 {
295 sizer->Fit(m_parentAsWindow);
296 }
297 }
298 m_node = nd;
299
300 if (m_parentAsWindow->IsTopLevel())
301 {
302 sizer->SetSizeHints(m_parentAsWindow);
303 }
304 }
305
306 return sizer;
307 }
308
309
310 wxSizer* wxSizerXmlHandler::Handle_wxBoxSizer()
311 {
312 return new wxBoxSizer(GetStyle(wxT("orient"), wxHORIZONTAL));
313 }
314
315 #if wxUSE_STATBOX
316 wxSizer* wxSizerXmlHandler::Handle_wxStaticBoxSizer()
317 {
318 return new wxStaticBoxSizer(
319 new wxStaticBox(m_parentAsWindow,
320 GetID(),
321 GetText(wxT("label")),
322 wxDefaultPosition, wxDefaultSize,
323 0/*style*/,
324 GetName()),
325 GetStyle(wxT("orient"), wxHORIZONTAL));
326 }
327 #endif // wxUSE_STATBOX
328
329 wxSizer* wxSizerXmlHandler::Handle_wxGridSizer()
330 {
331 return new wxGridSizer(GetLong(wxT("rows")), GetLong(wxT("cols")),
332 GetDimension(wxT("vgap")), GetDimension(wxT("hgap")));
333 }
334
335
336 wxFlexGridSizer* wxSizerXmlHandler::Handle_wxFlexGridSizer()
337 {
338 if ( !ValidateGridSizerChildren() )
339 return NULL;
340 return new wxFlexGridSizer(GetLong(wxT("rows")), GetLong(wxT("cols")),
341 GetDimension(wxT("vgap")), GetDimension(wxT("hgap")));
342 }
343
344
345 wxGridBagSizer* wxSizerXmlHandler::Handle_wxGridBagSizer()
346 {
347 if ( !ValidateGridSizerChildren() )
348 return NULL;
349 return new wxGridBagSizer(GetDimension(wxT("vgap")), GetDimension(wxT("hgap")));
350 }
351
352 wxSizer* wxSizerXmlHandler::Handle_wxWrapSizer()
353 {
354 wxWrapSizer *sizer = new wxWrapSizer(GetStyle("orient"), GetStyle("flag"));
355 return sizer;
356 }
357
358
359 bool wxSizerXmlHandler::ValidateGridSizerChildren()
360 {
361 int rows = GetLong("rows");
362 int cols = GetLong("cols");
363
364 if ( rows && cols )
365 {
366 // fixed number of cells, need to verify children count
367 int children = 0;
368 for ( wxXmlNode *n = m_node->GetChildren(); n; n = n->GetNext() )
369 {
370 if ( n->GetType() == wxXML_ELEMENT_NODE &&
371 (n->GetName() == "object" || n->GetName() == "object_ref") )
372 {
373 children++;
374 }
375 }
376
377 if ( children > rows * cols )
378 {
379 ReportError
380 (
381 wxString::Format
382 (
383 "too many children in grid sizer: %d > %d x %d"
384 " (consider omitting the number of rows or columns)",
385 children,
386 cols,
387 rows
388 )
389 );
390 return false;
391 }
392 }
393
394 return true;
395 }
396
397
398 void wxSizerXmlHandler::SetGrowables(wxFlexGridSizer* sizer,
399 const wxChar* param,
400 bool rows)
401 {
402 int nrows, ncols;
403 sizer->CalcRowsCols(nrows, ncols);
404 const int nslots = rows ? nrows : ncols;
405
406 wxStringTokenizer tkn;
407 tkn.SetString(GetParamValue(param), wxT(","));
408
409 while (tkn.HasMoreTokens())
410 {
411 unsigned long l;
412 if (!tkn.GetNextToken().ToULong(&l))
413 {
414 ReportParamError
415 (
416 param,
417 "value must be comma-separated list of row numbers"
418 );
419 break;
420 }
421
422 const int n = static_cast<int>(l);
423 if ( n >= nslots )
424 {
425 ReportParamError
426 (
427 param,
428 wxString::Format
429 (
430 "invalid %s index %d: must be less than %d",
431 rows ? "row" : "column",
432 n,
433 nslots
434 )
435 );
436
437 // ignore incorrect value, still try to process the rest
438 continue;
439 }
440
441 if (rows)
442 sizer->AddGrowableRow(n);
443 else
444 sizer->AddGrowableCol(n);
445 }
446 }
447
448
449 wxGBPosition wxSizerXmlHandler::GetGBPos(const wxString& param)
450 {
451 wxSize sz = GetSize(param);
452 if (sz.x < 0) sz.x = 0;
453 if (sz.y < 0) sz.y = 0;
454 return wxGBPosition(sz.x, sz.y);
455 }
456
457 wxGBSpan wxSizerXmlHandler::GetGBSpan(const wxString& param)
458 {
459 wxSize sz = GetSize(param);
460 if (sz.x < 1) sz.x = 1;
461 if (sz.y < 1) sz.y = 1;
462 return wxGBSpan(sz.x, sz.y);
463 }
464
465
466
467 wxSizerItem* wxSizerXmlHandler::MakeSizerItem()
468 {
469 if (m_isGBS)
470 return new wxGBSizerItem();
471 else
472 return new wxSizerItem();
473 }
474
475 void wxSizerXmlHandler::SetSizerItemAttributes(wxSizerItem* sitem)
476 {
477 sitem->SetProportion(GetLong(wxT("option"))); // Should this check for "proportion" too?
478 sitem->SetFlag(GetStyle(wxT("flag")));
479 sitem->SetBorder(GetDimension(wxT("border")));
480 wxSize sz = GetSize(wxT("minsize"));
481 if (!(sz == wxDefaultSize))
482 sitem->SetMinSize(sz);
483 sz = GetSize(wxT("ratio"));
484 if (!(sz == wxDefaultSize))
485 sitem->SetRatio(sz);
486
487 if (m_isGBS)
488 {
489 wxGBSizerItem* gbsitem = (wxGBSizerItem*)sitem;
490 gbsitem->SetPos(GetGBPos(wxT("cellpos")));
491 gbsitem->SetSpan(GetGBSpan(wxT("cellspan")));
492 }
493
494 // record the id of the item, if any, for use by XRCSIZERITEM()
495 sitem->SetId(GetID());
496 }
497
498 void wxSizerXmlHandler::AddSizerItem(wxSizerItem* sitem)
499 {
500 if (m_isGBS)
501 ((wxGridBagSizer*)m_parentSizer)->Add((wxGBSizerItem*)sitem);
502 else
503 m_parentSizer->Add(sitem);
504 }
505
506
507
508 //-----------------------------------------------------------------------------
509 // wxStdDialogButtonSizerXmlHandler
510 //-----------------------------------------------------------------------------
511 #if wxUSE_BUTTON
512
513 IMPLEMENT_DYNAMIC_CLASS(wxStdDialogButtonSizerXmlHandler, wxXmlResourceHandler)
514
515 wxStdDialogButtonSizerXmlHandler::wxStdDialogButtonSizerXmlHandler()
516 : m_isInside(false), m_parentSizer(NULL)
517 {
518 }
519
520 wxObject *wxStdDialogButtonSizerXmlHandler::DoCreateResource()
521 {
522 if (m_class == wxT("wxStdDialogButtonSizer"))
523 {
524 wxASSERT( !m_parentSizer );
525
526 wxSizer *s = m_parentSizer = new wxStdDialogButtonSizer;
527 m_isInside = true;
528
529 CreateChildren(m_parent, true/*only this handler*/);
530
531 m_parentSizer->Realize();
532
533 m_isInside = false;
534 m_parentSizer = NULL;
535
536 return s;
537 }
538 else // m_class == "button"
539 {
540 wxASSERT( m_parentSizer );
541
542 // find the item to be managed by this sizeritem
543 wxXmlNode *n = GetParamNode(wxT("object"));
544 if ( !n )
545 n = GetParamNode(wxT("object_ref"));
546
547 // did we find one?
548 if (n)
549 {
550 wxObject *item = CreateResFromNode(n, m_parent, NULL);
551 wxButton *button = wxDynamicCast(item, wxButton);
552
553 if (button)
554 m_parentSizer->AddButton(button);
555 else
556 ReportError(n, "expected wxButton");
557
558 return item;
559 }
560 else /*n == NULL*/
561 {
562 ReportError("no button within wxStdDialogButtonSizer");
563 return NULL;
564 }
565 }
566 }
567
568 bool wxStdDialogButtonSizerXmlHandler::CanHandle(wxXmlNode *node)
569 {
570 return (!m_isInside && IsOfClass(node, wxT("wxStdDialogButtonSizer"))) ||
571 (m_isInside && IsOfClass(node, wxT("button")));
572 }
573 #endif // wxUSE_BUTTON
574
575 #endif // wxUSE_XRC