]> git.saurik.com Git - wxWidgets.git/blame - src/common/sizer.cpp
Added wxGUIAppTraits::GetOSVersion() implementation.
[wxWidgets.git] / src / common / sizer.cpp
CommitLineData
5279a24d
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: sizer.cpp
1044a386 3// Purpose: provide new wxSizer class for layout
aa5973ee
JS
4// Author: Robert Roebling and Robin Dunn, contributions by
5// Dirk Holtwick, Ron Lee
566d84a7 6// Modified by: Ron Lee
0c0d686f 7// Created:
5279a24d 8// RCS-ID: $Id$
aa5973ee 9// Copyright: (c) Robin Dunn, Robert Roebling
5279a24d
RR
10// Licence: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
5279a24d 13#ifdef __GNUG__
c62ac5b6 14#pragma implementation "sizer.h"
5279a24d
RR
15#endif
16
77671fd2
VZ
17// For compilers that support precompilation, includes "wx.h".
18#include "wx/wxprec.h"
19
20#ifdef __BORLANDC__
21 #pragma hdrstop
22#endif
23
5279a24d 24#include "wx/sizer.h"
61d514bb 25#include "wx/utils.h"
27ea1d8a 26#include "wx/statbox.h"
83edc0a5 27#include "wx/notebook.h"
12a3f227 28#include <wx/listimpl.cpp>
5279a24d 29
0c0d686f
RD
30//---------------------------------------------------------------------------
31
9cbee2ce
RL
32IMPLEMENT_CLASS(wxSizerItem, wxObject)
33IMPLEMENT_CLASS(wxSizer, wxObject)
34IMPLEMENT_CLASS(wxGridSizer, wxSizer)
35IMPLEMENT_CLASS(wxFlexGridSizer, wxGridSizer)
36IMPLEMENT_CLASS(wxBoxSizer, wxSizer)
1e6feb95 37#if wxUSE_STATBOX
9cbee2ce 38IMPLEMENT_CLASS(wxStaticBoxSizer, wxBoxSizer)
1e6feb95 39#endif
60be2f47 40#if wxUSE_NOTEBOOK
9cbee2ce 41IMPLEMENT_CLASS(wxNotebookSizer, wxSizer)
60be2f47 42#endif
0c0d686f 43
12a3f227
RL
44WX_DEFINE_EXPORTED_LIST( wxSizerItemList );
45
46
5279a24d 47//---------------------------------------------------------------------------
3417c2cd 48// wxSizerItem
5279a24d
RR
49//---------------------------------------------------------------------------
50
12a3f227
RL
51wxSizerItem::wxSizerItem( int width, int height, int proportion, int flag, int border, wxObject* userData )
52 : m_window( NULL )
53 , m_sizer( NULL )
00976fe5
RL
54 , m_size( wxSize( width, height ) ) // size is set directly
55 , m_minSize( m_size ) // minimal size is the initial size
12a3f227 56 , m_proportion( proportion )
00976fe5
RL
57 , m_border( border )
58 , m_flag( flag )
e0d8fb45 59 , m_show( true )
00976fe5 60 , m_userData( userData )
5279a24d 61{
00976fe5 62 SetRatio( m_size );
5279a24d
RR
63}
64
12a3f227 65wxSizerItem::wxSizerItem( wxWindow *window, int proportion, int flag, int border, wxObject* userData )
00976fe5 66 : m_window( window )
12a3f227 67 , m_sizer( NULL )
00976fe5 68 , m_minSize( window->GetSize() ) // minimal size is the initial size
12a3f227 69 , m_proportion( proportion )
00976fe5
RL
70 , m_border( border )
71 , m_flag( flag )
e0d8fb45 72 , m_show( true )
00976fe5 73 , m_userData( userData )
5279a24d 74{
be2577e4 75 // aspect ratio calculated from initial size
00976fe5 76 SetRatio( m_minSize );
be2577e4 77
00976fe5 78 // m_size is calculated later
5279a24d
RR
79}
80
12a3f227
RL
81wxSizerItem::wxSizerItem( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData )
82 : m_window( NULL )
00976fe5 83 , m_sizer( sizer )
12a3f227 84 , m_proportion( proportion )
00976fe5
RL
85 , m_border( border )
86 , m_flag( flag )
e0d8fb45 87 , m_show( true )
12a3f227 88 , m_ratio( 0.0 )
00976fe5 89 , m_userData( userData )
5279a24d 90{
00976fe5
RL
91 // m_minSize is calculated later
92 // m_size is calculated later
5279a24d
RR
93}
94
0c0d686f
RD
95wxSizerItem::~wxSizerItem()
96{
97 if (m_userData)
98 delete m_userData;
96fdbb60 99 if (m_sizer)
0c0d686f
RD
100 delete m_sizer;
101}
102
103
9cbee2ce 104wxSize wxSizerItem::GetSize() const
5279a24d 105{
d597fcb7 106 wxSize ret;
3417c2cd 107 if (IsSizer())
d597fcb7
RR
108 ret = m_sizer->GetSize();
109 else
c62ac5b6 110 if (IsWindow())
d597fcb7
RR
111 ret = m_window->GetSize();
112 else ret = m_size;
0c0d686f 113
d597fcb7
RR
114 if (m_flag & wxWEST)
115 ret.x += m_border;
116 if (m_flag & wxEAST)
117 ret.x += m_border;
118 if (m_flag & wxNORTH)
119 ret.y += m_border;
120 if (m_flag & wxSOUTH)
121 ret.y += m_border;
0c0d686f 122
d597fcb7 123 return ret;
5279a24d
RR
124}
125
3417c2cd 126wxSize wxSizerItem::CalcMin()
c62ac5b6 127{
d597fcb7 128 wxSize ret;
3417c2cd 129 if (IsSizer())
be2577e4 130 {
f6bcfd97 131 ret = m_sizer->GetMinSize();
d13d8d4e 132
be2577e4
RD
133 // if we have to preserve aspect ratio _AND_ this is
134 // the first-time calculation, consider ret to be initial size
d13d8d4e
VZ
135 if ((m_flag & wxSHAPED) && !m_ratio)
136 SetRatio(ret);
be2577e4 137 }
d597fcb7 138 else
d13d8d4e
VZ
139 {
140 if ( IsWindow() && (m_flag & wxADJUST_MINSIZE) )
141 {
2b5f62a0
VZ
142 // By user request, keep the minimal size for this item
143 // in sync with the largest of BestSize and any user supplied
144 // minimum size hint. Useful in cases where the item is
145 // changeable -- static text labels, etc.
146 m_minSize = m_window->GetAdjustedBestSize();
d13d8d4e
VZ
147 }
148
149 ret = m_minSize;
150 }
0c0d686f 151
d597fcb7
RR
152 if (m_flag & wxWEST)
153 ret.x += m_border;
154 if (m_flag & wxEAST)
155 ret.x += m_border;
156 if (m_flag & wxNORTH)
157 ret.y += m_border;
158 if (m_flag & wxSOUTH)
159 ret.y += m_border;
0c0d686f 160
d597fcb7 161 return ret;
c62ac5b6
RR
162}
163
3417c2cd 164void wxSizerItem::SetDimension( wxPoint pos, wxSize size )
c62ac5b6 165{
cdddaeea 166 if (m_flag & wxSHAPED)
d597fcb7 167 {
be2577e4
RD
168 // adjust aspect ratio
169 int rwidth = (int) (size.y * m_ratio);
cdddaeea
VZ
170 if (rwidth > size.x)
171 {
be2577e4
RD
172 // fit horizontally
173 int rheight = (int) (size.x / m_ratio);
174 // add vertical space
175 if (m_flag & wxALIGN_CENTER_VERTICAL)
176 pos.y += (size.y - rheight) / 2;
177 else if (m_flag & wxALIGN_BOTTOM)
178 pos.y += (size.y - rheight);
179 // use reduced dimensions
180 size.y =rheight;
cdddaeea
VZ
181 }
182 else if (rwidth < size.x)
183 {
be2577e4
RD
184 // add horizontal space
185 if (m_flag & wxALIGN_CENTER_HORIZONTAL)
186 pos.x += (size.x - rwidth) / 2;
187 else if (m_flag & wxALIGN_RIGHT)
188 pos.x += (size.x - rwidth);
189 size.x = rwidth;
190 }
191 }
33ac7e6f 192
cdddaeea
VZ
193 // This is what GetPosition() returns. Since we calculate
194 // borders afterwards, GetPosition() will be the left/top
195 // corner of the surrounding border.
196 m_pos = pos;
197
198 if (m_flag & wxWEST)
199 {
200 pos.x += m_border;
201 size.x -= m_border;
202 }
203 if (m_flag & wxEAST)
204 {
205 size.x -= m_border;
206 }
207 if (m_flag & wxNORTH)
208 {
209 pos.y += m_border;
210 size.y -= m_border;
211 }
212 if (m_flag & wxSOUTH)
213 {
214 size.y -= m_border;
215 }
0c0d686f 216
3417c2cd 217 if (IsSizer())
c62ac5b6 218 m_sizer->SetDimension( pos.x, pos.y, size.x, size.y );
0c0d686f 219
c62ac5b6 220 if (IsWindow())
b919f007 221 m_window->SetSize( pos.x, pos.y, size.x, size.y, wxSIZE_ALLOW_MINUS_ONE );
d597fcb7
RR
222
223 m_size = size;
c62ac5b6
RR
224}
225
84f7908b
RR
226void wxSizerItem::DeleteWindows()
227{
228 if (m_window)
229 m_window->Destroy();
be90c029 230
84f7908b
RR
231 if (m_sizer)
232 m_sizer->DeleteWindows();
233}
234
9cbee2ce 235bool wxSizerItem::IsWindow() const
5279a24d
RR
236{
237 return (m_window != NULL);
238}
239
9cbee2ce 240bool wxSizerItem::IsSizer() const
5279a24d
RR
241{
242 return (m_sizer != NULL);
243}
244
9cbee2ce 245bool wxSizerItem::IsSpacer() const
5279a24d
RR
246{
247 return (m_window == NULL) && (m_sizer == NULL);
248}
249
12a3f227
RL
250void wxSizerItem::Show( bool show )
251{
252 m_show = show;
253
254 if( IsWindow() )
255 m_window->Show( show );
256 else if( IsSizer() )
257 m_sizer->ShowItems( show );
258
259 // ... nothing else to do to hide/show spacers
260}
261
262void wxSizerItem::SetOption( int option )
263{
264 SetProportion( option );
265}
266
267int wxSizerItem::GetOption() const
268{
269 return GetProportion();
270}
271
272
5279a24d 273//---------------------------------------------------------------------------
3417c2cd 274// wxSizer
5279a24d
RR
275//---------------------------------------------------------------------------
276
3417c2cd 277wxSizer::wxSizer()
12a3f227 278 : m_minSize( wxSize( 0, 0 ) )
5279a24d 279{
e0d8fb45 280 m_children.DeleteContents( true );
5279a24d
RR
281}
282
3417c2cd 283wxSizer::~wxSizer()
5279a24d 284{
be90c029 285 Clear();
5279a24d 286}
0c0d686f 287
12a3f227 288void wxSizer::Add( wxWindow *window, int proportion, int flag, int border, wxObject* userData )
5279a24d 289{
12a3f227
RL
290 m_children.Append( new wxSizerItem( window, proportion, flag, border, userData ) );
291 window->SetContainingSizer( this );
5279a24d
RR
292}
293
12a3f227 294void wxSizer::Add( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData )
5279a24d 295{
12a3f227 296 m_children.Append( new wxSizerItem( sizer, proportion, flag, border, userData ) );
5279a24d
RR
297}
298
12a3f227 299void wxSizer::Add( int width, int height, int proportion, int flag, int border, wxObject* userData )
5279a24d 300{
12a3f227 301 m_children.Append( new wxSizerItem( width, height, proportion, flag, border, userData ) );
5279a24d
RR
302}
303
12a3f227 304void wxSizer::Add( wxSizerItem *item )
42b4e99e 305{
12a3f227
RL
306 m_children.Append( item );
307
308 if( item->GetWindow() )
309 item->GetWindow()->SetContainingSizer( this );
42b4e99e
RR
310}
311
12a3f227 312void wxSizer::Prepend( wxWindow *window, int proportion, int flag, int border, wxObject* userData )
42b4e99e 313{
12a3f227
RL
314 m_children.Insert( new wxSizerItem( window, proportion, flag, border, userData ) );
315 window->SetContainingSizer( this );
42b4e99e
RR
316}
317
12a3f227 318void wxSizer::Prepend( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData )
42b4e99e 319{
12a3f227 320 m_children.Insert( new wxSizerItem( sizer, proportion, flag, border, userData ) );
f35aa3da
RR
321}
322
12a3f227 323void wxSizer::Prepend( int width, int height, int proportion, int flag, int border, wxObject* userData )
f35aa3da 324{
12a3f227 325 m_children.Insert( new wxSizerItem( width, height, proportion, flag, border, userData ) );
f35aa3da
RR
326}
327
12a3f227 328void wxSizer::Prepend( wxSizerItem *item )
f35aa3da 329{
12a3f227
RL
330 m_children.Insert( item );
331
332 if( item->GetWindow() )
333 item->GetWindow()->SetContainingSizer( this );
f35aa3da
RR
334}
335
12a3f227
RL
336void wxSizer::Insert( size_t index,
337 wxWindow *window,
338 int proportion,
339 int flag,
340 int border,
341 wxObject* userData )
f35aa3da 342{
12a3f227
RL
343 m_children.Insert( index,
344 new wxSizerItem( window, proportion, flag, border, userData ) );
345 window->SetContainingSizer( this );
42b4e99e
RR
346}
347
12a3f227
RL
348void wxSizer::Insert( size_t index,
349 wxSizer *sizer,
350 int proportion,
351 int flag,
352 int border,
353 wxObject* userData )
42b4e99e 354{
12a3f227
RL
355 m_children.Insert( index,
356 new wxSizerItem( sizer, proportion, flag, border, userData ) );
357}
0c0d686f 358
12a3f227
RL
359void wxSizer::Insert( size_t index,
360 int width,
361 int height,
362 int proportion,
363 int flag,
364 int border,
365 wxObject* userData )
366{
367 m_children.Insert( index,
368 new wxSizerItem( width, height, proportion, flag, border, userData ) );
369}
370
371void wxSizer::Insert( size_t index, wxSizerItem *item )
372{
373 m_children.Insert( index, item );
0c0d686f 374
12a3f227
RL
375 if( item->GetWindow() )
376 item->GetWindow()->SetContainingSizer( this );
377}
378
379bool wxSizer::Remove( wxWindow *window )
380{
381 return Detach( window );
42b4e99e
RR
382}
383
384bool wxSizer::Remove( wxSizer *sizer )
385{
12a3f227 386 wxASSERT_MSG( sizer, _T("Removing NULL sizer") );
0c0d686f 387
12a3f227 388 wxSizerItemList::Node *node = m_children.GetFirst();
42b4e99e
RR
389 while (node)
390 {
12a3f227
RL
391 wxSizerItem *item = node->GetData();
392
3ca6a5f0 393 if (item->GetSizer() == sizer)
12a3f227
RL
394 return m_children.DeleteNode( node );
395
396 node = node->GetNext();
42b4e99e 397 }
0c0d686f 398
e0d8fb45 399 return false;
42b4e99e
RR
400}
401
e0d8fb45 402bool wxSizer::Remove( int index )
42b4e99e 403{
e0d8fb45
VZ
404 wxCHECK_MSG( index >= 0 && (size_t)index < m_children.GetCount(),
405 false,
12a3f227 406 _T("Remove index is out of range") );
0c0d686f 407
e0d8fb45 408 wxSizerItemList::Node *node = m_children.Item( index );
0c0d686f 409
e0d8fb45 410 wxCHECK_MSG( node, false, _T("Failed to find child node") );
12a3f227 411
e0d8fb45 412 wxSizerItem *item = node->GetData();
9cbee2ce
RL
413
414 if( item->IsWindow() )
415 item->GetWindow()->SetContainingSizer( NULL );
416
12a3f227 417 return m_children.DeleteNode( node );
42b4e99e 418}
0c0d686f 419
00976fe5
RL
420bool wxSizer::Detach( wxSizer *sizer )
421{
12a3f227 422 wxASSERT_MSG( sizer, _T("Detaching NULL sizer") );
00976fe5 423
12a3f227 424 wxSizerItemList::Node *node = m_children.GetFirst();
00976fe5
RL
425 while (node)
426 {
12a3f227
RL
427 wxSizerItem *item = node->GetData();
428
00976fe5
RL
429 if (item->GetSizer() == sizer)
430 {
96fdbb60 431 item->DetachSizer();
12a3f227
RL
432 return m_children.DeleteNode( node );
433 }
434 node = node->GetNext();
435 }
436
e0d8fb45 437 return false;
12a3f227
RL
438}
439
440bool wxSizer::Detach( wxWindow *window )
441{
442 wxASSERT_MSG( window, _T("Detaching NULL window") );
443
444 wxSizerItemList::Node *node = m_children.GetFirst();
445 while (node)
446 {
447 wxSizerItem *item = node->GetData();
448
449 if (item->GetWindow() == window)
450 {
451 item->GetWindow()->SetContainingSizer( NULL );
452 return m_children.DeleteNode( node );
00976fe5 453 }
12a3f227 454 node = node->GetNext();
00976fe5
RL
455 }
456
e0d8fb45 457 return false;
00976fe5
RL
458}
459
e0d8fb45 460bool wxSizer::Detach( int index )
00976fe5 461{
e0d8fb45
VZ
462 wxCHECK_MSG( index >= 0 && (size_t)index < m_children.GetCount(),
463 false,
12a3f227
RL
464 _T("Detach index is out of range") );
465
e0d8fb45 466 wxSizerItemList::Node *node = m_children.Item( index );
00976fe5 467
e0d8fb45 468 wxCHECK_MSG( node, false, _T("Failed to find child node") );
00976fe5 469
e0d8fb45 470 wxSizerItem *item = node->GetData();
9cbee2ce
RL
471
472 if( item->IsSizer() )
473 item->DetachSizer();
474 else if( item->IsWindow() )
475 item->GetWindow()->SetContainingSizer( NULL );
12a3f227
RL
476
477 return m_children.DeleteNode( node );
00976fe5
RL
478}
479
84f7908b
RR
480void wxSizer::Clear( bool delete_windows )
481{
be90c029 482 // First clear the ContainingSizer pointers
12a3f227 483 wxSizerItemList::Node *node = m_children.GetFirst();
be90c029
RD
484 while (node)
485 {
12a3f227
RL
486 wxSizerItem *item = node->GetData();
487
be90c029 488 if (item->IsWindow())
12a3f227
RL
489 item->GetWindow()->SetContainingSizer( NULL );
490 node = node->GetNext();
be90c029
RD
491 }
492
493 // Destroy the windows if needed
84f7908b
RR
494 if (delete_windows)
495 DeleteWindows();
be90c029
RD
496
497 // Now empty the list
84f7908b
RR
498 m_children.Clear();
499}
500
501void wxSizer::DeleteWindows()
502{
12a3f227 503 wxSizerItemList::Node *node = m_children.GetFirst();
84f7908b
RR
504 while (node)
505 {
12a3f227
RL
506 wxSizerItem *item = node->GetData();
507
84f7908b 508 item->DeleteWindows();
12a3f227 509 node = node->GetNext();
84f7908b
RR
510 }
511}
512
e5251d4f 513wxSize wxSizer::Fit( wxWindow *window )
5279a24d 514{
9ef2e675
GT
515 wxSize size;
516 if (window->IsTopLevel())
517 size = FitSize( window );
518 else
519 size = GetMinWindowSize( window );
520
77424cfb 521 window->SetSize( size );
e5251d4f
VZ
522
523 return size;
5279a24d
RR
524}
525
566d84a7
RL
526void wxSizer::FitInside( wxWindow *window )
527{
528 wxSize size;
529 if (window->IsTopLevel())
530 size = VirtualFitSize( window );
531 else
532 size = GetMinClientSize( window );
533
534 window->SetVirtualSize( size );
535}
536
3417c2cd 537void wxSizer::Layout()
c62ac5b6 538{
42b4e99e 539 CalcMin();
c62ac5b6
RR
540 RecalcSizes();
541}
542
3417c2cd 543void wxSizer::SetSizeHints( wxWindow *window )
5279a24d 544{
34c3ffca
RL
545 // Preserve the window's max size hints, but set the
546 // lower bound according to the sizer calculations.
547
e5251d4f
VZ
548 wxSize size = Fit( window );
549
34c3ffca
RL
550 window->SetSizeHints( size.x,
551 size.y,
552 window->GetMaxWidth(),
553 window->GetMaxHeight() );
5279a24d
RR
554}
555
566d84a7
RL
556void wxSizer::SetVirtualSizeHints( wxWindow *window )
557{
558 // Preserve the window's max size hints, but set the
559 // lower bound according to the sizer calculations.
560
561 FitInside( window );
562 wxSize size( window->GetVirtualSize() );
563 window->SetVirtualSizeHints( size.x,
564 size.y,
565 window->GetMaxWidth(),
566 window->GetMaxHeight() );
567}
568
9cbee2ce 569wxSize wxSizer::GetMaxWindowSize( wxWindow *window ) const
65ba4113 570{
34c3ffca 571 return window->GetMaxSize();
65ba4113
GT
572}
573
3417c2cd 574wxSize wxSizer::GetMinWindowSize( wxWindow *window )
5279a24d 575{
12a3f227
RL
576 wxSize minSize( GetMinSize() );
577 wxSize size( window->GetSize() );
578 wxSize client_size( window->GetClientSize() );
579
77671fd2 580 return wxSize( minSize.x+size.x-client_size.x,
0c0d686f 581 minSize.y+size.y-client_size.y );
5279a24d
RR
582}
583
65ba4113
GT
584// Return a window size that will fit within the screens dimensions
585wxSize wxSizer::FitSize( wxWindow *window )
586{
587 wxSize size = GetMinWindowSize( window );
588 wxSize sizeMax = GetMaxWindowSize( window );
589
34c3ffca
RL
590 // Limit the size if sizeMax != wxDefaultSize
591
592 if ( size.x > sizeMax.x && sizeMax.x != -1 )
65ba4113 593 size.x = sizeMax.x;
34c3ffca 594 if ( size.y > sizeMax.y && sizeMax.y != -1 )
65ba4113
GT
595 size.y = sizeMax.y;
596
597 return size;
598}
599
9cbee2ce 600wxSize wxSizer::GetMaxClientSize( wxWindow *window ) const
566d84a7
RL
601{
602 wxSize maxSize( window->GetMaxSize() );
603
604 if( maxSize != wxDefaultSize )
605 {
606 wxSize size( window->GetSize() );
607 wxSize client_size( window->GetClientSize() );
608
609 return wxSize( maxSize.x + client_size.x - size.x,
610 maxSize.y + client_size.y - size.y );
611 }
612 else
613 return wxDefaultSize;
614}
615
1b0674f7 616wxSize wxSizer::GetMinClientSize( wxWindow *WXUNUSED(window) )
566d84a7
RL
617{
618 return GetMinSize(); // Already returns client size.
619}
620
621wxSize wxSizer::VirtualFitSize( wxWindow *window )
622{
623 wxSize size = GetMinClientSize( window );
624 wxSize sizeMax = GetMaxClientSize( window );
625
626 // Limit the size if sizeMax != wxDefaultSize
627
628 if ( size.x > sizeMax.x && sizeMax.x != -1 )
629 size.x = sizeMax.x;
630 if ( size.y > sizeMax.y && sizeMax.y != -1 )
631 size.y = sizeMax.y;
632
633 return size;
634}
635
3417c2cd 636void wxSizer::SetDimension( int x, int y, int width, int height )
5279a24d
RR
637{
638 m_position.x = x;
639 m_position.y = y;
640 m_size.x = width;
641 m_size.y = height;
2b5f62a0 642 Layout();
5279a24d
RR
643}
644
f6bcfd97 645wxSize wxSizer::GetMinSize()
3ca6a5f0 646{
f6bcfd97
BP
647 wxSize ret( CalcMin() );
648 if (ret.x < m_minSize.x) ret.x = m_minSize.x;
649 if (ret.y < m_minSize.y) ret.y = m_minSize.y;
3ca6a5f0 650 return ret;
f6bcfd97
BP
651}
652
653void wxSizer::DoSetMinSize( int width, int height )
654{
655 m_minSize.x = width;
656 m_minSize.y = height;
657}
658
659bool wxSizer::DoSetItemMinSize( wxWindow *window, int width, int height )
660{
12a3f227
RL
661 wxASSERT_MSG( window, _T("SetMinSize for NULL window") );
662
663 // Is it our immediate child?
f6bcfd97 664
12a3f227 665 wxSizerItemList::Node *node = m_children.GetFirst();
f6bcfd97
BP
666 while (node)
667 {
12a3f227
RL
668 wxSizerItem *item = node->GetData();
669
3ca6a5f0
BP
670 if (item->GetWindow() == window)
671 {
f6bcfd97 672 item->SetInitSize( width, height );
e0d8fb45 673 return true;
3ca6a5f0 674 }
12a3f227 675 node = node->GetNext();
f6bcfd97
BP
676 }
677
12a3f227
RL
678 // No? Search any subsizers we own then
679
680 node = m_children.GetFirst();
f6bcfd97
BP
681 while (node)
682 {
12a3f227
RL
683 wxSizerItem *item = node->GetData();
684
685 if ( item->GetSizer() &&
686 item->GetSizer()->DoSetItemMinSize( window, width, height ) )
3ca6a5f0 687 {
12a3f227 688 // A child sizer found the requested windw, exit.
e0d8fb45 689 return true;
3ca6a5f0 690 }
12a3f227 691 node = node->GetNext();
f6bcfd97
BP
692 }
693
e0d8fb45 694 return false;
f6bcfd97
BP
695}
696
697bool wxSizer::DoSetItemMinSize( wxSizer *sizer, int width, int height )
698{
12a3f227 699 wxASSERT_MSG( sizer, _T("SetMinSize for NULL sizer") );
f6bcfd97 700
12a3f227
RL
701 // Is it our immediate child?
702
703 wxSizerItemList::Node *node = m_children.GetFirst();
f6bcfd97
BP
704 while (node)
705 {
12a3f227
RL
706 wxSizerItem *item = node->GetData();
707
3ca6a5f0
BP
708 if (item->GetSizer() == sizer)
709 {
f6bcfd97 710 item->GetSizer()->DoSetMinSize( width, height );
e0d8fb45 711 return true;
3ca6a5f0 712 }
12a3f227 713 node = node->GetNext();
f6bcfd97
BP
714 }
715
12a3f227
RL
716 // No? Search any subsizers we own then
717
718 node = m_children.GetFirst();
f6bcfd97
BP
719 while (node)
720 {
12a3f227
RL
721 wxSizerItem *item = node->GetData();
722
723 if ( item->GetSizer() &&
724 item->GetSizer()->DoSetItemMinSize( sizer, width, height ) )
3ca6a5f0 725 {
12a3f227 726 // A child found the requested sizer, exit.
e0d8fb45 727 return true;
3ca6a5f0 728 }
12a3f227 729 node = node->GetNext();
f6bcfd97
BP
730 }
731
e0d8fb45 732 return false;
f6bcfd97
BP
733}
734
12a3f227 735bool wxSizer::DoSetItemMinSize( size_t index, int width, int height )
f6bcfd97 736{
12a3f227
RL
737 wxSizerItemList::Node *node = m_children.Item( index );
738
e0d8fb45 739 wxCHECK_MSG( node, false, _T("Failed to find child node") );
12a3f227
RL
740
741 wxSizerItem *item = node->GetData();
f6bcfd97 742
f6bcfd97
BP
743 if (item->GetSizer())
744 {
0ca5105b 745 // Sizers contains the minimal size in them, if not calculated ...
f6bcfd97
BP
746 item->GetSizer()->DoSetMinSize( width, height );
747 }
748 else
749 {
0ca5105b 750 // ... but the minimal size of spacers and windows in stored in them
f6bcfd97
BP
751 item->SetInitSize( width, height );
752 }
753
e0d8fb45 754 return true;
f6bcfd97
BP
755}
756
12a3f227 757void wxSizer::Show( wxWindow *window, bool show )
2b5f62a0 758{
12a3f227
RL
759 wxASSERT_MSG( window, _T("Show for NULL window") );
760
761 wxSizerItemList::Node *node = m_children.GetFirst();
2b5f62a0
VZ
762 while (node)
763 {
12a3f227 764 wxSizerItem *item = node->GetData();
2b5f62a0 765
12a3f227 766 if (item->GetWindow() == window)
2b5f62a0 767 {
12a3f227
RL
768 item->Show( show );
769 break;
2b5f62a0 770 }
12a3f227 771 node = node->GetNext();
2b5f62a0
VZ
772 }
773}
774
12a3f227 775void wxSizer::Show( wxSizer *sizer, bool show )
2b5f62a0 776{
12a3f227
RL
777 wxASSERT_MSG( sizer, _T("Show for NULL sizer") );
778
779 wxSizerItemList::Node *node = m_children.GetFirst();
2b5f62a0
VZ
780 while (node)
781 {
12a3f227 782 wxSizerItem *item = node->GetData();
2b5f62a0 783
12a3f227 784 if (item->GetSizer() == sizer)
2b5f62a0 785 {
12a3f227
RL
786 item->Show( show );
787 break;
2b5f62a0 788 }
12a3f227 789 node = node->GetNext();
2b5f62a0
VZ
790 }
791}
792
12a3f227 793void wxSizer::Show( size_t index, bool show )
2b5f62a0 794{
12a3f227
RL
795 wxCHECK_RET( index < m_children.GetCount(),
796 _T("Show index is out of range") );
2b5f62a0 797
12a3f227
RL
798 m_children.Item( index )->GetData()->Show( show );
799}
2b5f62a0 800
12a3f227
RL
801void wxSizer::ShowItems( bool show )
802{
803 wxSizerItemList::Node *node = m_children.GetFirst();
804 while (node)
805 {
806 node->GetData()->Show( show );
807 node = node->GetNext();
2b5f62a0
VZ
808 }
809}
810
9cbee2ce 811bool wxSizer::IsShown( wxWindow *window ) const
2b5f62a0 812{
12a3f227 813 wxSizerItemList::Node *node = m_children.GetFirst();
2b5f62a0
VZ
814 while (node)
815 {
12a3f227 816 wxSizerItem *item = node->GetData();
dc259b79 817
12a3f227 818 if (item->GetWindow() == window)
2b5f62a0
VZ
819 {
820 return item->IsShown();
821 }
12a3f227 822 node = node->GetNext();
2b5f62a0
VZ
823 }
824
12a3f227
RL
825 wxFAIL_MSG( _T("IsShown failed to find sizer item") );
826
e0d8fb45 827 return false;
2b5f62a0
VZ
828}
829
9cbee2ce 830bool wxSizer::IsShown( wxSizer *sizer ) const
2b5f62a0 831{
12a3f227 832 wxSizerItemList::Node *node = m_children.GetFirst();
2b5f62a0
VZ
833 while (node)
834 {
12a3f227 835 wxSizerItem *item = node->GetData();
2b5f62a0 836
12a3f227 837 if (item->GetSizer() == sizer)
2b5f62a0
VZ
838 {
839 return item->IsShown();
840 }
12a3f227 841 node = node->GetNext();
2b5f62a0
VZ
842 }
843
12a3f227
RL
844 wxFAIL_MSG( _T("IsShown failed to find sizer item") );
845
e0d8fb45 846 return false;
2b5f62a0
VZ
847}
848
9cbee2ce 849bool wxSizer::IsShown( size_t index ) const
12a3f227
RL
850{
851 wxCHECK_MSG( index < m_children.GetCount(),
e0d8fb45 852 false,
12a3f227
RL
853 _T("IsShown index is out of range") );
854
855 return m_children.Item( index )->GetData()->IsShown();
856}
857
858
f6bcfd97
BP
859//---------------------------------------------------------------------------
860// wxGridSizer
861//---------------------------------------------------------------------------
862
863wxGridSizer::wxGridSizer( int rows, int cols, int vgap, int hgap )
12a3f227
RL
864 : m_rows( rows )
865 , m_cols( cols )
866 , m_vgap( vgap )
867 , m_hgap( hgap )
f6bcfd97 868{
f6bcfd97
BP
869}
870
871wxGridSizer::wxGridSizer( int cols, int vgap, int hgap )
12a3f227
RL
872 : m_rows( 0 )
873 , m_cols( cols )
874 , m_vgap( vgap )
875 , m_hgap( hgap )
f6bcfd97 876{
f6bcfd97
BP
877}
878
0ca5105b 879int wxGridSizer::CalcRowsCols(int& nrows, int& ncols) const
f6bcfd97 880{
f6bcfd97 881 int nitems = m_children.GetCount();
2b5f62a0 882 if ( nitems)
0ca5105b
VZ
883 {
884 if ( m_cols )
885 {
886 ncols = m_cols;
887 nrows = (nitems + m_cols - 1) / m_cols;
888 }
889 else if ( m_rows )
890 {
891 ncols = (nitems + m_rows - 1) / m_rows;
892 nrows = m_rows;
893 }
894 else // 0 columns, 0 rows?
895 {
896 wxFAIL_MSG( _T("grid sizer must have either rows or columns fixed") );
f6bcfd97 897
0ca5105b
VZ
898 nrows = ncols = 0;
899 }
900 }
901
902 return nitems;
903}
904
905void wxGridSizer::RecalcSizes()
906{
907 int nitems, nrows, ncols;
908 if ( (nitems = CalcRowsCols(nrows, ncols)) == 0 )
909 return;
f6bcfd97
BP
910
911 wxSize sz( GetSize() );
912 wxPoint pt( GetPosition() );
3ca6a5f0
BP
913
914 int w = (sz.x - (ncols - 1) * m_hgap) / ncols;
915 int h = (sz.y - (nrows - 1) * m_vgap) / nrows;
f6bcfd97
BP
916
917 int x = pt.x;
918 for (int c = 0; c < ncols; c++)
919 {
920 int y = pt.y;
921 for (int r = 0; r < nrows; r++)
922 {
923 int i = r * ncols + c;
924 if (i < nitems)
925 {
12a3f227
RL
926 wxSizerItemList::Node *node = m_children.Item( i );
927
928 wxASSERT_MSG( node, _T("Failed to find SizerItemList node") );
3ca6a5f0 929
12a3f227 930 SetItemBounds( node->GetData(), x, y, w, h);
f6bcfd97
BP
931 }
932 y = y + h + m_vgap;
933 }
934 x = x + w + m_hgap;
935 }
936}
937
938wxSize wxGridSizer::CalcMin()
939{
0ca5105b
VZ
940 int nitems, nrows, ncols;
941 if ( (nitems = CalcRowsCols(nrows, ncols)) == 0 )
942 return wxSize(10, 10);
f6bcfd97 943
4f469fb5 944 // Find the max width and height for any component
f6bcfd97
BP
945 int w = 0;
946 int h = 0;
3ca6a5f0 947
12a3f227 948 wxSizerItemList::Node *node = m_children.GetFirst();
f6bcfd97
BP
949 while (node)
950 {
12a3f227
RL
951 wxSizerItem *item = node->GetData();
952 wxSize sz( item->CalcMin() );
953
f6bcfd97
BP
954 w = wxMax( w, sz.x );
955 h = wxMax( h, sz.y );
3ca6a5f0 956
12a3f227 957 node = node->GetNext();
f6bcfd97 958 }
3ca6a5f0 959
12a3f227
RL
960 return wxSize( ncols * w + (ncols-1) * m_hgap,
961 nrows * h + (nrows-1) * m_vgap );
f6bcfd97
BP
962}
963
964void wxGridSizer::SetItemBounds( wxSizerItem *item, int x, int y, int w, int h )
965{
966 wxPoint pt( x,y );
967 wxSize sz( item->CalcMin() );
968 int flag = item->GetFlag();
969
970 if ((flag & wxEXPAND) || (flag & wxSHAPED))
971 {
972 sz = wxSize(w, h);
973 }
974 else
975 {
976 if (flag & wxALIGN_CENTER_HORIZONTAL)
977 {
978 pt.x = x + (w - sz.x) / 2;
979 }
980 else if (flag & wxALIGN_RIGHT)
981 {
982 pt.x = x + (w - sz.x);
983 }
3ca6a5f0 984
f6bcfd97
BP
985 if (flag & wxALIGN_CENTER_VERTICAL)
986 {
987 pt.y = y + (h - sz.y) / 2;
988 }
989 else if (flag & wxALIGN_BOTTOM)
990 {
991 pt.y = y + (h - sz.y);
992 }
993 }
3ca6a5f0 994
f6bcfd97
BP
995 item->SetDimension(pt, sz);
996}
997
998//---------------------------------------------------------------------------
999// wxFlexGridSizer
1000//---------------------------------------------------------------------------
1001
1002wxFlexGridSizer::wxFlexGridSizer( int rows, int cols, int vgap, int hgap )
5d76f462
VZ
1003 : wxGridSizer( rows, cols, vgap, hgap ),
1004 m_flexDirection(wxBOTH),
1005 m_growMode(wxFLEX_GROWMODE_SPECIFIED)
3ca6a5f0 1006{
f6bcfd97
BP
1007}
1008
1009wxFlexGridSizer::wxFlexGridSizer( int cols, int vgap, int hgap )
5d76f462
VZ
1010 : wxGridSizer( cols, vgap, hgap ),
1011 m_flexDirection(wxBOTH),
1012 m_growMode(wxFLEX_GROWMODE_SPECIFIED)
3ca6a5f0 1013{
f6bcfd97 1014}
3ca6a5f0 1015
f6bcfd97
BP
1016wxFlexGridSizer::~wxFlexGridSizer()
1017{
f6bcfd97
BP
1018}
1019
1020void wxFlexGridSizer::RecalcSizes()
1021{
0ca5105b
VZ
1022 int nitems, nrows, ncols;
1023 if ( (nitems = CalcRowsCols(nrows, ncols)) == 0 )
f6bcfd97
BP
1024 return;
1025
f6bcfd97
BP
1026 wxSize sz( GetSize() );
1027 wxSize minsz( CalcMin() );
1028 wxPoint pt( GetPosition() );
0ca5105b 1029
5d76f462 1030 // what to do with the rows? by default, resize them proportionally
55f9f0cb 1031 if ( sz.y > minsz.y && ( (m_flexDirection & wxVERTICAL) || (m_growMode == wxFLEX_GROWMODE_SPECIFIED) ) )
5d76f462 1032 {
55f9f0cb
VZ
1033 int sum_proportions = 0;
1034 int growable_space = 0;
1035 int num = 0;
1036 size_t idx;
5d76f462
VZ
1037 for (idx = 0; idx < m_growableRows.GetCount(); idx++)
1038 {
55f9f0cb
VZ
1039 // Since the number of rows/columns can change as items are inserted/deleted, we need
1040 // to verify at runtime that the requested growable rows/columns are still valid.
1041 if (m_growableRows[idx] >= nrows)
1042 continue;
1043 // If all items in a row/column are hidden, that row/column will have a dimension of -1.
1044 // This causes the row/column to be hidden completely.
1045 if (m_rowHeights[ m_growableRows[idx] ] == -1)
1046 continue;
1047 sum_proportions += m_growableRowsProportions[idx];
1048 growable_space += m_rowHeights[ m_growableRows[idx] ];
1049 num++;
5d76f462
VZ
1050 }
1051
55f9f0cb 1052 if (num > 0)
5d76f462 1053 {
55f9f0cb 1054 for (idx = 0; idx < m_growableRows.GetCount(); idx++)
e8800dcf 1055 {
55f9f0cb
VZ
1056 if (m_growableRows[idx] >= nrows )
1057 continue;
1058 if (m_rowHeights[ m_growableRows[idx] ] == -1)
1059 m_rowHeights[ m_growableRows[idx] ] = 0;
e8800dcf 1060 else
55f9f0cb
VZ
1061 {
1062 int delta = (sz.y - minsz.y);
1063 if (sum_proportions == 0)
1064 delta = (delta/num) + m_rowHeights[ m_growableRows[idx] ];
1065 else
1066 delta = ((delta+growable_space)*m_growableRowsProportions[idx]) / sum_proportions;
1067 m_rowHeights[ m_growableRows[idx] ] = delta;
1068 }
e8800dcf 1069 }
5d76f462 1070 }
5d76f462
VZ
1071 }
1072 else if ( (m_growMode == wxFLEX_GROWMODE_ALL) && (sz.y > minsz.y) )
f6bcfd97 1073 {
5d76f462
VZ
1074 // rounding problem?
1075 for ( int row = 0; row < nrows; ++row )
1076 m_rowHeights[ row ] = sz.y / nrows;
f6bcfd97 1077 }
3ca6a5f0 1078
5d76f462 1079 // the same logic as above but for the columns
55f9f0cb 1080 if ( sz.x > minsz.x && ( (m_flexDirection & wxHORIZONTAL) || (m_growMode == wxFLEX_GROWMODE_SPECIFIED) ) )
5d76f462 1081 {
55f9f0cb
VZ
1082 int sum_proportions = 0;
1083 int growable_space = 0;
1084 int num = 0;
1085 size_t idx;
5d76f462
VZ
1086 for (idx = 0; idx < m_growableCols.GetCount(); idx++)
1087 {
55f9f0cb
VZ
1088 // Since the number of rows/columns can change as items are inserted/deleted, we need
1089 // to verify at runtime that the requested growable rows/columns are still valid.
1090 if (m_growableCols[idx] >= ncols)
1091 continue;
1092 // If all items in a row/column are hidden, that row/column will have a dimension of -1.
1093 // This causes the column to be hidden completely.
1094 if (m_colWidths[ m_growableCols[idx] ] == -1)
1095 continue;
1096 sum_proportions += m_growableColsProportions[idx];
1097 // wtb 5/12/02 bugfix - was m_ColWidths[idx]!!
1098 growable_space += m_colWidths[ m_growableCols[idx] ];
1099 num++;
5d76f462
VZ
1100 }
1101
55f9f0cb 1102 if (num > 0)
5d76f462 1103 {
55f9f0cb 1104 for (idx = 0; idx < m_growableCols.GetCount(); idx++)
e8800dcf 1105 {
55f9f0cb
VZ
1106 if (m_growableCols[idx] >= ncols )
1107 continue;
1108 if (m_colWidths[ m_growableCols[idx] ] == -1)
1109 m_colWidths[ m_growableCols[idx] ] = 0;
1110 else
1111 {
1112 int delta = (sz.x - minsz.x);
1113 if (sum_proportions == 0)
1114 delta = (delta/num) + m_colWidths[ m_growableCols[idx] ];
1115 else
1116 delta = ((delta+growable_space)*m_growableColsProportions[idx])/sum_proportions;
1117 m_colWidths[ m_growableCols[idx] ] = delta;
1118 }
e8800dcf 1119 }
5d76f462
VZ
1120 }
1121 }
1122 else if ( (m_growMode == wxFLEX_GROWMODE_ALL) && (sz.x > minsz.x) )
f6bcfd97 1123 {
5d76f462
VZ
1124 for ( int col=0; col < ncols; ++col )
1125 m_colWidths[ col ] = sz.x / ncols;
f6bcfd97 1126 }
3ca6a5f0 1127
f6bcfd97
BP
1128 sz = wxSize( pt.x + sz.x, pt.y + sz.y );
1129
1130 int x = pt.x;
1131 for (int c = 0; c < ncols; c++)
1132 {
1133 int y = pt.y;
1134 for (int r = 0; r < nrows; r++)
1135 {
1136 int i = r * ncols + c;
1137 if (i < nitems)
1138 {
12a3f227
RL
1139 wxSizerItemList::Node *node = m_children.Item( i );
1140
1141 wxASSERT_MSG( node, _T("Failed to find node") );
3ca6a5f0 1142
f6bcfd97
BP
1143 int w = wxMax( 0, wxMin( m_colWidths[c], sz.x - x ) );
1144 int h = wxMax( 0, wxMin( m_rowHeights[r], sz.y - y ) );
3ca6a5f0 1145
12a3f227 1146 SetItemBounds( node->GetData(), x, y, w, h);
f6bcfd97
BP
1147 }
1148 y = y + m_rowHeights[r] + m_vgap;
1149 }
1150 x = x + m_colWidths[c] + m_hgap;
1151 }
1152}
1153
1154wxSize wxFlexGridSizer::CalcMin()
1155{
150c8d89
RL
1156 int nrows,
1157 ncols;
1158 size_t i, s;
1159
55f9f0cb 1160 // Number of rows/columns can change as items are added or removed.
5d76f462
VZ
1161 if ( !CalcRowsCols(nrows, ncols) )
1162 return wxSize(10, 10);
f6bcfd97 1163
5d76f462
VZ
1164 m_rowHeights.SetCount(nrows);
1165 m_colWidths.SetCount(ncols);
3ca6a5f0 1166
55f9f0cb
VZ
1167 // We have to recalcuate the sizes in case an item has wxADJUST_MINSIZE, has changed
1168 // minimum size since the previous layout, or has been hidden using wxSizer::Show().
1169 // If all the items in a row/column are hidden, the final dimension of the row/column
1170 // will be -1, indicating that the column itself is hidden.
1171 for( s = m_rowHeights.GetCount(), i = 0; i < s; ++i )
1172 m_rowHeights[ i ] = -1;
1173 for( s = m_colWidths.GetCount(), i = 0; i < s; ++i )
1174 m_colWidths[ i ] = -1;
1175
12a3f227
RL
1176 wxSizerItemList::Node *node = m_children.GetFirst();
1177
150c8d89 1178 i = 0;
f6bcfd97
BP
1179 while (node)
1180 {
12a3f227 1181 wxSizerItem *item = node->GetData();
55f9f0cb
VZ
1182 if ( item->IsShown() )
1183 {
1184 wxSize sz( item->CalcMin() );
1185 int row = i / ncols;
1186 int col = i % ncols;
12a3f227 1187
55f9f0cb
VZ
1188 m_rowHeights[ row ] = wxMax( wxMax( 0, sz.y ), m_rowHeights[ row ] );
1189 m_colWidths[ col ] = wxMax( wxMax( 0, sz.x ), m_colWidths[ col ] );
1190 }
3ca6a5f0 1191
12a3f227 1192 node = node->GetNext();
f6bcfd97
BP
1193 i++;
1194 }
3ca6a5f0 1195
5d76f462
VZ
1196 // the logic above works when we resize flexibly in both directions but
1197 // maybe this is not the case
1198 if ( m_flexDirection != wxBOTH )
1199 {
1200 // select the array corresponding to the direction in which we do *not*
1201 // resize flexibly
1202 wxArrayInt& array = m_flexDirection == wxVERTICAL ? m_colWidths
1203 : m_rowHeights;
1204
1205 const int count = array.GetCount();
1206
1207 // find the largest value in this array
55f9f0cb 1208 int n, largest = 0;
5d76f462
VZ
1209 for ( n = 0; n < count; ++n )
1210 {
1211 if ( array[n] > largest )
1212 largest = array[n];
1213 }
1214
1215 // and now fill it with the largest value
1216 for ( n = 0; n < count; ++n )
1217 {
1218 array[n] = largest;
1219 }
1220 }
1221
55f9f0cb
VZ
1222 // Sum total minimum size, including gaps between rows/columns.
1223 // -1 is used as a magic number meaning empty column.
f6bcfd97 1224 int width = 0;
0ca5105b 1225 for (int col = 0; col < ncols; col++)
55f9f0cb
VZ
1226 if ( m_colWidths[ col ] != -1 )
1227 width += m_colWidths[ col ] + ( col == ncols-1 ? 0 : m_hgap );
3ca6a5f0 1228
f6bcfd97 1229 int height = 0;
0ca5105b 1230 for (int row = 0; row < nrows; row++)
55f9f0cb
VZ
1231 if ( m_rowHeights[ row ] != -1 )
1232 height += m_rowHeights[ row ] + ( row == nrows-1 ? 0 : m_vgap );
3ca6a5f0 1233
55f9f0cb 1234 return wxSize( width, height );
f6bcfd97
BP
1235}
1236
e8800dcf 1237void wxFlexGridSizer::AddGrowableRow( size_t idx, int proportion )
f6bcfd97
BP
1238{
1239 m_growableRows.Add( idx );
e8800dcf 1240 m_growableRowsProportions.Add( proportion );
f6bcfd97
BP
1241}
1242
3ca6a5f0 1243void wxFlexGridSizer::RemoveGrowableRow( size_t WXUNUSED(idx) )
f6bcfd97
BP
1244{
1245}
1246
e8800dcf 1247void wxFlexGridSizer::AddGrowableCol( size_t idx, int proportion )
f6bcfd97
BP
1248{
1249 m_growableCols.Add( idx );
e8800dcf 1250 m_growableColsProportions.Add( proportion );
f6bcfd97
BP
1251}
1252
3ca6a5f0 1253void wxFlexGridSizer::RemoveGrowableCol( size_t WXUNUSED(idx) )
f6bcfd97
BP
1254{
1255}
1256
c62ac5b6 1257//---------------------------------------------------------------------------
92afa2b1 1258// wxBoxSizer
61d514bb
RR
1259//---------------------------------------------------------------------------
1260
92afa2b1 1261wxBoxSizer::wxBoxSizer( int orient )
12a3f227 1262 : m_orient( orient )
61d514bb 1263{
61d514bb
RR
1264}
1265
92afa2b1 1266void wxBoxSizer::RecalcSizes()
61d514bb
RR
1267{
1268 if (m_children.GetCount() == 0)
61d514bb 1269 return;
0c0d686f 1270
61d514bb
RR
1271 int delta = 0;
1272 int extra = 0;
1273 if (m_stretchable)
1274 {
1275 if (m_orient == wxHORIZONTAL)
1276 {
1277 delta = (m_size.x - m_fixedWidth) / m_stretchable;
1278 extra = (m_size.x - m_fixedWidth) % m_stretchable;
3ca6a5f0
BP
1279 }
1280 else
1281 {
61d514bb
RR
1282 delta = (m_size.y - m_fixedHeight) / m_stretchable;
1283 extra = (m_size.y - m_fixedHeight) % m_stretchable;
3ca6a5f0 1284 }
61d514bb 1285 }
0c0d686f 1286
61d514bb 1287 wxPoint pt( m_position );
0c0d686f 1288
12a3f227 1289 wxSizerItemList::Node *node = m_children.GetFirst();
61d514bb
RR
1290 while (node)
1291 {
12a3f227
RL
1292 wxSizerItem *item = node->GetData();
1293
2b5f62a0 1294 if (item->IsShown())
3ca6a5f0 1295 {
2b5f62a0 1296 int weight = 1;
12a3f227
RL
1297 if (item->GetProportion())
1298 weight = item->GetProportion();
3ca6a5f0 1299
2b5f62a0 1300 wxSize size( item->CalcMin() );
3ca6a5f0 1301
2b5f62a0 1302 if (m_orient == wxVERTICAL)
3ca6a5f0 1303 {
2b5f62a0 1304 wxCoord height = size.y;
12a3f227 1305 if (item->GetProportion())
2b5f62a0
VZ
1306 {
1307 height = (delta * weight) + extra;
1308 extra = 0; // only the first item will get the remainder as extra size
1309 }
1310
1311 wxPoint child_pos( pt );
1312 wxSize child_size( wxSize( size.x, height) );
1313
1314 if (item->GetFlag() & (wxEXPAND | wxSHAPED))
1315 child_size.x = m_size.x;
1316 else if (item->GetFlag() & wxALIGN_RIGHT)
1317 child_pos.x += m_size.x - size.x;
1318 else if (item->GetFlag() & (wxCENTER | wxALIGN_CENTER_HORIZONTAL))
1319 // XXX wxCENTER is added for backward compatibility;
1320 // wxALIGN_CENTER should be used in new code
1321 child_pos.x += (m_size.x - size.x) / 2;
1322
1323 item->SetDimension( child_pos, child_size );
1324
1325 pt.y += height;
1326 }
1327 else
1328 {
1329 wxCoord width = size.x;
12a3f227 1330 if (item->GetProportion())
2b5f62a0
VZ
1331 {
1332 width = (delta * weight) + extra;
1333 extra = 0; // only the first item will get the remainder as extra size
1334 }
1335
1336 wxPoint child_pos( pt );
1337 wxSize child_size( wxSize(width, size.y) );
1338
1339 if (item->GetFlag() & (wxEXPAND | wxSHAPED))
1340 child_size.y = m_size.y;
1341 else if (item->GetFlag() & wxALIGN_BOTTOM)
1342 child_pos.y += m_size.y - size.y;
1343 else if (item->GetFlag() & (wxCENTER | wxALIGN_CENTER_VERTICAL))
1344 // XXX wxCENTER is added for backward compatibility;
1345 // wxALIGN_CENTER should be used in new code
1346 child_pos.y += (m_size.y - size.y) / 2;
1347
1348 item->SetDimension( child_pos, child_size );
1349
1350 pt.x += width;
3ca6a5f0 1351 }
3ca6a5f0
BP
1352 }
1353
12a3f227 1354 node = node->GetNext();
61d514bb
RR
1355 }
1356}
1357
92afa2b1 1358wxSize wxBoxSizer::CalcMin()
61d514bb
RR
1359{
1360 if (m_children.GetCount() == 0)
c7a9fa36 1361 return wxSize(10,10);
0c0d686f 1362
61d514bb
RR
1363 m_stretchable = 0;
1364 m_minWidth = 0;
1365 m_minHeight = 0;
1366 m_fixedWidth = 0;
1367 m_fixedHeight = 0;
0c0d686f 1368
f98de448 1369 // Find how long each stretch unit needs to be
12a3f227
RL
1370 int stretchSize = 1;
1371 wxSizerItemList::Node *node = m_children.GetFirst();
1372
61d514bb 1373 while (node)
f98de448 1374 {
12a3f227
RL
1375 wxSizerItem *item = node->GetData();
1376
1377 if (item->IsShown() && item->GetProportion() != 0)
f98de448 1378 {
12a3f227 1379 int stretch = item->GetProportion();
f98de448
RD
1380 wxSize size( item->CalcMin() );
1381 int sizePerStretch;
1382 // Integer division rounded up is (a + b - 1) / b
1383 if (m_orient == wxHORIZONTAL)
1384 sizePerStretch = ( size.x + stretch - 1 ) / stretch;
1385 else
1386 sizePerStretch = ( size.y + stretch - 1 ) / stretch;
1387 if (sizePerStretch > stretchSize)
1388 stretchSize = sizePerStretch;
1389 }
12a3f227 1390 node = node->GetNext();
f98de448 1391 }
12a3f227 1392
4f469fb5
RR
1393 // Calculate overall minimum size
1394 node = m_children.GetFirst();
f98de448 1395 while (node)
61d514bb 1396 {
12a3f227
RL
1397 wxSizerItem *item = node->GetData();
1398
2b5f62a0 1399 if (item->IsShown())
f98de448 1400 {
12a3f227 1401 m_stretchable += item->GetProportion();
3ca6a5f0 1402
2b5f62a0 1403 wxSize size( item->CalcMin() );
12a3f227 1404 if (item->GetProportion() != 0)
2b5f62a0
VZ
1405 {
1406 if (m_orient == wxHORIZONTAL)
12a3f227 1407 size.x = stretchSize * item->GetProportion();
2b5f62a0 1408 else
12a3f227 1409 size.y = stretchSize * item->GetProportion();
2b5f62a0 1410 }
3ca6a5f0 1411
2b5f62a0 1412 if (m_orient == wxHORIZONTAL)
3ca6a5f0 1413 {
2b5f62a0
VZ
1414 m_minWidth += size.x;
1415 m_minHeight = wxMax( m_minHeight, size.y );
3ca6a5f0
BP
1416 }
1417 else
33ac7e6f 1418 {
2b5f62a0
VZ
1419 m_minHeight += size.y;
1420 m_minWidth = wxMax( m_minWidth, size.x );
3ca6a5f0 1421 }
3ca6a5f0 1422
12a3f227 1423 if (item->GetProportion() == 0)
2b5f62a0
VZ
1424 {
1425 if (m_orient == wxVERTICAL)
1426 {
1427 m_fixedHeight += size.y;
1428 m_fixedWidth = wxMax( m_fixedWidth, size.x );
1429 }
1430 else
1431 {
1432 m_fixedWidth += size.x;
1433 m_fixedHeight = wxMax( m_fixedHeight, size.y );
1434 }
1435 }
1436 }
12a3f227 1437 node = node->GetNext();
61d514bb 1438 }
0c0d686f 1439
61d514bb
RR
1440 return wxSize( m_minWidth, m_minHeight );
1441}
27ea1d8a
RR
1442
1443//---------------------------------------------------------------------------
1444// wxStaticBoxSizer
1445//---------------------------------------------------------------------------
1446
1e6feb95
VZ
1447#if wxUSE_STATBOX
1448
27ea1d8a 1449wxStaticBoxSizer::wxStaticBoxSizer( wxStaticBox *box, int orient )
12a3f227
RL
1450 : wxBoxSizer( orient )
1451 , m_staticBox( box )
27ea1d8a 1452{
223d09f6 1453 wxASSERT_MSG( box, wxT("wxStaticBoxSizer needs a static box") );
27ea1d8a 1454}
0c0d686f 1455
12a3f227
RL
1456static void GetStaticBoxBorders( wxStaticBox *box,
1457 int *borderTop,
1458 int *borderOther)
84028727
VZ
1459{
1460 // this has to be done platform by platform as there is no way to
1461 // guess the thickness of a wxStaticBox border
ec4e4a14
DE
1462#ifdef __WXCOCOA__
1463 box->GetBordersForSizer(borderTop,borderOther);
1464#else // __WXCOCOA__
84028727
VZ
1465#ifdef __WXGTK__
1466 if ( box->GetLabel().IsEmpty() )
1467 *borderTop = 5;
1468 else
1469#endif // __WXGTK__
f2b99f63
JS
1470 *borderTop = box->GetCharHeight();
1471
84028727 1472 *borderOther = 5;
ec4e4a14 1473#endif // __WXCOCOA__
84028727
VZ
1474}
1475
27ea1d8a
RR
1476void wxStaticBoxSizer::RecalcSizes()
1477{
84028727
VZ
1478 int top_border, other_border;
1479 GetStaticBoxBorders(m_staticBox, &top_border, &other_border);
27ea1d8a
RR
1480
1481 m_staticBox->SetSize( m_position.x, m_position.y, m_size.x, m_size.y );
0c0d686f 1482
27ea1d8a
RR
1483 wxPoint old_pos( m_position );
1484 m_position.x += other_border;
1485 m_position.y += top_border;
1486 wxSize old_size( m_size );
1487 m_size.x -= 2*other_border;
1488 m_size.y -= top_border + other_border;
0c0d686f 1489
27ea1d8a 1490 wxBoxSizer::RecalcSizes();
0c0d686f 1491
27ea1d8a
RR
1492 m_position = old_pos;
1493 m_size = old_size;
1494}
1495
1496wxSize wxStaticBoxSizer::CalcMin()
1497{
84028727
VZ
1498 int top_border, other_border;
1499 GetStaticBoxBorders(m_staticBox, &top_border, &other_border);
0c0d686f 1500
27ea1d8a 1501 wxSize ret( wxBoxSizer::CalcMin() );
cae31b8b 1502 ret.x += 2*other_border;
27ea1d8a 1503 ret.y += other_border + top_border;
0c0d686f 1504
27ea1d8a
RR
1505 return ret;
1506}
83edc0a5 1507
1e6feb95
VZ
1508#endif // wxUSE_STATBOX
1509
83edc0a5
RR
1510//---------------------------------------------------------------------------
1511// wxNotebookSizer
1512//---------------------------------------------------------------------------
1513
60be2f47
VS
1514#if wxUSE_NOTEBOOK
1515
83edc0a5 1516wxNotebookSizer::wxNotebookSizer( wxNotebook *nb )
12a3f227 1517 : m_notebook( nb )
83edc0a5
RR
1518{
1519 wxASSERT_MSG( nb, wxT("wxNotebookSizer needs a notebook") );
83edc0a5
RR
1520}
1521
1522void wxNotebookSizer::RecalcSizes()
1523{
1524 m_notebook->SetSize( m_position.x, m_position.y, m_size.x, m_size.y );
1525}
1526
1527wxSize wxNotebookSizer::CalcMin()
1528{
1e6feb95
VZ
1529 wxSize sizeBorder = m_notebook->CalcSizeFromPage(wxSize(0, 0));
1530
1531 sizeBorder.x += 5;
1532 sizeBorder.y += 5;
3ca6a5f0 1533
83edc0a5 1534 if (m_notebook->GetChildren().GetCount() == 0)
1e6feb95
VZ
1535 {
1536 return wxSize(sizeBorder.x + 10, sizeBorder.y + 10);
1537 }
83edc0a5
RR
1538
1539 int maxX = 0;
1540 int maxY = 0;
1541
1542 wxWindowList::Node *node = m_notebook->GetChildren().GetFirst();
1543 while (node)
1544 {
1545 wxWindow *item = node->GetData();
3ca6a5f0
BP
1546 wxSizer *itemsizer = item->GetSizer();
1547
1548 if (itemsizer)
1549 {
83edc0a5 1550 wxSize subsize( itemsizer->CalcMin() );
83edc0a5 1551
1e6feb95
VZ
1552 if (subsize.x > maxX)
1553 maxX = subsize.x;
1554 if (subsize.y > maxY)
1555 maxY = subsize.y;
3ca6a5f0
BP
1556 }
1557
1558 node = node->GetNext();
83edc0a5
RR
1559 }
1560
1e6feb95 1561 return wxSize( maxX, maxY ) + sizeBorder;
83edc0a5
RR
1562}
1563
60be2f47 1564#endif // wxUSE_NOTEBOOK
34c3ffca
RL
1565
1566// vi:sts=4:sw=4:et