]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/sizer.h | |
3 | // Purpose: provide wxSizer class for layout | |
4 | // Author: Robert Roebling and Robin Dunn | |
5 | // Modified by: Ron Lee, Vadim Zeitlin (wxSizerFlags) | |
6 | // Created: | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Robin Dunn, Robert Roebling | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __WXSIZER_H__ | |
13 | #define __WXSIZER_H__ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #include "wx/window.h" | |
18 | ||
19 | //--------------------------------------------------------------------------- | |
20 | // classes | |
21 | //--------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxButton; | |
24 | class WXDLLEXPORT wxBoxSizer; | |
25 | class WXDLLEXPORT wxSizerItem; | |
26 | class WXDLLEXPORT wxSizer; | |
27 | ||
28 | #ifndef wxUSE_BORDER_BY_DEFAULT | |
29 | #ifdef __SMARTPHONE__ | |
30 | // no borders by default on limited size screen | |
31 | #define wxUSE_BORDER_BY_DEFAULT 0 | |
32 | #else | |
33 | #define wxUSE_BORDER_BY_DEFAULT 1 | |
34 | #endif | |
35 | #endif | |
36 | ||
37 | // ---------------------------------------------------------------------------- | |
38 | // wxSizerFlags: flags used for an item in the sizer | |
39 | // ---------------------------------------------------------------------------- | |
40 | ||
41 | class WXDLLEXPORT wxSizerFlags | |
42 | { | |
43 | public: | |
44 | // construct the flags object initialized with the given proportion (0 by | |
45 | // default) | |
46 | wxSizerFlags(int proportion = 0) : m_proportion(proportion) | |
47 | { | |
48 | m_flags = 0; | |
49 | m_borderInPixels = 0; | |
50 | } | |
51 | ||
52 | // setters for all sizer flags, they all return the object itself so that | |
53 | // calls to them can be chained | |
54 | ||
55 | wxSizerFlags& Proportion(int proportion) | |
56 | { | |
57 | m_proportion = proportion; | |
58 | return *this; | |
59 | } | |
60 | ||
61 | wxSizerFlags& Align(int alignment) // combination of wxAlignment values | |
62 | { | |
63 | m_flags &= ~wxALIGN_MASK; | |
64 | m_flags |= alignment; | |
65 | ||
66 | return *this; | |
67 | } | |
68 | ||
69 | wxSizerFlags& Expand() | |
70 | { | |
71 | m_flags |= wxEXPAND; | |
72 | return *this; | |
73 | } | |
74 | ||
75 | // some shortcuts for Align() | |
76 | wxSizerFlags& Centre() { return Align(wxCENTRE); } | |
77 | wxSizerFlags& Center() { return Centre(); } | |
78 | wxSizerFlags& Left() { return Align(wxALIGN_LEFT); } | |
79 | wxSizerFlags& Right() { return Align(wxALIGN_RIGHT); } | |
80 | ||
81 | // default border size used by Border() below | |
82 | static int GetDefaultBorder() | |
83 | { | |
84 | #if wxUSE_BORDER_BY_DEFAULT | |
85 | // FIXME: default border size shouldn't be hardcoded and at the very | |
86 | // least they should depend on the current font size | |
87 | return 5; | |
88 | #else | |
89 | return 0; | |
90 | #endif | |
91 | } | |
92 | ||
93 | ||
94 | wxSizerFlags& Border(int direction, int borderInPixels) | |
95 | { | |
96 | m_flags &= ~wxALL; | |
97 | m_flags |= direction; | |
98 | ||
99 | m_borderInPixels = borderInPixels; | |
100 | ||
101 | return *this; | |
102 | } | |
103 | ||
104 | wxSizerFlags& Border(int direction = wxALL) | |
105 | { | |
106 | #if wxUSE_BORDER_BY_DEFAULT | |
107 | return Border(direction, GetDefaultBorder()); | |
108 | #else | |
109 | // no borders by default on limited size screen | |
110 | wxUnusedVar(direction); | |
111 | ||
112 | return *this; | |
113 | #endif | |
114 | } | |
115 | ||
116 | wxSizerFlags& DoubleBorder(int direction = wxALL) | |
117 | { | |
118 | #if wxUSE_BORDER_BY_DEFAULT | |
119 | return Border(direction, 2*GetDefaultBorder()); | |
120 | #else | |
121 | wxUnusedVar(direction); | |
122 | ||
123 | return *this; | |
124 | #endif | |
125 | } | |
126 | ||
127 | wxSizerFlags& TripleBorder(int direction = wxALL) | |
128 | { | |
129 | #if wxUSE_BORDER_BY_DEFAULT | |
130 | return Border(direction, 3*GetDefaultBorder()); | |
131 | #else | |
132 | wxUnusedVar(direction); | |
133 | ||
134 | return *this; | |
135 | #endif | |
136 | } | |
137 | ||
138 | wxSizerFlags& HorzBorder() | |
139 | { | |
140 | #if wxUSE_BORDER_BY_DEFAULT | |
141 | return Border(wxLEFT | wxRIGHT, GetDefaultBorder()); | |
142 | #else | |
143 | return *this; | |
144 | #endif | |
145 | } | |
146 | ||
147 | wxSizerFlags& DoubleHorzBorder() | |
148 | { | |
149 | #if wxUSE_BORDER_BY_DEFAULT | |
150 | return Border(wxLEFT | wxRIGHT, 2*GetDefaultBorder()); | |
151 | #else | |
152 | return *this; | |
153 | #endif | |
154 | } | |
155 | ||
156 | // accessors for wxSizer only | |
157 | int GetProportion() const { return m_proportion; } | |
158 | int GetFlags() const { return m_flags; } | |
159 | int GetBorderInPixels() const { return m_borderInPixels; } | |
160 | ||
161 | private: | |
162 | int m_proportion; | |
163 | int m_flags; | |
164 | int m_borderInPixels; | |
165 | }; | |
166 | ||
167 | ||
168 | // ---------------------------------------------------------------------------- | |
169 | // wxSizerSpacer: used by wxSizerItem to represent a spacer | |
170 | // ---------------------------------------------------------------------------- | |
171 | ||
172 | class WXDLLEXPORT wxSizerSpacer | |
173 | { | |
174 | public: | |
175 | wxSizerSpacer(const wxSize& size) : m_size(size), m_isShown(true) { } | |
176 | ||
177 | void SetSize(const wxSize& size) { m_size = size; } | |
178 | const wxSize& GetSize() const { return m_size; } | |
179 | ||
180 | void Show(bool show) { m_isShown = show; } | |
181 | bool IsShown() const { return m_isShown; } | |
182 | ||
183 | private: | |
184 | // the size, in pixel | |
185 | wxSize m_size; | |
186 | ||
187 | // is the spacer currently shown? | |
188 | bool m_isShown; | |
189 | }; | |
190 | ||
191 | // ---------------------------------------------------------------------------- | |
192 | // wxSizerItem | |
193 | // ---------------------------------------------------------------------------- | |
194 | ||
195 | class WXDLLEXPORT wxSizerItem : public wxObject | |
196 | { | |
197 | public: | |
198 | // window | |
199 | wxSizerItem( wxWindow *window, | |
200 | int proportion, | |
201 | int flag, | |
202 | int border, | |
203 | wxObject* userData ); | |
204 | ||
205 | // window with flags | |
206 | wxSizerItem(wxWindow *window, const wxSizerFlags& flags) | |
207 | { | |
208 | Init(flags); | |
209 | ||
210 | SetWindow(window); | |
211 | } | |
212 | ||
213 | // subsizer | |
214 | wxSizerItem( wxSizer *sizer, | |
215 | int proportion, | |
216 | int flag, | |
217 | int border, | |
218 | wxObject* userData ); | |
219 | ||
220 | // sizer with flags | |
221 | wxSizerItem(wxSizer *sizer, const wxSizerFlags& flags) | |
222 | { | |
223 | Init(flags); | |
224 | ||
225 | SetSizer(sizer); | |
226 | } | |
227 | ||
228 | // spacer | |
229 | wxSizerItem( int width, | |
230 | int height, | |
231 | int proportion, | |
232 | int flag, | |
233 | int border, | |
234 | wxObject* userData); | |
235 | ||
236 | // spacer with flags | |
237 | wxSizerItem(int width, int height, const wxSizerFlags& flags) | |
238 | { | |
239 | Init(flags); | |
240 | ||
241 | SetSpacer(width, height); | |
242 | } | |
243 | ||
244 | wxSizerItem(); | |
245 | virtual ~wxSizerItem(); | |
246 | ||
247 | virtual void DeleteWindows(); | |
248 | ||
249 | // Enable deleting the SizerItem without destroying the contained sizer. | |
250 | void DetachSizer() { m_sizer = NULL; } | |
251 | ||
252 | virtual wxSize GetSize() const; | |
253 | virtual wxSize CalcMin(); | |
254 | virtual void SetDimension( const wxPoint& pos, const wxSize& size ); | |
255 | ||
256 | wxSize GetMinSize() const | |
257 | { return m_minSize; } | |
258 | wxSize GetMinSizeWithBorder() const; | |
259 | ||
260 | void SetMinSize(const wxSize& size) | |
261 | { | |
262 | if ( IsWindow() ) | |
263 | m_window->SetMinSize(size); | |
264 | m_minSize = size; | |
265 | } | |
266 | void SetMinSize( int x, int y ) | |
267 | { SetMinSize(wxSize(x, y)); } | |
268 | void SetInitSize( int x, int y ) | |
269 | { SetMinSize(wxSize(x, y)); } | |
270 | ||
271 | // if either of dimensions is zero, ratio is assumed to be 1 | |
272 | // to avoid "divide by zero" errors | |
273 | void SetRatio(int width, int height) | |
274 | { m_ratio = (width && height) ? ((float) width / (float) height) : 1; } | |
275 | void SetRatio(const wxSize& size) | |
276 | { SetRatio(size.x, size.y); } | |
277 | void SetRatio(float ratio) | |
278 | { m_ratio = ratio; } | |
279 | float GetRatio() const | |
280 | { return m_ratio; } | |
281 | ||
282 | virtual wxRect GetRect() { return m_rect; } | |
283 | ||
284 | bool IsWindow() const { return m_kind == Item_Window; } | |
285 | bool IsSizer() const { return m_kind == Item_Sizer; } | |
286 | bool IsSpacer() const { return m_kind == Item_Spacer; } | |
287 | ||
288 | #if WXWIN_COMPATIBILITY_2_6 | |
289 | // Deprecated in 2.6, use {G,S}etProportion instead. | |
290 | wxDEPRECATED( void SetOption( int option ) ); | |
291 | wxDEPRECATED( int GetOption() const ); | |
292 | #endif // WXWIN_COMPATIBILITY_2_6 | |
293 | ||
294 | void SetProportion( int proportion ) | |
295 | { m_proportion = proportion; } | |
296 | int GetProportion() const | |
297 | { return m_proportion; } | |
298 | void SetFlag( int flag ) | |
299 | { m_flag = flag; } | |
300 | int GetFlag() const | |
301 | { return m_flag; } | |
302 | void SetBorder( int border ) | |
303 | { m_border = border; } | |
304 | int GetBorder() const | |
305 | { return m_border; } | |
306 | ||
307 | wxWindow *GetWindow() const | |
308 | { return m_kind == Item_Window ? m_window : NULL; } | |
309 | wxSizer *GetSizer() const | |
310 | { return m_kind == Item_Sizer ? m_sizer : NULL; } | |
311 | wxSize GetSpacer() const; | |
312 | ||
313 | // this function behaves obviously for the windows and spacers but for the | |
314 | // sizers it returns true if any sizer element is shown and only returns | |
315 | // false if all of them are hidden | |
316 | bool IsShown() const; | |
317 | void Show(bool show); | |
318 | ||
319 | void SetUserData(wxObject* userData) | |
320 | { delete m_userData; m_userData = userData; } | |
321 | wxObject* GetUserData() const | |
322 | { return m_userData; } | |
323 | wxPoint GetPosition() const | |
324 | { return m_pos; } | |
325 | ||
326 | ||
327 | // these functions do not free old sizer/spacer | |
328 | void SetWindow(wxWindow *window); | |
329 | void SetSizer(wxSizer *sizer); | |
330 | void SetSpacer(const wxSize& size); | |
331 | void SetSpacer(int width, int height) { SetSpacer(wxSize(width, height)); } | |
332 | ||
333 | protected: | |
334 | // common part of several ctors | |
335 | void Init() { m_userData = NULL; } | |
336 | ||
337 | // common part of ctors taking wxSizerFlags | |
338 | void Init(const wxSizerFlags& flags); | |
339 | ||
340 | ||
341 | // discriminated union: depending on m_kind one of the fields is valid | |
342 | enum | |
343 | { | |
344 | Item_None, | |
345 | Item_Window, | |
346 | Item_Sizer, | |
347 | Item_Spacer, | |
348 | Item_Max | |
349 | } m_kind; | |
350 | union | |
351 | { | |
352 | wxWindow *m_window; | |
353 | wxSizer *m_sizer; | |
354 | wxSizerSpacer *m_spacer; | |
355 | }; | |
356 | ||
357 | wxPoint m_pos; | |
358 | wxSize m_minSize; | |
359 | int m_proportion; | |
360 | int m_border; | |
361 | int m_flag; | |
362 | ||
363 | // on screen rectangle of this item (not including borders) | |
364 | wxRect m_rect; | |
365 | ||
366 | // Aspect ratio can always be calculated from m_size, | |
367 | // but this would cause precision loss when the window | |
368 | // is shrunk. It is safer to preserve the initial value. | |
369 | float m_ratio; | |
370 | ||
371 | wxObject *m_userData; | |
372 | ||
373 | private: | |
374 | DECLARE_CLASS(wxSizerItem) | |
375 | DECLARE_NO_COPY_CLASS(wxSizerItem) | |
376 | }; | |
377 | ||
378 | WX_DECLARE_EXPORTED_LIST( wxSizerItem, wxSizerItemList ); | |
379 | ||
380 | ||
381 | //--------------------------------------------------------------------------- | |
382 | // wxSizer | |
383 | //--------------------------------------------------------------------------- | |
384 | ||
385 | class WXDLLEXPORT wxSizer: public wxObject, public wxClientDataContainer | |
386 | { | |
387 | public: | |
388 | wxSizer() { m_containingWindow = NULL; } | |
389 | virtual ~wxSizer(); | |
390 | ||
391 | // methods for adding elements to the sizer: there are Add/Insert/Prepend | |
392 | // overloads for each of window/sizer/spacer/wxSizerItem | |
393 | wxSizerItem* Add(wxWindow *window, | |
394 | int proportion = 0, | |
395 | int flag = 0, | |
396 | int border = 0, | |
397 | wxObject* userData = NULL); | |
398 | wxSizerItem* Add(wxSizer *sizer, | |
399 | int proportion = 0, | |
400 | int flag = 0, | |
401 | int border = 0, | |
402 | wxObject* userData = NULL); | |
403 | wxSizerItem* Add(int width, | |
404 | int height, | |
405 | int proportion = 0, | |
406 | int flag = 0, | |
407 | int border = 0, | |
408 | wxObject* userData = NULL); | |
409 | wxSizerItem* Add( wxWindow *window, const wxSizerFlags& flags); | |
410 | wxSizerItem* Add( wxSizer *sizer, const wxSizerFlags& flags); | |
411 | wxSizerItem* Add( wxSizerItem *item); | |
412 | ||
413 | wxSizerItem* AddSpacer(int size); | |
414 | wxSizerItem* AddStretchSpacer(int prop = 1); | |
415 | ||
416 | wxSizerItem* Insert(size_t index, | |
417 | wxWindow *window, | |
418 | int proportion = 0, | |
419 | int flag = 0, | |
420 | int border = 0, | |
421 | wxObject* userData = NULL); | |
422 | wxSizerItem* Insert(size_t index, | |
423 | wxSizer *sizer, | |
424 | int proportion = 0, | |
425 | int flag = 0, | |
426 | int border = 0, | |
427 | wxObject* userData = NULL); | |
428 | wxSizerItem* Insert(size_t index, | |
429 | int width, | |
430 | int height, | |
431 | int proportion = 0, | |
432 | int flag = 0, | |
433 | int border = 0, | |
434 | wxObject* userData = NULL); | |
435 | wxSizerItem* Insert(size_t index, | |
436 | wxWindow *window, | |
437 | const wxSizerFlags& flags); | |
438 | wxSizerItem* Insert(size_t index, | |
439 | wxSizer *sizer, | |
440 | const wxSizerFlags& flags); | |
441 | virtual wxSizerItem* Insert( size_t index, wxSizerItem *item); | |
442 | ||
443 | wxSizerItem* InsertSpacer(size_t index, int size); | |
444 | wxSizerItem* InsertStretchSpacer(size_t index, int prop = 1); | |
445 | ||
446 | wxSizerItem* Prepend(wxWindow *window, | |
447 | int proportion = 0, | |
448 | int flag = 0, | |
449 | int border = 0, | |
450 | wxObject* userData = NULL); | |
451 | wxSizerItem* Prepend(wxSizer *sizer, | |
452 | int proportion = 0, | |
453 | int flag = 0, | |
454 | int border = 0, | |
455 | wxObject* userData = NULL); | |
456 | wxSizerItem* Prepend(int width, | |
457 | int height, | |
458 | int proportion = 0, | |
459 | int flag = 0, | |
460 | int border = 0, | |
461 | wxObject* userData = NULL); | |
462 | wxSizerItem* Prepend(wxWindow *window, const wxSizerFlags& flags); | |
463 | wxSizerItem* Prepend(wxSizer *sizer, const wxSizerFlags& flags); | |
464 | wxSizerItem* Prepend(wxSizerItem *item); | |
465 | ||
466 | wxSizerItem* PrependSpacer(int size); | |
467 | wxSizerItem* PrependStretchSpacer(int prop = 1); | |
468 | ||
469 | // set (or possibly unset if window is NULL) or get the window this sizer | |
470 | // is used in | |
471 | void SetContainingWindow(wxWindow *window); | |
472 | wxWindow *GetContainingWindow() const { return m_containingWindow; } | |
473 | ||
474 | #if WXWIN_COMPATIBILITY_2_6 | |
475 | // Deprecated in 2.6 since historically it does not delete the window, | |
476 | // use Detach instead. | |
477 | wxDEPRECATED( virtual bool Remove( wxWindow *window ) ); | |
478 | #endif // WXWIN_COMPATIBILITY_2_6 | |
479 | ||
480 | virtual bool Remove( wxSizer *sizer ); | |
481 | virtual bool Remove( int index ); | |
482 | ||
483 | virtual bool Detach( wxWindow *window ); | |
484 | virtual bool Detach( wxSizer *sizer ); | |
485 | virtual bool Detach( int index ); | |
486 | ||
487 | virtual bool Replace( wxWindow *oldwin, wxWindow *newwin, bool recursive = false ); | |
488 | virtual bool Replace( wxSizer *oldsz, wxSizer *newsz, bool recursive = false ); | |
489 | virtual bool Replace( size_t index, wxSizerItem *newitem ); | |
490 | ||
491 | virtual void Clear( bool delete_windows = false ); | |
492 | virtual void DeleteWindows(); | |
493 | ||
494 | void SetMinSize( int width, int height ) | |
495 | { DoSetMinSize( width, height ); } | |
496 | void SetMinSize( const wxSize& size ) | |
497 | { DoSetMinSize( size.x, size.y ); } | |
498 | ||
499 | // Searches recursively | |
500 | bool SetItemMinSize( wxWindow *window, int width, int height ) | |
501 | { return DoSetItemMinSize( window, width, height ); } | |
502 | bool SetItemMinSize( wxWindow *window, const wxSize& size ) | |
503 | { return DoSetItemMinSize( window, size.x, size.y ); } | |
504 | ||
505 | // Searches recursively | |
506 | bool SetItemMinSize( wxSizer *sizer, int width, int height ) | |
507 | { return DoSetItemMinSize( sizer, width, height ); } | |
508 | bool SetItemMinSize( wxSizer *sizer, const wxSize& size ) | |
509 | { return DoSetItemMinSize( sizer, size.x, size.y ); } | |
510 | ||
511 | bool SetItemMinSize( size_t index, int width, int height ) | |
512 | { return DoSetItemMinSize( index, width, height ); } | |
513 | bool SetItemMinSize( size_t index, const wxSize& size ) | |
514 | { return DoSetItemMinSize( index, size.x, size.y ); } | |
515 | ||
516 | wxSize GetSize() const | |
517 | { return m_size; } | |
518 | wxPoint GetPosition() const | |
519 | { return m_position; } | |
520 | ||
521 | // Calculate the minimal size or return m_minSize if bigger. | |
522 | wxSize GetMinSize(); | |
523 | ||
524 | virtual void RecalcSizes() = 0; | |
525 | virtual wxSize CalcMin() = 0; | |
526 | ||
527 | virtual void Layout(); | |
528 | ||
529 | wxSize Fit( wxWindow *window ); | |
530 | void FitInside( wxWindow *window ); | |
531 | void SetSizeHints( wxWindow *window ); | |
532 | void SetVirtualSizeHints( wxWindow *window ); | |
533 | ||
534 | wxSizerItemList& GetChildren() | |
535 | { return m_children; } | |
536 | ||
537 | void SetDimension( int x, int y, int width, int height ); | |
538 | ||
539 | wxSizerItem* GetItem( wxWindow *window, bool recursive = false ); | |
540 | wxSizerItem* GetItem( wxSizer *sizer, bool recursive = false ); | |
541 | wxSizerItem* GetItem( size_t index ); | |
542 | ||
543 | // Manage whether individual scene items are considered | |
544 | // in the layout calculations or not. | |
545 | bool Show( wxWindow *window, bool show = true, bool recursive = false ); | |
546 | bool Show( wxSizer *sizer, bool show = true, bool recursive = false ); | |
547 | bool Show( size_t index, bool show = true ); | |
548 | ||
549 | bool Hide( wxSizer *sizer, bool recursive = false ) | |
550 | { return Show( sizer, false, recursive ); } | |
551 | bool Hide( wxWindow *window, bool recursive = false ) | |
552 | { return Show( window, false, recursive ); } | |
553 | bool Hide( size_t index ) | |
554 | { return Show( index, false ); } | |
555 | ||
556 | bool IsShown( wxWindow *window ) const; | |
557 | bool IsShown( wxSizer *sizer ) const; | |
558 | bool IsShown( size_t index ) const; | |
559 | ||
560 | // Recursively call wxWindow::Show () on all sizer items. | |
561 | virtual void ShowItems (bool show); | |
562 | ||
563 | void Show(bool show) { ShowItems(show); } | |
564 | ||
565 | protected: | |
566 | wxSize m_size; | |
567 | wxSize m_minSize; | |
568 | wxPoint m_position; | |
569 | wxSizerItemList m_children; | |
570 | ||
571 | // the window this sizer is used in, can be NULL | |
572 | wxWindow *m_containingWindow; | |
573 | ||
574 | wxSize GetMaxWindowSize( wxWindow *window ) const; | |
575 | wxSize GetMinWindowSize( wxWindow *window ); | |
576 | wxSize GetMaxClientSize( wxWindow *window ) const; | |
577 | wxSize GetMinClientSize( wxWindow *window ); | |
578 | wxSize FitSize( wxWindow *window ); | |
579 | wxSize VirtualFitSize( wxWindow *window ); | |
580 | ||
581 | virtual void DoSetMinSize( int width, int height ); | |
582 | virtual bool DoSetItemMinSize( wxWindow *window, int width, int height ); | |
583 | virtual bool DoSetItemMinSize( wxSizer *sizer, int width, int height ); | |
584 | virtual bool DoSetItemMinSize( size_t index, int width, int height ); | |
585 | ||
586 | private: | |
587 | DECLARE_CLASS(wxSizer) | |
588 | }; | |
589 | ||
590 | //--------------------------------------------------------------------------- | |
591 | // wxGridSizer | |
592 | //--------------------------------------------------------------------------- | |
593 | ||
594 | class WXDLLEXPORT wxGridSizer: public wxSizer | |
595 | { | |
596 | public: | |
597 | wxGridSizer( int rows, int cols, int vgap, int hgap ); | |
598 | wxGridSizer( int cols, int vgap = 0, int hgap = 0 ); | |
599 | ||
600 | virtual void RecalcSizes(); | |
601 | virtual wxSize CalcMin(); | |
602 | ||
603 | void SetCols( int cols ) { m_cols = cols; } | |
604 | void SetRows( int rows ) { m_rows = rows; } | |
605 | void SetVGap( int gap ) { m_vgap = gap; } | |
606 | void SetHGap( int gap ) { m_hgap = gap; } | |
607 | int GetCols() const { return m_cols; } | |
608 | int GetRows() const { return m_rows; } | |
609 | int GetVGap() const { return m_vgap; } | |
610 | int GetHGap() const { return m_hgap; } | |
611 | ||
612 | protected: | |
613 | int m_rows; | |
614 | int m_cols; | |
615 | int m_vgap; | |
616 | int m_hgap; | |
617 | ||
618 | // return the number of total items and the number of columns and rows | |
619 | int CalcRowsCols(int& rows, int& cols) const; | |
620 | ||
621 | void SetItemBounds( wxSizerItem *item, int x, int y, int w, int h ); | |
622 | ||
623 | private: | |
624 | DECLARE_CLASS(wxGridSizer) | |
625 | }; | |
626 | ||
627 | //--------------------------------------------------------------------------- | |
628 | // wxFlexGridSizer | |
629 | //--------------------------------------------------------------------------- | |
630 | ||
631 | // the bevaiour for resizing wxFlexGridSizer cells in the "non-flexible" | |
632 | // direction | |
633 | enum wxFlexSizerGrowMode | |
634 | { | |
635 | // don't resize the cells in non-flexible direction at all | |
636 | wxFLEX_GROWMODE_NONE, | |
637 | ||
638 | // uniformly resize only the specified ones (default) | |
639 | wxFLEX_GROWMODE_SPECIFIED, | |
640 | ||
641 | // uniformly resize all cells | |
642 | wxFLEX_GROWMODE_ALL | |
643 | }; | |
644 | ||
645 | class WXDLLEXPORT wxFlexGridSizer: public wxGridSizer | |
646 | { | |
647 | public: | |
648 | // ctors/dtor | |
649 | wxFlexGridSizer( int rows, int cols, int vgap, int hgap ); | |
650 | wxFlexGridSizer( int cols, int vgap = 0, int hgap = 0 ); | |
651 | virtual ~wxFlexGridSizer(); | |
652 | ||
653 | ||
654 | // set the rows/columns which will grow (the others will remain of the | |
655 | // constant initial size) | |
656 | void AddGrowableRow( size_t idx, int proportion = 0 ); | |
657 | void RemoveGrowableRow( size_t idx ); | |
658 | void AddGrowableCol( size_t idx, int proportion = 0 ); | |
659 | void RemoveGrowableCol( size_t idx ); | |
660 | ||
661 | ||
662 | // the sizer cells may grow in both directions, not grow at all or only | |
663 | // grow in one direction but not the other | |
664 | ||
665 | // the direction may be wxVERTICAL, wxHORIZONTAL or wxBOTH (default) | |
666 | void SetFlexibleDirection(int direction) { m_flexDirection = direction; } | |
667 | int GetFlexibleDirection() const { return m_flexDirection; } | |
668 | ||
669 | // note that the grow mode only applies to the direction which is not | |
670 | // flexible | |
671 | void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode) { m_growMode = mode; } | |
672 | wxFlexSizerGrowMode GetNonFlexibleGrowMode() const { return m_growMode; } | |
673 | ||
674 | // Read-only access to the row heights and col widths arrays | |
675 | const wxArrayInt& GetRowHeights() const { return m_rowHeights; } | |
676 | const wxArrayInt& GetColWidths() const { return m_colWidths; } | |
677 | ||
678 | // implementation | |
679 | virtual void RecalcSizes(); | |
680 | virtual wxSize CalcMin(); | |
681 | ||
682 | protected: | |
683 | void AdjustForFlexDirection(); | |
684 | void AdjustForGrowables(const wxSize& sz, const wxSize& minsz, | |
685 | int nrows, int ncols); | |
686 | ||
687 | // the heights/widths of all rows/columns | |
688 | wxArrayInt m_rowHeights, | |
689 | m_colWidths; | |
690 | ||
691 | // indices of the growable columns and rows | |
692 | wxArrayInt m_growableRows, | |
693 | m_growableCols; | |
694 | ||
695 | // proportion values of the corresponding growable rows and columns | |
696 | wxArrayInt m_growableRowsProportions, | |
697 | m_growableColsProportions; | |
698 | ||
699 | // parameters describing whether the growable cells should be resized in | |
700 | // both directions or only one | |
701 | int m_flexDirection; | |
702 | wxFlexSizerGrowMode m_growMode; | |
703 | ||
704 | // saves CalcMin result to optimize RecalcSizes | |
705 | wxSize m_calculatedMinSize; | |
706 | ||
707 | private: | |
708 | DECLARE_CLASS(wxFlexGridSizer) | |
709 | DECLARE_NO_COPY_CLASS(wxFlexGridSizer) | |
710 | }; | |
711 | ||
712 | //--------------------------------------------------------------------------- | |
713 | // wxBoxSizer | |
714 | //--------------------------------------------------------------------------- | |
715 | ||
716 | class WXDLLEXPORT wxBoxSizer: public wxSizer | |
717 | { | |
718 | public: | |
719 | wxBoxSizer( int orient ); | |
720 | ||
721 | void RecalcSizes(); | |
722 | wxSize CalcMin(); | |
723 | ||
724 | int GetOrientation() const | |
725 | { return m_orient; } | |
726 | ||
727 | void SetOrientation(int orient) | |
728 | { m_orient = orient; } | |
729 | ||
730 | protected: | |
731 | int m_orient; | |
732 | int m_stretchable; | |
733 | int m_minWidth; | |
734 | int m_minHeight; | |
735 | int m_fixedWidth; | |
736 | int m_fixedHeight; | |
737 | ||
738 | private: | |
739 | DECLARE_CLASS(wxBoxSizer) | |
740 | }; | |
741 | ||
742 | //--------------------------------------------------------------------------- | |
743 | // wxStaticBoxSizer | |
744 | //--------------------------------------------------------------------------- | |
745 | ||
746 | #if wxUSE_STATBOX | |
747 | ||
748 | class WXDLLEXPORT wxStaticBox; | |
749 | ||
750 | class WXDLLEXPORT wxStaticBoxSizer: public wxBoxSizer | |
751 | { | |
752 | public: | |
753 | wxStaticBoxSizer(wxStaticBox *box, int orient); | |
754 | wxStaticBoxSizer(int orient, wxWindow *win, const wxString& label = wxEmptyString); | |
755 | virtual ~wxStaticBoxSizer(); | |
756 | ||
757 | void RecalcSizes(); | |
758 | wxSize CalcMin(); | |
759 | ||
760 | wxStaticBox *GetStaticBox() const | |
761 | { return m_staticBox; } | |
762 | ||
763 | // override to hide/show the static box as well | |
764 | virtual void ShowItems (bool show); | |
765 | ||
766 | virtual bool Detach( wxWindow *window ); | |
767 | virtual bool Detach( wxSizer *sizer ) { return wxBoxSizer::Detach(sizer); } | |
768 | virtual bool Detach( int index ) { return wxBoxSizer::Detach(index); } | |
769 | ||
770 | protected: | |
771 | wxStaticBox *m_staticBox; | |
772 | ||
773 | private: | |
774 | DECLARE_CLASS(wxStaticBoxSizer) | |
775 | DECLARE_NO_COPY_CLASS(wxStaticBoxSizer) | |
776 | }; | |
777 | ||
778 | #endif // wxUSE_STATBOX | |
779 | ||
780 | #if wxUSE_BUTTON | |
781 | ||
782 | class WXDLLEXPORT wxStdDialogButtonSizer: public wxBoxSizer | |
783 | { | |
784 | public: | |
785 | // Constructor just creates a new wxBoxSizer, not much else. | |
786 | // Box sizer orientation is automatically determined here: | |
787 | // vertical for PDAs, horizontal for everything else? | |
788 | wxStdDialogButtonSizer(); | |
789 | ||
790 | // Checks button ID against system IDs and sets one of the pointers below | |
791 | // to this button. Does not do any sizer-related things here. | |
792 | void AddButton(wxButton *button); | |
793 | ||
794 | // Use these if no standard ID can/should be used | |
795 | void SetAffirmativeButton( wxButton *button ); | |
796 | void SetNegativeButton( wxButton *button ); | |
797 | void SetCancelButton( wxButton *button ); | |
798 | ||
799 | // All platform-specific code here, checks which buttons exist and add | |
800 | // them to the sizer accordingly. | |
801 | // Note - one potential hack on Mac we could use here, | |
802 | // if m_buttonAffirmative is wxID_SAVE then ensure wxID_SAVE | |
803 | // is set to _("Save") and m_buttonNegative is set to _("Don't Save") | |
804 | // I wouldn't add any other hacks like that into here, | |
805 | // but this one I can see being useful. | |
806 | void Realize(); | |
807 | ||
808 | wxButton *GetAffirmativeButton() const { return m_buttonAffirmative; } | |
809 | wxButton *GetApplyButton() const { return m_buttonApply; } | |
810 | wxButton *GetNegativeButton() const { return m_buttonNegative; } | |
811 | wxButton *GetCancelButton() const { return m_buttonCancel; } | |
812 | wxButton *GetHelpButton() const { return m_buttonHelp; } | |
813 | ||
814 | protected: | |
815 | wxButton *m_buttonAffirmative; // wxID_OK, wxID_YES, wxID_SAVE go here | |
816 | wxButton *m_buttonApply; | |
817 | wxButton *m_buttonNegative; // wxID_NO | |
818 | wxButton *m_buttonCancel; | |
819 | wxButton *m_buttonHelp; | |
820 | ||
821 | private: | |
822 | DECLARE_CLASS(wxStdDialogButtonSizer) | |
823 | DECLARE_NO_COPY_CLASS(wxStdDialogButtonSizer) | |
824 | }; | |
825 | ||
826 | #endif // wxUSE_BUTTON | |
827 | ||
828 | #if WXWIN_COMPATIBILITY_2_4 | |
829 | // NB: wxBookCtrlSizer and wxNotebookSizer are deprecated, they | |
830 | // don't do anything. wxBookCtrlBase::DoGetBestSize does the job now. | |
831 | ||
832 | // ---------------------------------------------------------------------------- | |
833 | // wxBookCtrlSizer | |
834 | // ---------------------------------------------------------------------------- | |
835 | ||
836 | #if wxUSE_BOOKCTRL | |
837 | ||
838 | // this sizer works with wxNotebook/wxListbook/... and sizes the control to | |
839 | // fit its pages | |
840 | class WXDLLEXPORT wxBookCtrlBase; | |
841 | ||
842 | class WXDLLEXPORT wxBookCtrlSizer : public wxSizer | |
843 | { | |
844 | public: | |
845 | #if WXWIN_COMPATIBILITY_2_6 | |
846 | wxDEPRECATED( wxBookCtrlSizer(wxBookCtrlBase *bookctrl) ); | |
847 | #endif // WXWIN_COMPATIBILITY_2_6 | |
848 | ||
849 | wxBookCtrlBase *GetControl() const { return m_bookctrl; } | |
850 | ||
851 | virtual void RecalcSizes(); | |
852 | virtual wxSize CalcMin(); | |
853 | ||
854 | protected: | |
855 | // this protected ctor lets us mark the real one above as deprecated | |
856 | // and still have warning-free build of the library itself: | |
857 | wxBookCtrlSizer() {} | |
858 | ||
859 | wxBookCtrlBase *m_bookctrl; | |
860 | ||
861 | private: | |
862 | DECLARE_CLASS(wxBookCtrlSizer) | |
863 | DECLARE_NO_COPY_CLASS(wxBookCtrlSizer) | |
864 | }; | |
865 | ||
866 | ||
867 | #if wxUSE_NOTEBOOK | |
868 | ||
869 | // before wxBookCtrlBase we only had wxNotebookSizer, keep it for backwards | |
870 | // compatibility | |
871 | class WXDLLEXPORT wxNotebook; | |
872 | ||
873 | class WXDLLEXPORT wxNotebookSizer : public wxBookCtrlSizer | |
874 | { | |
875 | public: | |
876 | #if WXWIN_COMPATIBILITY_2_6 | |
877 | wxDEPRECATED( wxNotebookSizer(wxNotebook *nb) ); | |
878 | #endif // WXWIN_COMPATIBILITY_2_6 | |
879 | ||
880 | wxNotebook *GetNotebook() const { return (wxNotebook *)m_bookctrl; } | |
881 | ||
882 | private: | |
883 | DECLARE_CLASS(wxNotebookSizer) | |
884 | DECLARE_NO_COPY_CLASS(wxNotebookSizer) | |
885 | }; | |
886 | ||
887 | #endif // wxUSE_NOTEBOOK | |
888 | ||
889 | #endif // wxUSE_BOOKCTRL | |
890 | ||
891 | #endif // WXWIN_COMPATIBILITY_2_4 | |
892 | ||
893 | // ---------------------------------------------------------------------------- | |
894 | // inline functions implementation | |
895 | // ---------------------------------------------------------------------------- | |
896 | ||
897 | inline wxSizerItem* | |
898 | wxSizer::Add( wxSizerItem *item ) | |
899 | { | |
900 | return Insert( m_children.GetCount(), item ); | |
901 | } | |
902 | ||
903 | inline wxSizerItem* | |
904 | wxSizer::Add( wxWindow *window, int proportion, int flag, int border, wxObject* userData ) | |
905 | { | |
906 | return Add( new wxSizerItem( window, proportion, flag, border, userData ) ); | |
907 | } | |
908 | ||
909 | inline wxSizerItem* | |
910 | wxSizer::Add( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData ) | |
911 | { | |
912 | return Add( new wxSizerItem( sizer, proportion, flag, border, userData ) ); | |
913 | } | |
914 | ||
915 | inline wxSizerItem* | |
916 | wxSizer::Add( int width, int height, int proportion, int flag, int border, wxObject* userData ) | |
917 | { | |
918 | return Add( new wxSizerItem( width, height, proportion, flag, border, userData ) ); | |
919 | } | |
920 | ||
921 | inline wxSizerItem* | |
922 | wxSizer::Add( wxWindow *window, const wxSizerFlags& flags ) | |
923 | { | |
924 | return Add( new wxSizerItem(window, flags) ); | |
925 | } | |
926 | ||
927 | inline wxSizerItem* | |
928 | wxSizer::Add( wxSizer *sizer, const wxSizerFlags& flags ) | |
929 | { | |
930 | return Add( new wxSizerItem(sizer, flags) ); | |
931 | } | |
932 | ||
933 | inline wxSizerItem* | |
934 | wxSizer::AddSpacer(int size) | |
935 | { | |
936 | return Add(size, size); | |
937 | } | |
938 | ||
939 | inline wxSizerItem* | |
940 | wxSizer::AddStretchSpacer(int prop) | |
941 | { | |
942 | return Add(0, 0, prop); | |
943 | } | |
944 | ||
945 | inline wxSizerItem* | |
946 | wxSizer::Prepend( wxSizerItem *item ) | |
947 | { | |
948 | return Insert( 0, item ); | |
949 | } | |
950 | ||
951 | inline wxSizerItem* | |
952 | wxSizer::Prepend( wxWindow *window, int proportion, int flag, int border, wxObject* userData ) | |
953 | { | |
954 | return Prepend( new wxSizerItem( window, proportion, flag, border, userData ) ); | |
955 | } | |
956 | ||
957 | inline wxSizerItem* | |
958 | wxSizer::Prepend( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData ) | |
959 | { | |
960 | return Prepend( new wxSizerItem( sizer, proportion, flag, border, userData ) ); | |
961 | } | |
962 | ||
963 | inline wxSizerItem* | |
964 | wxSizer::Prepend( int width, int height, int proportion, int flag, int border, wxObject* userData ) | |
965 | { | |
966 | return Prepend( new wxSizerItem( width, height, proportion, flag, border, userData ) ); | |
967 | } | |
968 | ||
969 | inline wxSizerItem* | |
970 | wxSizer::PrependSpacer(int size) | |
971 | { | |
972 | return Prepend(size, size); | |
973 | } | |
974 | ||
975 | inline wxSizerItem* | |
976 | wxSizer::PrependStretchSpacer(int prop) | |
977 | { | |
978 | return Prepend(0, 0, prop); | |
979 | } | |
980 | ||
981 | inline wxSizerItem* | |
982 | wxSizer::Prepend( wxWindow *window, const wxSizerFlags& flags ) | |
983 | { | |
984 | return Prepend( new wxSizerItem(window, flags) ); | |
985 | } | |
986 | ||
987 | inline wxSizerItem* | |
988 | wxSizer::Prepend( wxSizer *sizer, const wxSizerFlags& flags ) | |
989 | { | |
990 | return Prepend( new wxSizerItem(sizer, flags) ); | |
991 | } | |
992 | ||
993 | inline wxSizerItem* | |
994 | wxSizer::Insert( size_t index, | |
995 | wxWindow *window, | |
996 | int proportion, | |
997 | int flag, | |
998 | int border, | |
999 | wxObject* userData ) | |
1000 | { | |
1001 | return Insert( index, new wxSizerItem( window, proportion, flag, border, userData ) ); | |
1002 | } | |
1003 | ||
1004 | inline wxSizerItem* | |
1005 | wxSizer::Insert( size_t index, | |
1006 | wxSizer *sizer, | |
1007 | int proportion, | |
1008 | int flag, | |
1009 | int border, | |
1010 | wxObject* userData ) | |
1011 | { | |
1012 | return Insert( index, new wxSizerItem( sizer, proportion, flag, border, userData ) ); | |
1013 | } | |
1014 | ||
1015 | inline wxSizerItem* | |
1016 | wxSizer::Insert( size_t index, | |
1017 | int width, | |
1018 | int height, | |
1019 | int proportion, | |
1020 | int flag, | |
1021 | int border, | |
1022 | wxObject* userData ) | |
1023 | { | |
1024 | return Insert( index, new wxSizerItem( width, height, proportion, flag, border, userData ) ); | |
1025 | } | |
1026 | ||
1027 | inline wxSizerItem* | |
1028 | wxSizer::Insert( size_t index, wxWindow *window, const wxSizerFlags& flags ) | |
1029 | { | |
1030 | return Insert( index, new wxSizerItem(window, flags) ); | |
1031 | } | |
1032 | ||
1033 | inline wxSizerItem* | |
1034 | wxSizer::Insert( size_t index, wxSizer *sizer, const wxSizerFlags& flags ) | |
1035 | { | |
1036 | return Insert( index, new wxSizerItem(sizer, flags) ); | |
1037 | } | |
1038 | ||
1039 | inline wxSizerItem* | |
1040 | wxSizer::InsertSpacer(size_t index, int size) | |
1041 | { | |
1042 | return Insert(index, size, size); | |
1043 | } | |
1044 | ||
1045 | inline wxSizerItem* | |
1046 | wxSizer::InsertStretchSpacer(size_t index, int prop) | |
1047 | { | |
1048 | return Insert(index, 0, 0, prop); | |
1049 | } | |
1050 | ||
1051 | ||
1052 | #endif // __WXSIZER_H__ |