]> git.saurik.com Git - wxWidgets.git/blame - src/common/gbsizer.cpp
Misc validity fixes to samples/xrc/rc/*.xrc.
[wxWidgets.git] / src / common / gbsizer.cpp
CommitLineData
20b35a69 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/common/gbsizer.cpp
20b35a69
RD
3// Purpose: wxGridBagSizer: A sizer that can lay out items in a grid,
4// with items at specified cells, and with the option of row
5// and/or column spanning
6//
7// Author: Robin Dunn
8// Created: 03-Nov-2003
20b35a69 9// Copyright: (c) Robin Dunn
65571936 10// Licence: wxWindows licence
20b35a69
RD
11/////////////////////////////////////////////////////////////////////////////
12
20b35a69
RD
13// For compilers that support precompilation, includes "wx.h".
14#include "wx/wxprec.h"
15
16#ifdef __BORLANDC__
17 #pragma hdrstop
18#endif
19
20#include "wx/gbsizer.h"
21
22//---------------------------------------------------------------------------
23
1b52f7ab 24IMPLEMENT_DYNAMIC_CLASS(wxGBSizerItem, wxSizerItem)
20b35a69
RD
25IMPLEMENT_CLASS(wxGridBagSizer, wxFlexGridSizer)
26
27const wxGBSpan wxDefaultSpan;
28
29//---------------------------------------------------------------------------
30// wxGBSizerItem
31//---------------------------------------------------------------------------
32
33wxGBSizerItem::wxGBSizerItem( int width,
34 int height,
35 const wxGBPosition& pos,
36 const wxGBSpan& span,
37 int flag,
38 int border,
39 wxObject* userData)
40 : wxSizerItem(width, height, 0, flag, border, userData),
41 m_pos(pos),
42 m_span(span),
3ff632ce 43 m_gbsizer(NULL)
20b35a69
RD
44{
45}
46
47
48wxGBSizerItem::wxGBSizerItem( wxWindow *window,
49 const wxGBPosition& pos,
50 const wxGBSpan& span,
51 int flag,
52 int border,
53 wxObject* userData )
54 : wxSizerItem(window, 0, flag, border, userData),
55 m_pos(pos),
56 m_span(span),
3ff632ce 57 m_gbsizer(NULL)
20b35a69
RD
58{
59}
60
61
62wxGBSizerItem::wxGBSizerItem( wxSizer *sizer,
63 const wxGBPosition& pos,
64 const wxGBSpan& span,
65 int flag,
66 int border,
67 wxObject* userData )
68 : wxSizerItem(sizer, 0, flag, border, userData),
69 m_pos(pos),
70 m_span(span),
3ff632ce 71 m_gbsizer(NULL)
20b35a69
RD
72{
73}
74
1b52f7ab
RD
75wxGBSizerItem::wxGBSizerItem()
76 : wxSizerItem(),
77 m_pos(-1,-1),
3ff632ce 78 m_gbsizer(NULL)
1b52f7ab
RD
79{
80}
20b35a69
RD
81
82//---------------------------------------------------------------------------
83
84
85void wxGBSizerItem::GetPos(int& row, int& col) const
86{
87 row = m_pos.GetRow();
88 col = m_pos.GetCol();
89}
90
91void wxGBSizerItem::GetSpan(int& rowspan, int& colspan) const
92{
93 rowspan = m_span.GetRowspan();
94 colspan = m_span.GetColspan();
95}
96
97
98bool wxGBSizerItem::SetPos( const wxGBPosition& pos )
99{
3ff632ce 100 if (m_gbsizer)
20b35a69 101 {
3ff632ce 102 wxCHECK_MSG( !m_gbsizer->CheckForIntersection(pos, m_span, this), false,
20b35a69
RD
103 wxT("An item is already at that position") );
104 }
105 m_pos = pos;
106 return true;
107}
108
109bool wxGBSizerItem::SetSpan( const wxGBSpan& span )
110{
3ff632ce 111 if (m_gbsizer)
20b35a69 112 {
3ff632ce 113 wxCHECK_MSG( !m_gbsizer->CheckForIntersection(m_pos, span, this), false,
20b35a69
RD
114 wxT("An item is already at that position") );
115 }
116 m_span = span;
117 return true;
118}
119
120
121inline bool InRange(int val, int min, int max)
122{
123 return (val >= min && val <= max);
124}
125
126bool wxGBSizerItem::Intersects(const wxGBSizerItem& other)
127{
128 return Intersects(other.GetPos(), other.GetSpan());
129}
130
131bool wxGBSizerItem::Intersects(const wxGBPosition& pos, const wxGBSpan& span)
132{
133
134 int row, col, endrow, endcol;
135 int otherrow, othercol, otherendrow, otherendcol;
136
137 GetPos(row, col);
138 GetEndPos(endrow, endcol);
139
140 otherrow = pos.GetRow();
141 othercol = pos.GetCol();
142 otherendrow = otherrow + span.GetRowspan() - 1;
143 otherendcol = othercol + span.GetColspan() - 1;
144
145 // is the other item's start or end in the range of this one?
146 if (( InRange(otherrow, row, endrow) && InRange(othercol, col, endcol) ) ||
147 ( InRange(otherendrow, row, endrow) && InRange(otherendcol, col, endcol) ))
148 return true;
149
150 // is this item's start or end in the range of the other one?
151 if (( InRange(row, otherrow, otherendrow) && InRange(col, othercol, otherendcol) ) ||
152 ( InRange(endrow, otherrow, otherendrow) && InRange(endcol, othercol, otherendcol) ))
153 return true;
154
155 return false;
156}
157
158
159void wxGBSizerItem::GetEndPos(int& row, int& col)
160{
161 row = m_pos.GetRow() + m_span.GetRowspan() - 1;
162 col = m_pos.GetCol() + m_span.GetColspan() - 1;
163}
164
165
166//---------------------------------------------------------------------------
167// wxGridBagSizer
168//---------------------------------------------------------------------------
169
170wxGridBagSizer::wxGridBagSizer(int vgap, int hgap )
171 : wxFlexGridSizer(1, vgap, hgap),
172 m_emptyCellSize(10,20)
5d3e7b52 173
20b35a69
RD
174{
175}
176
177
56eee37f
WS
178wxSizerItem* wxGridBagSizer::Add( wxWindow *window,
179 const wxGBPosition& pos, const wxGBSpan& span,
180 int flag, int border, wxObject* userData )
20b35a69
RD
181{
182 wxGBSizerItem* item = new wxGBSizerItem(window, pos, span, flag, border, userData);
183 if ( Add(item) )
56eee37f 184 return item;
20b35a69
RD
185 else
186 {
187 delete item;
d3b9f782 188 return NULL;
20b35a69
RD
189 }
190}
191
56eee37f 192wxSizerItem* wxGridBagSizer::Add( wxSizer *sizer,
20b35a69
RD
193 const wxGBPosition& pos, const wxGBSpan& span,
194 int flag, int border, wxObject* userData )
195{
196 wxGBSizerItem* item = new wxGBSizerItem(sizer, pos, span, flag, border, userData);
197 if ( Add(item) )
56eee37f 198 return item;
20b35a69
RD
199 else
200 {
201 delete item;
d3b9f782 202 return NULL;
20b35a69
RD
203 }
204}
205
56eee37f 206wxSizerItem* wxGridBagSizer::Add( int width, int height,
20b35a69
RD
207 const wxGBPosition& pos, const wxGBSpan& span,
208 int flag, int border, wxObject* userData )
209{
210 wxGBSizerItem* item = new wxGBSizerItem(width, height, pos, span, flag, border, userData);
211 if ( Add(item) )
56eee37f 212 return item;
20b35a69
RD
213 else
214 {
215 delete item;
d3b9f782 216 return NULL;
20b35a69
RD
217 }
218}
219
56eee37f 220wxSizerItem* wxGridBagSizer::Add( wxGBSizerItem *item )
20b35a69 221{
56eee37f 222 wxCHECK_MSG( !CheckForIntersection(item), NULL,
3ff632ce
RD
223 wxT("An item is already at that position") );
224 m_children.Append(item);
225 item->SetGBSizer(this);
20b35a69
RD
226 if ( item->GetWindow() )
227 item->GetWindow()->SetContainingSizer( this );
228
47676835
VZ
229 // extend the number of rows/columns of the underlying wxFlexGridSizer if
230 // necessary
231 int row, col;
232 item->GetEndPos(row, col);
233 row++;
234 col++;
235
236 if ( row > GetRows() )
237 SetRows(row);
238 if ( col > GetCols() )
239 SetCols(col);
240
56eee37f 241 return item;
20b35a69
RD
242}
243
244
245
246//---------------------------------------------------------------------------
247
6217b9aa
RD
248wxSize wxGridBagSizer::GetCellSize(int row, int col) const
249{
250 wxCHECK_MSG( (row < m_rows) && (col < m_cols),
251 wxDefaultSize,
252 wxT("Invalid cell."));
253 return wxSize( m_colWidths[col], m_rowHeights[row] );
254}
255
256
20b35a69
RD
257wxGBPosition wxGridBagSizer::GetItemPosition(wxWindow *window)
258{
259 wxGBPosition badpos(-1,-1);
260 wxGBSizerItem* item = FindItem(window);
261 wxCHECK_MSG(item, badpos, wxT("Failed to find item."));
262 return item->GetPos();
263}
264
265
266wxGBPosition wxGridBagSizer::GetItemPosition(wxSizer *sizer)
267{
268 wxGBPosition badpos(-1,-1);
269 wxGBSizerItem* item = FindItem(sizer);
270 wxCHECK_MSG(item, badpos, wxT("Failed to find item."));
271 return item->GetPos();
272}
273
274
275wxGBPosition wxGridBagSizer::GetItemPosition(size_t index)
276{
277 wxGBPosition badpos(-1,-1);
278 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
9a83f860 279 wxCHECK_MSG( node, badpos, wxT("Failed to find item.") );
5d3e7b52 280 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
20b35a69
RD
281 return item->GetPos();
282}
283
284
285
286bool wxGridBagSizer::SetItemPosition(wxWindow *window, const wxGBPosition& pos)
287{
288 wxGBSizerItem* item = FindItem(window);
289 wxCHECK_MSG(item, false, wxT("Failed to find item."));
290 return item->SetPos(pos);
291}
292
293
294bool wxGridBagSizer::SetItemPosition(wxSizer *sizer, const wxGBPosition& pos)
295{
296 wxGBSizerItem* item = FindItem(sizer);
297 wxCHECK_MSG(item, false, wxT("Failed to find item."));
298 return item->SetPos(pos);
299}
300
301
302bool wxGridBagSizer::SetItemPosition(size_t index, const wxGBPosition& pos)
303{
304 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
9a83f860 305 wxCHECK_MSG( node, false, wxT("Failed to find item.") );
5d3e7b52 306 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
20b35a69
RD
307 return item->SetPos(pos);
308}
309
310
311
312wxGBSpan wxGridBagSizer::GetItemSpan(wxWindow *window)
313{
20b35a69 314 wxGBSizerItem* item = FindItem(window);
46e2a1b8 315 wxCHECK_MSG( item, wxGBSpan::Invalid(), wxT("Failed to find item.") );
20b35a69
RD
316 return item->GetSpan();
317}
318
319
320wxGBSpan wxGridBagSizer::GetItemSpan(wxSizer *sizer)
321{
20b35a69 322 wxGBSizerItem* item = FindItem(sizer);
46e2a1b8 323 wxCHECK_MSG( item, wxGBSpan::Invalid(), wxT("Failed to find item.") );
20b35a69
RD
324 return item->GetSpan();
325}
326
327
328wxGBSpan wxGridBagSizer::GetItemSpan(size_t index)
329{
20b35a69 330 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
46e2a1b8 331 wxCHECK_MSG( node, wxGBSpan::Invalid(), wxT("Failed to find item.") );
5d3e7b52 332 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
20b35a69
RD
333 return item->GetSpan();
334}
335
336
337
338bool wxGridBagSizer::SetItemSpan(wxWindow *window, const wxGBSpan& span)
339{
340 wxGBSizerItem* item = FindItem(window);
341 wxCHECK_MSG(item, false, wxT("Failed to find item."));
342 return item->SetSpan(span);
343}
344
345
346bool wxGridBagSizer::SetItemSpan(wxSizer *sizer, const wxGBSpan& span)
347{
348 wxGBSizerItem* item = FindItem(sizer);
349 wxCHECK_MSG(item, false, wxT("Failed to find item."));
350 return item->SetSpan(span);
351}
352
353
354bool wxGridBagSizer::SetItemSpan(size_t index, const wxGBSpan& span)
355{
356 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
9a83f860 357 wxCHECK_MSG( node, false, wxT("Failed to find item.") );
5d3e7b52 358 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
20b35a69
RD
359 return item->SetSpan(span);
360}
361
362
363
364
365wxGBSizerItem* wxGridBagSizer::FindItem(wxWindow* window)
366{
367 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
368 while (node)
369 {
370 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
371 if ( item->GetWindow() == window )
372 return item;
373 node = node->GetNext();
374 }
375 return NULL;
376}
377
378
379wxGBSizerItem* wxGridBagSizer::FindItem(wxSizer* sizer)
380{
381 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
382 while (node)
383 {
384 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
385 if ( item->GetSizer() == sizer )
386 return item;
387 node = node->GetNext();
388 }
389 return NULL;
390}
391
392
393
394
395wxGBSizerItem* wxGridBagSizer::FindItemAtPosition(const wxGBPosition& pos)
396{
397 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
398 while (node)
399 {
400 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
401 if ( item->Intersects(pos, wxDefaultSpan) )
402 return item;
403 node = node->GetNext();
404 }
405 return NULL;
406}
407
408
409
410
3ac7b44c
RD
411wxGBSizerItem* wxGridBagSizer::FindItemAtPoint(const wxPoint& pt)
412{
413 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
414 while (node)
415 {
416 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
417 wxRect rect(item->GetPosition(), item->GetSize());
418 rect.Inflate(m_hgap, m_vgap);
22a35096 419 if ( rect.Contains(pt) )
3ac7b44c
RD
420 return item;
421 node = node->GetNext();
422 }
423 return NULL;
424}
425
426
427
428
20b35a69
RD
429wxGBSizerItem* wxGridBagSizer::FindItemWithData(const wxObject* userData)
430{
431 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
432 while (node)
433 {
434 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
435 if ( item->GetUserData() == userData )
436 return item;
437 node = node->GetNext();
438 }
439 return NULL;
440}
441
442
443
444
445//---------------------------------------------------------------------------
446
447// Figure out what all the min row heights and col widths are, and calculate
448// min size from that.
449wxSize wxGridBagSizer::CalcMin()
450{
451 int idx;
5d3e7b52 452
20b35a69
RD
453 if (m_children.GetCount() == 0)
454 return m_emptyCellSize;
455
456 m_rowHeights.Empty();
457 m_colWidths.Empty();
458
459 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
460 while (node)
461 {
462 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
463 if ( item->IsShown() )
464 {
465 int row, col, endrow, endcol;
5d3e7b52 466
20b35a69
RD
467 item->GetPos(row, col);
468 item->GetEndPos(endrow, endcol);
469
25e3f0c6 470 // fill heights and widths up to this item if needed
16c7d85b 471 while ( (int)m_rowHeights.GetCount() <= endrow )
20b35a69 472 m_rowHeights.Add(m_emptyCellSize.GetHeight());
16c7d85b 473 while ( (int)m_colWidths.GetCount() <= endcol )
20b35a69
RD
474 m_colWidths.Add(m_emptyCellSize.GetWidth());
475
476 // See if this item increases the size of its row(s) or col(s)
477 wxSize size(item->CalcMin());
478 for (idx=row; idx <= endrow; idx++)
479 m_rowHeights[idx] = wxMax(m_rowHeights[idx], size.GetHeight() / (endrow-row+1));
480 for (idx=col; idx <= endcol; idx++)
481 m_colWidths[idx] = wxMax(m_colWidths[idx], size.GetWidth() / (endcol-col+1));
482 }
483 node = node->GetNext();
484 }
485
6a079bc1 486 AdjustForOverflow();
20b35a69
RD
487 AdjustForFlexDirection();
488
489 // Now traverse the heights and widths arrays calcing the totals, including gaps
490 int width = 0;
6217b9aa
RD
491 m_cols = m_colWidths.GetCount();
492 for (idx=0; idx < m_cols; idx++)
493 width += m_colWidths[idx] + ( idx == m_cols-1 ? 0 : m_hgap );
20b35a69
RD
494
495 int height = 0;
6217b9aa
RD
496 m_rows = m_rowHeights.GetCount();
497 for (idx=0; idx < m_rows; idx++)
498 height += m_rowHeights[idx] + ( idx == m_rows-1 ? 0 : m_vgap );
20b35a69 499
ba763a45
RD
500 m_calculatedMinSize = wxSize(width, height);
501 return m_calculatedMinSize;
20b35a69
RD
502}
503
504
505
506void wxGridBagSizer::RecalcSizes()
507{
4de25822
VZ
508 // We can't lay out our elements if we don't have at least a single row and
509 // a single column. Notice that this may happen even if we have some
510 // children but all of them are hidden, so checking for m_children being
511 // non-empty is not enough, see #15475.
512 if ( m_rowHeights.empty() || m_colWidths.empty() )
20b35a69
RD
513 return;
514
20b35a69
RD
515 wxPoint pt( GetPosition() );
516 wxSize sz( GetSize() );
5d3e7b52 517
6217b9aa
RD
518 m_rows = m_rowHeights.GetCount();
519 m_cols = m_colWidths.GetCount();
20b35a69
RD
520 int idx, width, height;
521
3b170aa8 522 AdjustForGrowables(sz);
20b35a69
RD
523
524 // Find the start positions on the window of the rows and columns
525 wxArrayInt rowpos;
6217b9aa 526 rowpos.Add(0, m_rows);
20b35a69 527 int y = pt.y;
6217b9aa 528 for (idx=0; idx < m_rows; idx++)
20b35a69
RD
529 {
530 height = m_rowHeights[idx] + m_vgap;
531 rowpos[idx] = y;
532 y += height;
533 }
534
535 wxArrayInt colpos;
6217b9aa 536 colpos.Add(0, m_cols);
20b35a69 537 int x = pt.x;
6217b9aa 538 for (idx=0; idx < m_cols; idx++)
20b35a69
RD
539 {
540 width = m_colWidths[idx] + m_hgap;
541 colpos[idx] = x;
542 x += width;
543 }
544
545
546 // Now iterate the children, setting each child's dimensions
547 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
548 while (node)
549 {
550 int row, col, endrow, endcol;
551 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
20b35a69 552
af579c91
RD
553 if ( item->IsShown() )
554 {
555 item->GetPos(row, col);
556 item->GetEndPos(endrow, endcol);
5d3e7b52 557
af579c91
RD
558 height = 0;
559 for(idx=row; idx <= endrow; idx++)
560 height += m_rowHeights[idx];
561 height += (endrow - row) * m_vgap; // add a vgap for every row spanned
5d3e7b52 562
af579c91
RD
563 width = 0;
564 for (idx=col; idx <= endcol; idx++)
565 width += m_colWidths[idx];
566 width += (endcol - col) * m_hgap; // add a hgap for every col spanned
567
568 SetItemBounds(item, colpos[col], rowpos[row], width, height);
569 }
20b35a69
RD
570
571 node = node->GetNext();
5d3e7b52 572 }
20b35a69
RD
573}
574
575
6a079bc1
RD
576// Sometimes CalcMin can result in some rows or cols having too much space in
577// them because as it traverses the items it makes some assumptions when
578// items span to other cells. But those assumptions can become invalid later
579// on when other items are fitted into the same rows or columns that the
580// spanning item occupies. This method tries to find those situations and
581// fixes them.
582void wxGridBagSizer::AdjustForOverflow()
583{
584 int row, col;
03647350 585
53524ca0 586 for (row=0; row<(int)m_rowHeights.GetCount(); row++)
6a079bc1
RD
587 {
588 int rowExtra=INT_MAX;
589 int rowHeight = m_rowHeights[row];
53524ca0 590 for (col=0; col<(int)m_colWidths.GetCount(); col++)
6a079bc1
RD
591 {
592 wxGBPosition pos(row,col);
593 wxGBSizerItem* item = FindItemAtPosition(pos);
bbb51766 594 if ( !item || !item->IsShown() )
6a079bc1
RD
595 continue;
596
597 int endrow, endcol;
598 item->GetEndPos(endrow, endcol);
03647350 599
6a079bc1
RD
600 // If the item starts in this position and doesn't span rows, then
601 // just look at the whole item height
602 if ( item->GetPos() == pos && endrow == row )
603 {
72da4057 604 int itemHeight = item->CalcMin().GetHeight();
6a079bc1
RD
605 rowExtra = wxMin(rowExtra, rowHeight - itemHeight);
606 continue;
607 }
608
609 // Otherwise, only look at spanning items if they end on this row
610 if ( endrow == row )
611 {
612 // first deduct the portions of the item that are on prior rows
72da4057 613 int itemHeight = item->CalcMin().GetHeight();
6a079bc1
RD
614 for (int r=item->GetPos().GetRow(); r<row; r++)
615 itemHeight -= (m_rowHeights[r] + GetHGap());
616
617 if ( itemHeight < 0 )
618 itemHeight = 0;
03647350 619
6a079bc1
RD
620 // and check how much is left
621 rowExtra = wxMin(rowExtra, rowHeight - itemHeight);
622 }
623 }
624 if ( rowExtra && rowExtra != INT_MAX )
625 m_rowHeights[row] -= rowExtra;
626 }
627
628 // Now do the same thing for columns
53524ca0 629 for (col=0; col<(int)m_colWidths.GetCount(); col++)
6a079bc1
RD
630 {
631 int colExtra=INT_MAX;
632 int colWidth = m_colWidths[col];
53524ca0 633 for (row=0; row<(int)m_rowHeights.GetCount(); row++)
6a079bc1
RD
634 {
635 wxGBPosition pos(row,col);
636 wxGBSizerItem* item = FindItemAtPosition(pos);
bbb51766 637 if ( !item || !item->IsShown() )
6a079bc1
RD
638 continue;
639
640 int endrow, endcol;
641 item->GetEndPos(endrow, endcol);
03647350 642
6a079bc1
RD
643 if ( item->GetPos() == pos && endcol == col )
644 {
72da4057 645 int itemWidth = item->CalcMin().GetWidth();
6a079bc1
RD
646 colExtra = wxMin(colExtra, colWidth - itemWidth);
647 continue;
648 }
649
650 if ( endcol == col )
651 {
72da4057 652 int itemWidth = item->CalcMin().GetWidth();
6a079bc1
RD
653 for (int c=item->GetPos().GetCol(); c<col; c++)
654 itemWidth -= (m_colWidths[c] + GetVGap());
655
656 if ( itemWidth < 0 )
657 itemWidth = 0;
03647350 658
6a079bc1
RD
659 colExtra = wxMin(colExtra, colWidth - itemWidth);
660 }
661 }
662 if ( colExtra && colExtra != INT_MAX )
663 m_colWidths[col] -= colExtra;
664 }
665
03647350 666
6a079bc1 667}
20b35a69
RD
668
669//---------------------------------------------------------------------------
670
671bool wxGridBagSizer::CheckForIntersection(wxGBSizerItem* item, wxGBSizerItem* excludeItem)
672{
673 return CheckForIntersection(item->GetPos(), item->GetSpan(), excludeItem);
674}
675
676bool wxGridBagSizer::CheckForIntersection(const wxGBPosition& pos, const wxGBSpan& span, wxGBSizerItem* excludeItem)
677{
678 wxSizerItemList::compatibility_iterator node = m_children.GetFirst();
679 while (node)
680 {
681 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
682 node = node->GetNext();
683
684 if ( excludeItem && item == excludeItem )
685 continue;
5d3e7b52 686
20b35a69
RD
687 if ( item->Intersects(pos, span) )
688 return true;
689
690 }
691 return false;
692}
693
694
695// Assumes a 10x10 grid, and returns the first empty cell found. This is
696// really stupid but it is only used by the Add methods that match the base
697// class virtuals, which should normally not be used anyway...
698wxGBPosition wxGridBagSizer::FindEmptyCell()
699{
700 int row, col;
701
702 for (row=0; row<10; row++)
703 for (col=0; col<10; col++)
704 {
705 wxGBPosition pos(row, col);
706 if ( !CheckForIntersection(pos, wxDefaultSpan) )
707 return pos;
708 }
709 return wxGBPosition(-1, -1);
710}
711
712
713//---------------------------------------------------------------------------
714
715// The Add base class virtuals should not be used with this class, but
716// we'll try to make them automatically select a location for the item
717// anyway.
718
56eee37f 719wxSizerItem* wxGridBagSizer::Add( wxWindow *window, int, int flag, int border, wxObject* userData )
20b35a69 720{
56eee37f 721 return Add(window, FindEmptyCell(), wxDefaultSpan, flag, border, userData);
20b35a69
RD
722}
723
56eee37f 724wxSizerItem* wxGridBagSizer::Add( wxSizer *sizer, int, int flag, int border, wxObject* userData )
20b35a69 725{
56eee37f 726 return Add(sizer, FindEmptyCell(), wxDefaultSpan, flag, border, userData);
20b35a69
RD
727}
728
56eee37f 729wxSizerItem* wxGridBagSizer::Add( int width, int height, int, int flag, int border, wxObject* userData )
20b35a69 730{
56eee37f 731 return Add(width, height, FindEmptyCell(), wxDefaultSpan, flag, border, userData);
20b35a69
RD
732}
733
734
735
736// The Insert nad Prepend base class virtuals that are not appropriate for
737// this class and should not be used. Their implementation in this class
738// simply fails.
739
56eee37f
WS
740wxSizerItem* wxGridBagSizer::Add( wxSizerItem * )
741{
742 wxFAIL_MSG(wxT("Invalid Add form called."));
d3b9f782 743 return NULL;
56eee37f 744}
20b35a69 745
56eee37f
WS
746wxSizerItem* wxGridBagSizer::Prepend( wxWindow *, int, int, int, wxObject* )
747{
748 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
d3b9f782 749 return NULL;
56eee37f 750}
20b35a69 751
56eee37f
WS
752wxSizerItem* wxGridBagSizer::Prepend( wxSizer *, int, int, int, wxObject* )
753{
754 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
d3b9f782 755 return NULL;
56eee37f 756}
20b35a69 757
56eee37f
WS
758wxSizerItem* wxGridBagSizer::Prepend( int, int, int, int, int, wxObject* )
759{
760 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
d3b9f782 761 return NULL;
56eee37f 762}
20b35a69 763
56eee37f
WS
764wxSizerItem* wxGridBagSizer::Prepend( wxSizerItem * )
765{
766 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
d3b9f782 767 return NULL;
56eee37f 768}
20b35a69
RD
769
770
56eee37f
WS
771wxSizerItem* wxGridBagSizer::Insert( size_t, wxWindow *, int, int, int, wxObject* )
772{
773 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
d3b9f782 774 return NULL;
56eee37f 775}
20b35a69 776
56eee37f
WS
777wxSizerItem* wxGridBagSizer::Insert( size_t, wxSizer *, int, int, int, wxObject* )
778{
779 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
d3b9f782 780 return NULL;
56eee37f 781}
20b35a69 782
56eee37f
WS
783wxSizerItem* wxGridBagSizer::Insert( size_t, int, int, int, int, int, wxObject* )
784{
785 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
d3b9f782 786 return NULL;
56eee37f 787}
20b35a69 788
56eee37f
WS
789wxSizerItem* wxGridBagSizer::Insert( size_t, wxSizerItem * )
790{
791 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
d3b9f782 792 return NULL;
56eee37f 793}
20b35a69
RD
794
795
796//---------------------------------------------------------------------------
797//---------------------------------------------------------------------------