Remove obsolete VisualAge-related files.
[wxWidgets.git] / src / common / gbsizer.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/gbsizer.cpp
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
9 // Copyright: (c) Robin Dunn
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
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
24 IMPLEMENT_DYNAMIC_CLASS(wxGBSizerItem, wxSizerItem)
25 IMPLEMENT_CLASS(wxGridBagSizer, wxFlexGridSizer)
26
27 const wxGBSpan wxDefaultSpan;
28
29 //---------------------------------------------------------------------------
30 // wxGBSizerItem
31 //---------------------------------------------------------------------------
32
33 wxGBSizerItem::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),
43 m_gbsizer(NULL)
44 {
45 }
46
47
48 wxGBSizerItem::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),
57 m_gbsizer(NULL)
58 {
59 }
60
61
62 wxGBSizerItem::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),
71 m_gbsizer(NULL)
72 {
73 }
74
75 wxGBSizerItem::wxGBSizerItem()
76 : wxSizerItem(),
77 m_pos(-1,-1),
78 m_gbsizer(NULL)
79 {
80 }
81
82 //---------------------------------------------------------------------------
83
84
85 void wxGBSizerItem::GetPos(int& row, int& col) const
86 {
87 row = m_pos.GetRow();
88 col = m_pos.GetCol();
89 }
90
91 void wxGBSizerItem::GetSpan(int& rowspan, int& colspan) const
92 {
93 rowspan = m_span.GetRowspan();
94 colspan = m_span.GetColspan();
95 }
96
97
98 bool wxGBSizerItem::SetPos( const wxGBPosition& pos )
99 {
100 if (m_gbsizer)
101 {
102 wxCHECK_MSG( !m_gbsizer->CheckForIntersection(pos, m_span, this), false,
103 wxT("An item is already at that position") );
104 }
105 m_pos = pos;
106 return true;
107 }
108
109 bool wxGBSizerItem::SetSpan( const wxGBSpan& span )
110 {
111 if (m_gbsizer)
112 {
113 wxCHECK_MSG( !m_gbsizer->CheckForIntersection(m_pos, span, this), false,
114 wxT("An item is already at that position") );
115 }
116 m_span = span;
117 return true;
118 }
119
120
121 inline bool InRange(int val, int min, int max)
122 {
123 return (val >= min && val <= max);
124 }
125
126 bool wxGBSizerItem::Intersects(const wxGBSizerItem& other)
127 {
128 return Intersects(other.GetPos(), other.GetSpan());
129 }
130
131 bool 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
159 void 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
170 wxGridBagSizer::wxGridBagSizer(int vgap, int hgap )
171 : wxFlexGridSizer(1, vgap, hgap),
172 m_emptyCellSize(10,20)
173
174 {
175 }
176
177
178 wxSizerItem* wxGridBagSizer::Add( wxWindow *window,
179 const wxGBPosition& pos, const wxGBSpan& span,
180 int flag, int border, wxObject* userData )
181 {
182 wxGBSizerItem* item = new wxGBSizerItem(window, pos, span, flag, border, userData);
183 if ( Add(item) )
184 return item;
185 else
186 {
187 delete item;
188 return NULL;
189 }
190 }
191
192 wxSizerItem* wxGridBagSizer::Add( wxSizer *sizer,
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) )
198 return item;
199 else
200 {
201 delete item;
202 return NULL;
203 }
204 }
205
206 wxSizerItem* wxGridBagSizer::Add( int width, int height,
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) )
212 return item;
213 else
214 {
215 delete item;
216 return NULL;
217 }
218 }
219
220 wxSizerItem* wxGridBagSizer::Add( wxGBSizerItem *item )
221 {
222 wxCHECK_MSG( !CheckForIntersection(item), NULL,
223 wxT("An item is already at that position") );
224 m_children.Append(item);
225 item->SetGBSizer(this);
226 if ( item->GetWindow() )
227 item->GetWindow()->SetContainingSizer( this );
228
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
241 return item;
242 }
243
244
245
246 //---------------------------------------------------------------------------
247
248 wxSize 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
257 wxGBPosition 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
266 wxGBPosition 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
275 wxGBPosition wxGridBagSizer::GetItemPosition(size_t index)
276 {
277 wxGBPosition badpos(-1,-1);
278 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
279 wxCHECK_MSG( node, badpos, wxT("Failed to find item.") );
280 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
281 return item->GetPos();
282 }
283
284
285
286 bool 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
294 bool 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
302 bool wxGridBagSizer::SetItemPosition(size_t index, const wxGBPosition& pos)
303 {
304 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
305 wxCHECK_MSG( node, false, wxT("Failed to find item.") );
306 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
307 return item->SetPos(pos);
308 }
309
310
311
312 wxGBSpan wxGridBagSizer::GetItemSpan(wxWindow *window)
313 {
314 wxGBSizerItem* item = FindItem(window);
315 wxCHECK_MSG( item, wxGBSpan::Invalid(), wxT("Failed to find item.") );
316 return item->GetSpan();
317 }
318
319
320 wxGBSpan wxGridBagSizer::GetItemSpan(wxSizer *sizer)
321 {
322 wxGBSizerItem* item = FindItem(sizer);
323 wxCHECK_MSG( item, wxGBSpan::Invalid(), wxT("Failed to find item.") );
324 return item->GetSpan();
325 }
326
327
328 wxGBSpan wxGridBagSizer::GetItemSpan(size_t index)
329 {
330 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
331 wxCHECK_MSG( node, wxGBSpan::Invalid(), wxT("Failed to find item.") );
332 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
333 return item->GetSpan();
334 }
335
336
337
338 bool 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
346 bool 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
354 bool wxGridBagSizer::SetItemSpan(size_t index, const wxGBSpan& span)
355 {
356 wxSizerItemList::compatibility_iterator node = m_children.Item( index );
357 wxCHECK_MSG( node, false, wxT("Failed to find item.") );
358 wxGBSizerItem* item = (wxGBSizerItem*)node->GetData();
359 return item->SetSpan(span);
360 }
361
362
363
364
365 wxGBSizerItem* 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
379 wxGBSizerItem* 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
395 wxGBSizerItem* 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
411 wxGBSizerItem* 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);
419 if ( rect.Contains(pt) )
420 return item;
421 node = node->GetNext();
422 }
423 return NULL;
424 }
425
426
427
428
429 wxGBSizerItem* 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.
449 wxSize wxGridBagSizer::CalcMin()
450 {
451 int idx;
452
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;
466
467 item->GetPos(row, col);
468 item->GetEndPos(endrow, endcol);
469
470 // fill heights and widths up to this item if needed
471 while ( (int)m_rowHeights.GetCount() <= endrow )
472 m_rowHeights.Add(m_emptyCellSize.GetHeight());
473 while ( (int)m_colWidths.GetCount() <= endcol )
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
486 AdjustForOverflow();
487 AdjustForFlexDirection();
488
489 // Now traverse the heights and widths arrays calcing the totals, including gaps
490 int width = 0;
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 );
494
495 int height = 0;
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 );
499
500 m_calculatedMinSize = wxSize(width, height);
501 return m_calculatedMinSize;
502 }
503
504
505
506 void wxGridBagSizer::RecalcSizes()
507 {
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() )
513 return;
514
515 wxPoint pt( GetPosition() );
516 wxSize sz( GetSize() );
517
518 m_rows = m_rowHeights.GetCount();
519 m_cols = m_colWidths.GetCount();
520 int idx, width, height;
521
522 AdjustForGrowables(sz);
523
524 // Find the start positions on the window of the rows and columns
525 wxArrayInt rowpos;
526 rowpos.Add(0, m_rows);
527 int y = pt.y;
528 for (idx=0; idx < m_rows; idx++)
529 {
530 height = m_rowHeights[idx] + m_vgap;
531 rowpos[idx] = y;
532 y += height;
533 }
534
535 wxArrayInt colpos;
536 colpos.Add(0, m_cols);
537 int x = pt.x;
538 for (idx=0; idx < m_cols; idx++)
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();
552
553 if ( item->IsShown() )
554 {
555 item->GetPos(row, col);
556 item->GetEndPos(endrow, endcol);
557
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
562
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 }
570
571 node = node->GetNext();
572 }
573 }
574
575
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.
582 void wxGridBagSizer::AdjustForOverflow()
583 {
584 int row, col;
585
586 for (row=0; row<(int)m_rowHeights.GetCount(); row++)
587 {
588 int rowExtra=INT_MAX;
589 int rowHeight = m_rowHeights[row];
590 for (col=0; col<(int)m_colWidths.GetCount(); col++)
591 {
592 wxGBPosition pos(row,col);
593 wxGBSizerItem* item = FindItemAtPosition(pos);
594 if ( !item || !item->IsShown() )
595 continue;
596
597 int endrow, endcol;
598 item->GetEndPos(endrow, endcol);
599
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 {
604 int itemHeight = item->CalcMin().GetHeight();
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
613 int itemHeight = item->CalcMin().GetHeight();
614 for (int r=item->GetPos().GetRow(); r<row; r++)
615 itemHeight -= (m_rowHeights[r] + GetHGap());
616
617 if ( itemHeight < 0 )
618 itemHeight = 0;
619
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
629 for (col=0; col<(int)m_colWidths.GetCount(); col++)
630 {
631 int colExtra=INT_MAX;
632 int colWidth = m_colWidths[col];
633 for (row=0; row<(int)m_rowHeights.GetCount(); row++)
634 {
635 wxGBPosition pos(row,col);
636 wxGBSizerItem* item = FindItemAtPosition(pos);
637 if ( !item || !item->IsShown() )
638 continue;
639
640 int endrow, endcol;
641 item->GetEndPos(endrow, endcol);
642
643 if ( item->GetPos() == pos && endcol == col )
644 {
645 int itemWidth = item->CalcMin().GetWidth();
646 colExtra = wxMin(colExtra, colWidth - itemWidth);
647 continue;
648 }
649
650 if ( endcol == col )
651 {
652 int itemWidth = item->CalcMin().GetWidth();
653 for (int c=item->GetPos().GetCol(); c<col; c++)
654 itemWidth -= (m_colWidths[c] + GetVGap());
655
656 if ( itemWidth < 0 )
657 itemWidth = 0;
658
659 colExtra = wxMin(colExtra, colWidth - itemWidth);
660 }
661 }
662 if ( colExtra && colExtra != INT_MAX )
663 m_colWidths[col] -= colExtra;
664 }
665
666
667 }
668
669 //---------------------------------------------------------------------------
670
671 bool wxGridBagSizer::CheckForIntersection(wxGBSizerItem* item, wxGBSizerItem* excludeItem)
672 {
673 return CheckForIntersection(item->GetPos(), item->GetSpan(), excludeItem);
674 }
675
676 bool 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;
686
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...
698 wxGBPosition 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
719 wxSizerItem* wxGridBagSizer::Add( wxWindow *window, int, int flag, int border, wxObject* userData )
720 {
721 return Add(window, FindEmptyCell(), wxDefaultSpan, flag, border, userData);
722 }
723
724 wxSizerItem* wxGridBagSizer::Add( wxSizer *sizer, int, int flag, int border, wxObject* userData )
725 {
726 return Add(sizer, FindEmptyCell(), wxDefaultSpan, flag, border, userData);
727 }
728
729 wxSizerItem* wxGridBagSizer::Add( int width, int height, int, int flag, int border, wxObject* userData )
730 {
731 return Add(width, height, FindEmptyCell(), wxDefaultSpan, flag, border, userData);
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
740 wxSizerItem* wxGridBagSizer::Add( wxSizerItem * )
741 {
742 wxFAIL_MSG(wxT("Invalid Add form called."));
743 return NULL;
744 }
745
746 wxSizerItem* wxGridBagSizer::Prepend( wxWindow *, int, int, int, wxObject* )
747 {
748 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
749 return NULL;
750 }
751
752 wxSizerItem* wxGridBagSizer::Prepend( wxSizer *, int, int, int, wxObject* )
753 {
754 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
755 return NULL;
756 }
757
758 wxSizerItem* wxGridBagSizer::Prepend( int, int, int, int, int, wxObject* )
759 {
760 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
761 return NULL;
762 }
763
764 wxSizerItem* wxGridBagSizer::Prepend( wxSizerItem * )
765 {
766 wxFAIL_MSG(wxT("Prepend should not be used with wxGridBagSizer."));
767 return NULL;
768 }
769
770
771 wxSizerItem* wxGridBagSizer::Insert( size_t, wxWindow *, int, int, int, wxObject* )
772 {
773 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
774 return NULL;
775 }
776
777 wxSizerItem* wxGridBagSizer::Insert( size_t, wxSizer *, int, int, int, wxObject* )
778 {
779 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
780 return NULL;
781 }
782
783 wxSizerItem* wxGridBagSizer::Insert( size_t, int, int, int, int, int, wxObject* )
784 {
785 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
786 return NULL;
787 }
788
789 wxSizerItem* wxGridBagSizer::Insert( size_t, wxSizerItem * )
790 {
791 wxFAIL_MSG(wxT("Insert should not be used with wxGridBagSizer."));
792 return NULL;
793 }
794
795
796 //---------------------------------------------------------------------------
797 //---------------------------------------------------------------------------