wxAUI's wxFrameManager::SetFrame() now takes a wxWindow ptr instead of a wxFrame...
[wxWidgets.git] / include / wx / aui / framemanager.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/aui/framemanager.h
3 // Purpose: wxaui: wx advanced user interface - docking window manager
4 // Author: Benjamin I. Williams
5 // Modified by:
6 // Created: 2005-05-17
7 // RCS-ID: $Id$
8 // Copyright: (C) Copyright 2005, Kirix Corporation, All Rights Reserved.
9 // Licence: wxWindows Library Licence, Version 3.1
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_FRAMEMANAGER_H_
13 #define _WX_FRAMEMANAGER_H_
14
15 // ----------------------------------------------------------------------------
16 // headers
17 // ----------------------------------------------------------------------------
18
19 #include "wx/defs.h"
20
21 #if wxUSE_AUI
22
23 #include "wx/dynarray.h"
24 #include "wx/gdicmn.h"
25 #include "wx/window.h"
26 #include "wx/timer.h"
27 #include "wx/sizer.h"
28
29 enum wxFrameManagerDock
30 {
31 wxAUI_DOCK_NONE = 0,
32 wxAUI_DOCK_TOP = 1,
33 wxAUI_DOCK_RIGHT = 2,
34 wxAUI_DOCK_BOTTOM = 3,
35 wxAUI_DOCK_LEFT = 4,
36 wxAUI_DOCK_CENTER = 5,
37 wxAUI_DOCK_CENTRE = wxAUI_DOCK_CENTER
38 };
39
40 enum wxFrameManagerOption
41 {
42 wxAUI_MGR_ALLOW_FLOATING = 1 << 0,
43 wxAUI_MGR_ALLOW_ACTIVE_PANE = 1 << 1,
44 wxAUI_MGR_TRANSPARENT_DRAG = 1 << 2,
45 wxAUI_MGR_TRANSPARENT_HINT = 1 << 3,
46 wxAUI_MGR_TRANSPARENT_HINT_FADE = 1 << 4,
47
48 wxAUI_MGR_DEFAULT = wxAUI_MGR_ALLOW_FLOATING |
49 wxAUI_MGR_TRANSPARENT_HINT |
50 wxAUI_MGR_TRANSPARENT_HINT_FADE
51 };
52
53 enum wxPaneDockArtSetting
54 {
55 wxAUI_ART_SASH_SIZE = 0,
56 wxAUI_ART_CAPTION_SIZE = 1,
57 wxAUI_ART_GRIPPER_SIZE = 2,
58 wxAUI_ART_PANE_BORDER_SIZE = 3,
59 wxAUI_ART_PANE_BUTTON_SIZE = 4,
60 wxAUI_ART_BACKGROUND_COLOUR = 5,
61 wxAUI_ART_SASH_COLOUR = 6,
62 wxAUI_ART_ACTIVE_CAPTION_COLOUR = 7,
63 wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR = 8,
64 wxAUI_ART_INACTIVE_CAPTION_COLOUR = 9,
65 wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR = 10,
66 wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR = 11,
67 wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR = 12,
68 wxAUI_ART_BORDER_COLOUR = 13,
69 wxAUI_ART_GRIPPER_COLOUR = 14,
70 wxAUI_ART_CAPTION_FONT = 15,
71 wxAUI_ART_GRADIENT_TYPE = 16
72 };
73
74 enum wxPaneDockArtGradients
75 {
76 wxAUI_GRADIENT_NONE = 0,
77 wxAUI_GRADIENT_VERTICAL = 1,
78 wxAUI_GRADIENT_HORIZONTAL = 2
79 };
80
81 enum wxPaneButtonState
82 {
83 wxAUI_BUTTON_STATE_NORMAL = 0,
84 wxAUI_BUTTON_STATE_HOVER = 1,
85 wxAUI_BUTTON_STATE_PRESSED = 2
86 };
87
88 enum wxPaneInsertLevel
89 {
90 wxAUI_INSERT_PANE = 0,
91 wxAUI_INSERT_ROW = 1,
92 wxAUI_INSERT_DOCK = 2
93 };
94
95
96
97 // forwards and array declarations
98 class wxDockUIPart;
99 class wxPaneButton;
100 class wxPaneInfo;
101 class wxDockInfo;
102 class wxDockArt;
103 class wxFrameManagerEvent;
104
105 #ifndef SWIG
106 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxDockInfo, wxDockInfoArray, WXDLLIMPEXP_AUI);
107 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxDockUIPart, wxDockUIPartArray, WXDLLIMPEXP_AUI);
108 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxPaneButton, wxPaneButtonArray, WXDLLIMPEXP_AUI);
109 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxPaneInfo, wxPaneInfoArray, WXDLLIMPEXP_AUI);
110 WX_DEFINE_ARRAY_PTR(wxPaneInfo*, wxPaneInfoPtrArray);
111 WX_DEFINE_ARRAY_PTR(wxDockInfo*, wxDockInfoPtrArray);
112 #endif // SWIG
113
114 extern WXDLLIMPEXP_AUI wxDockInfo wxNullDockInfo;
115 extern WXDLLIMPEXP_AUI wxPaneInfo wxNullPaneInfo;
116
117
118
119 class WXDLLIMPEXP_AUI wxPaneInfo
120 {
121 public:
122
123 wxPaneInfo()
124 {
125 window = NULL;
126 frame = NULL;
127 state = 0;
128 dock_direction = wxAUI_DOCK_LEFT;
129 dock_layer = 0;
130 dock_row = 0;
131 dock_pos = 0;
132 floating_pos = wxDefaultPosition;
133 floating_size = wxDefaultSize;
134 best_size = wxDefaultSize;
135 min_size = wxDefaultSize;
136 max_size = wxDefaultSize;
137 dock_proportion = 0;
138
139 DefaultPane();
140 }
141
142 ~wxPaneInfo() {}
143
144 #ifndef SWIG
145 wxPaneInfo(const wxPaneInfo& c)
146 {
147 name = c.name;
148 caption = c.caption;
149 window = c.window;
150 frame = c.frame;
151 state = c.state;
152 dock_direction = c.dock_direction;
153 dock_layer = c.dock_layer;
154 dock_row = c.dock_row;
155 dock_pos = c.dock_pos;
156 best_size = c.best_size;
157 min_size = c.min_size;
158 max_size = c.max_size;
159 floating_pos = c.floating_pos;
160 floating_size = c.floating_size;
161 dock_proportion = c.dock_proportion;
162 buttons = c.buttons;
163 rect = c.rect;
164 }
165
166 wxPaneInfo& operator=(const wxPaneInfo& c)
167 {
168 name = c.name;
169 caption = c.caption;
170 window = c.window;
171 frame = c.frame;
172 state = c.state;
173 dock_direction = c.dock_direction;
174 dock_layer = c.dock_layer;
175 dock_row = c.dock_row;
176 dock_pos = c.dock_pos;
177 best_size = c.best_size;
178 min_size = c.min_size;
179 max_size = c.max_size;
180 floating_pos = c.floating_pos;
181 floating_size = c.floating_size;
182 dock_proportion = c.dock_proportion;
183 buttons = c.buttons;
184 rect = c.rect;
185 return *this;
186 }
187 #endif // SWIG
188
189 bool IsOk() const { return (window != NULL) ? true : false; }
190 bool IsFixed() const { return !HasFlag(optionResizable); }
191 bool IsResizable() const { return HasFlag(optionResizable); }
192 bool IsShown() const { return !HasFlag(optionHidden); }
193 bool IsFloating() const { return HasFlag(optionFloating); }
194 bool IsDocked() const { return !HasFlag(optionFloating); }
195 bool IsToolbar() const { return HasFlag(optionToolbar); }
196 bool IsTopDockable() const { return HasFlag(optionTopDockable); }
197 bool IsBottomDockable() const { return HasFlag(optionBottomDockable); }
198 bool IsLeftDockable() const { return HasFlag(optionLeftDockable); }
199 bool IsRightDockable() const { return HasFlag(optionRightDockable); }
200 bool IsFloatable() const { return HasFlag(optionFloatable); }
201 bool IsMovable() const { return HasFlag(optionMovable); }
202 bool HasCaption() const { return HasFlag(optionCaption); }
203 bool HasGripper() const { return HasFlag(optionGripper); }
204 bool HasBorder() const { return HasFlag(optionPaneBorder); }
205 bool HasCloseButton() const { return HasFlag(buttonClose); }
206 bool HasMaximizeButton() const { return HasFlag(buttonMaximize); }
207 bool HasMinimizeButton() const { return HasFlag(buttonMinimize); }
208 bool HasPinButton() const { return HasFlag(buttonPin); }
209 bool HasGripperTop() const { return HasFlag(optionGripperTop); }
210
211 #ifdef SWIG
212 %typemap(out) wxPaneInfo& { $result = $self; Py_INCREF($result); }
213 #endif
214 wxPaneInfo& Window(wxWindow* w) { window = w; return *this; }
215 wxPaneInfo& Name(const wxString& n) { name = n; return *this; }
216 wxPaneInfo& Caption(const wxString& c) { caption = c; return *this; }
217 wxPaneInfo& Left() { dock_direction = wxAUI_DOCK_LEFT; return *this; }
218 wxPaneInfo& Right() { dock_direction = wxAUI_DOCK_RIGHT; return *this; }
219 wxPaneInfo& Top() { dock_direction = wxAUI_DOCK_TOP; return *this; }
220 wxPaneInfo& Bottom() { dock_direction = wxAUI_DOCK_BOTTOM; return *this; }
221 wxPaneInfo& Center() { dock_direction = wxAUI_DOCK_CENTER; return *this; }
222 wxPaneInfo& Centre() { dock_direction = wxAUI_DOCK_CENTRE; return *this; }
223 wxPaneInfo& Direction(int direction) { dock_direction = direction; return *this; }
224 wxPaneInfo& Layer(int layer) { dock_layer = layer; return *this; }
225 wxPaneInfo& Row(int row) { dock_row = row; return *this; }
226 wxPaneInfo& Position(int pos) { dock_pos = pos; return *this; }
227 wxPaneInfo& BestSize(const wxSize& size) { best_size = size; return *this; }
228 wxPaneInfo& MinSize(const wxSize& size) { min_size = size; return *this; }
229 wxPaneInfo& MaxSize(const wxSize& size) { max_size = size; return *this; }
230 wxPaneInfo& BestSize(int x, int y) { best_size.Set(x,y); return *this; }
231 wxPaneInfo& MinSize(int x, int y) { min_size.Set(x,y); return *this; }
232 wxPaneInfo& MaxSize(int x, int y) { max_size.Set(x,y); return *this; }
233 wxPaneInfo& FloatingPosition(const wxPoint& pos) { floating_pos = pos; return *this; }
234 wxPaneInfo& FloatingPosition(int x, int y) { floating_pos.x = x; floating_pos.y = y; return *this; }
235 wxPaneInfo& FloatingSize(const wxSize& size) { floating_size = size; return *this; }
236 wxPaneInfo& FloatingSize(int x, int y) { floating_size.Set(x,y); return *this; }
237 wxPaneInfo& Fixed() { return SetFlag(optionResizable, false); }
238 wxPaneInfo& Resizable(bool resizable = true) { return SetFlag(optionResizable, resizable); }
239 wxPaneInfo& Dock() { return SetFlag(optionFloating, false); }
240 wxPaneInfo& Float() { return SetFlag(optionFloating, true); }
241 wxPaneInfo& Hide() { return SetFlag(optionHidden, true); }
242 wxPaneInfo& Show(bool show = true) { return SetFlag(optionHidden, !show); }
243 wxPaneInfo& CaptionVisible(bool visible = true) { return SetFlag(optionCaption, visible); }
244 wxPaneInfo& PaneBorder(bool visible = true) { return SetFlag(optionPaneBorder, visible); }
245 wxPaneInfo& Gripper(bool visible = true) { return SetFlag(optionGripper, visible); }
246 wxPaneInfo& GripperTop(bool attop = true) { return SetFlag(optionGripperTop, attop); }
247 wxPaneInfo& CloseButton(bool visible = true) { return SetFlag(buttonClose, visible); }
248 wxPaneInfo& MaximizeButton(bool visible = true) { return SetFlag(buttonMaximize, visible); }
249 wxPaneInfo& MinimizeButton(bool visible = true) { return SetFlag(buttonMinimize, visible); }
250 wxPaneInfo& PinButton(bool visible = true) { return SetFlag(buttonPin, visible); }
251 wxPaneInfo& DestroyOnClose(bool b = true) { return SetFlag(optionDestroyOnClose, b); }
252 wxPaneInfo& TopDockable(bool b = true) { return SetFlag(optionTopDockable, b); }
253 wxPaneInfo& BottomDockable(bool b = true) { return SetFlag(optionBottomDockable, b); }
254 wxPaneInfo& LeftDockable(bool b = true) { return SetFlag(optionLeftDockable, b); }
255 wxPaneInfo& RightDockable(bool b = true) { return SetFlag(optionRightDockable, b); }
256 wxPaneInfo& Floatable(bool b = true) { return SetFlag(optionFloatable, b); }
257 wxPaneInfo& Movable(bool b = true) { return SetFlag(optionMovable, b); }
258 wxPaneInfo& Dockable(bool b = true)
259 {
260 return TopDockable(b).BottomDockable(b).LeftDockable(b).RightDockable(b);
261 }
262
263 wxPaneInfo& DefaultPane()
264 {
265 state |= optionTopDockable | optionBottomDockable |
266 optionLeftDockable | optionRightDockable |
267 optionFloatable | optionMovable | optionResizable |
268 optionCaption | optionPaneBorder | buttonClose;
269 return *this;
270 }
271
272 wxPaneInfo& CentrePane() { return CenterPane(); }
273 wxPaneInfo& CenterPane()
274 {
275 state = 0;
276 return Center().PaneBorder().Resizable();
277 }
278
279 wxPaneInfo& ToolbarPane()
280 {
281 DefaultPane();
282 state |= (optionToolbar | optionGripper);
283 state &= ~(optionResizable | optionCaption);
284 if (dock_layer == 0)
285 dock_layer = 10;
286 return *this;
287 }
288
289 wxPaneInfo& SetFlag(unsigned int flag, bool option_state)
290 {
291 if (option_state)
292 state |= flag;
293 else
294 state &= ~flag;
295 return *this;
296 }
297
298 bool HasFlag(unsigned int flag) const
299 {
300 return (state & flag) ? true:false;
301 }
302
303 #ifdef SWIG
304 %typemap(out) wxPaneInfo& ;
305 #endif
306
307 public:
308
309 enum wxPaneState
310 {
311 optionFloating = 1 << 0,
312 optionHidden = 1 << 1,
313 optionLeftDockable = 1 << 2,
314 optionRightDockable = 1 << 3,
315 optionTopDockable = 1 << 4,
316 optionBottomDockable = 1 << 5,
317 optionFloatable = 1 << 6,
318 optionMovable = 1 << 7,
319 optionResizable = 1 << 8,
320 optionPaneBorder = 1 << 9,
321 optionCaption = 1 << 10,
322 optionGripper = 1 << 11,
323 optionDestroyOnClose = 1 << 12,
324 optionToolbar = 1 << 13,
325 optionActive = 1 << 14,
326 optionGripperTop = 1 << 15,
327
328 buttonClose = 1 << 24,
329 buttonMaximize = 1 << 25,
330 buttonMinimize = 1 << 26,
331 buttonPin = 1 << 27,
332 buttonCustom1 = 1 << 28,
333 buttonCustom2 = 1 << 29,
334 buttonCustom3 = 1 << 30,
335 actionPane = 1 << 31 // used internally
336 };
337
338 public:
339 wxString name; // name of the pane
340 wxString caption; // caption displayed on the window
341
342 wxWindow* window; // window that is in this pane
343 wxWindow* frame; // floating frame window that holds the pane
344 unsigned int state; // a combination of wxPaneState values
345
346 int dock_direction; // dock direction (top, bottom, left, right, center)
347 int dock_layer; // layer number (0 = innermost layer)
348 int dock_row; // row number on the docking bar (0 = first row)
349 int dock_pos; // position inside the row (0 = first position)
350
351 wxSize best_size; // size that the layout engine will prefer
352 wxSize min_size; // minimum size the pane window can tolerate
353 wxSize max_size; // maximum size the pane window can tolerate
354
355 wxPoint floating_pos; // position while floating
356 wxSize floating_size; // size while floating
357 int dock_proportion; // proportion while docked
358
359 wxPaneButtonArray buttons; // buttons on the pane
360
361 wxRect rect; // current rectangle (populated by wxAUI)
362 };
363
364
365
366
367
368 class WXDLLIMPEXP_AUI wxFrameManager : public wxEvtHandler
369 {
370 friend class wxFloatingPane;
371
372 public:
373
374 wxFrameManager(wxFrame* frame = NULL,
375 unsigned int flags = wxAUI_MGR_DEFAULT);
376 virtual ~wxFrameManager();
377 void UnInit();
378
379 void SetFlags(unsigned int flags);
380 unsigned int GetFlags() const;
381
382 void SetFrame(wxWindow* frame);
383 wxWindow* GetFrame() const;
384
385 #ifdef SWIG
386 %disownarg( wxDockArt* art_provider );
387 #endif
388 void SetArtProvider(wxDockArt* art_provider);
389 wxDockArt* GetArtProvider() const;
390
391 wxPaneInfo& GetPane(wxWindow* window);
392 wxPaneInfo& GetPane(const wxString& name);
393 wxPaneInfoArray& GetAllPanes();
394
395 bool AddPane(wxWindow* window,
396 const wxPaneInfo& pane_info);
397
398 bool AddPane(wxWindow* window,
399 int direction = wxLEFT,
400 const wxString& caption = wxEmptyString);
401
402 bool InsertPane(wxWindow* window,
403 const wxPaneInfo& insert_location,
404 int insert_level = wxAUI_INSERT_PANE);
405
406 bool DetachPane(wxWindow* window);
407
408 wxString SavePerspective();
409
410 bool LoadPerspective(const wxString& perspective,
411 bool update = true);
412
413 void Update();
414
415 protected:
416
417 void DrawHintRect(wxWindow* pane_window,
418 const wxPoint& pt,
419 const wxPoint& offset);
420
421 void DoFrameLayout();
422
423 void LayoutAddPane(wxSizer* container,
424 wxDockInfo& dock,
425 wxPaneInfo& pane,
426 wxDockUIPartArray& uiparts,
427 bool spacer_only);
428
429 void LayoutAddDock(wxSizer* container,
430 wxDockInfo& dock,
431 wxDockUIPartArray& uiparts,
432 bool spacer_only);
433
434 wxSizer* LayoutAll(wxPaneInfoArray& panes,
435 wxDockInfoArray& docks,
436 wxDockUIPartArray& uiparts,
437 bool spacer_only = false);
438
439 bool DoDrop(wxDockInfoArray& docks,
440 wxPaneInfoArray& panes,
441 wxPaneInfo& drop,
442 const wxPoint& pt,
443 const wxPoint& action_offset = wxPoint(0,0));
444
445 wxPaneInfo& LookupPane(wxWindow* window);
446 wxPaneInfo& LookupPane(const wxString& name);
447 wxDockUIPart* HitTest(int x, int y);
448 wxDockUIPart* GetPanePart(wxWindow* pane);
449 int GetDockPixelOffset(wxPaneInfo& test);
450 void OnFloatingPaneMoveStart(wxWindow* window);
451 void OnFloatingPaneMoving(wxWindow* window);
452 void OnFloatingPaneMoved(wxWindow* window);
453 void OnFloatingPaneActivated(wxWindow* window);
454 void OnFloatingPaneClosed(wxWindow* window, wxCloseEvent& evt);
455 void OnFloatingPaneResized(wxWindow* window, const wxSize& size);
456 void Render(wxDC* dc);
457 void Repaint(wxDC* dc = NULL);
458 void ProcessMgrEvent(wxFrameManagerEvent& event);
459 void UpdateButtonOnScreen(wxDockUIPart* button_ui_part,
460 const wxMouseEvent& event);
461 void GetPanePositionsAndSizes(wxDockInfo& dock,
462 wxArrayInt& positions,
463 wxArrayInt& sizes);
464 virtual void ShowHint(const wxRect& rect);
465 virtual void HideHint();
466
467 protected:
468
469 // events
470 void OnPaint(wxPaintEvent& event);
471 void OnEraseBackground(wxEraseEvent& event);
472 void OnSize(wxSizeEvent& event);
473 void OnSetCursor(wxSetCursorEvent& event);
474 void OnLeftDown(wxMouseEvent& event);
475 void OnLeftUp(wxMouseEvent& event);
476 void OnMotion(wxMouseEvent& event);
477 void OnLeaveWindow(wxMouseEvent& event);
478 void OnPaneButton(wxFrameManagerEvent& event);
479 void OnChildFocus(wxChildFocusEvent& event);
480 void OnHintFadeTimer(wxTimerEvent& event);
481
482 protected:
483
484 enum
485 {
486 actionNone = 0,
487 actionResize,
488 actionClickButton,
489 actionClickCaption,
490 actionDragToolbarPane,
491 actionDragFloatingPane
492 };
493
494 protected:
495
496 wxWindow* m_frame; // the window being managed
497 wxDockArt* m_art; // dock art object which does all drawing
498 unsigned int m_flags; // manager flags wxAUI_MGR_*
499
500 wxPaneInfoArray m_panes; // array of panes structures
501 wxDockInfoArray m_docks; // array of docks structures
502 wxDockUIPartArray m_uiparts; // array of UI parts (captions, buttons, etc)
503
504 int m_action; // current mouse action
505 wxPoint m_action_start; // position where the action click started
506 wxPoint m_action_offset; // offset from upper left of the item clicked
507 wxDockUIPart* m_action_part; // ptr to the part the action happened to
508 wxWindow* m_action_window; // action frame or window (NULL if none)
509 wxRect m_action_hintrect; // hint rectangle for the action
510 wxDockUIPart* m_hover_button;// button uipart being hovered over
511 wxRect m_last_hint; // last hint rectangle
512 wxPoint m_last_mouse_move; // last mouse move position (see OnMotion)
513
514 wxWindow* m_hint_wnd; // transparent hint window (for now, only msw)
515 wxTimer m_hint_fadetimer; // transparent fade timer (for now, only msw)
516 int m_hint_fadeamt; // transparent fade amount (for now, only msw)
517
518 #ifndef SWIG
519 DECLARE_EVENT_TABLE()
520 #endif // SWIG
521 };
522
523
524
525 // event declarations/classes
526
527 class WXDLLIMPEXP_AUI wxFrameManagerEvent : public wxEvent
528 {
529 public:
530 wxFrameManagerEvent(wxEventType type=wxEVT_NULL) : wxEvent(0, type)
531 {
532 pane = NULL;
533 button = 0;
534 veto_flag = false;
535 canveto_flag = true;
536 }
537 #ifndef SWIG
538 wxFrameManagerEvent(const wxFrameManagerEvent& c) : wxEvent(c)
539 {
540 pane = c.pane;
541 button = c.button;
542 veto_flag = c.veto_flag;
543 canveto_flag = c.canveto_flag;
544 }
545 #endif
546 wxEvent *Clone() const { return new wxFrameManagerEvent(*this); }
547
548 void SetPane(wxPaneInfo* p) { pane = p; }
549 void SetButton(int b) { button = b; }
550 wxPaneInfo* GetPane() { return pane; }
551 int GetButton() { return button; }
552
553 void Veto(bool veto = true) { veto_flag = veto; }
554 bool GetVeto() const { return veto_flag; }
555 void SetCanVeto(bool can_veto) { canveto_flag = can_veto; }
556 bool CanVeto() const { return canveto_flag && veto_flag; }
557
558 public:
559 wxPaneInfo* pane;
560 int button;
561 bool veto_flag;
562 bool canveto_flag;
563
564 #ifndef SWIG
565 private:
566 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFrameManagerEvent)
567 #endif
568 };
569
570
571 class WXDLLIMPEXP_AUI wxDockInfo
572 {
573 public:
574 wxDockInfo()
575 {
576 dock_direction = 0;
577 dock_layer = 0;
578 dock_row = 0;
579 size = 0;
580 min_size = 0;
581 resizable = true;
582 fixed = false;
583 toolbar = false;
584 }
585
586 #ifndef SWIG
587 wxDockInfo(const wxDockInfo& c)
588 {
589 dock_direction = c.dock_direction;
590 dock_layer = c.dock_layer;
591 dock_row = c.dock_row;
592 size = c.size;
593 min_size = c.min_size;
594 resizable = c.resizable;
595 fixed = c.fixed;
596 toolbar = c.toolbar;
597 panes = c.panes;
598 rect = c.rect;
599 }
600
601 wxDockInfo& operator=(const wxDockInfo& c)
602 {
603 dock_direction = c.dock_direction;
604 dock_layer = c.dock_layer;
605 dock_row = c.dock_row;
606 size = c.size;
607 min_size = c.min_size;
608 resizable = c.resizable;
609 fixed = c.fixed;
610 toolbar = c.toolbar;
611 panes = c.panes;
612 rect = c.rect;
613 return *this;
614 }
615 #endif // SWIG
616
617 bool IsOk() const { return (dock_direction != 0) ? true : false; }
618 bool IsHorizontal() const { return (dock_direction == wxAUI_DOCK_TOP ||
619 dock_direction == wxAUI_DOCK_BOTTOM) ? true:false; }
620 bool IsVertical() const { return (dock_direction == wxAUI_DOCK_LEFT ||
621 dock_direction == wxAUI_DOCK_RIGHT ||
622 dock_direction == wxAUI_DOCK_CENTER) ? true:false; }
623 public:
624 wxPaneInfoPtrArray panes; // array of panes
625 wxRect rect; // current rectangle
626 int dock_direction; // dock direction (top, bottom, left, right, center)
627 int dock_layer; // layer number (0 = innermost layer)
628 int dock_row; // row number on the docking bar (0 = first row)
629 int size; // size of the dock
630 int min_size; // minimum size of a dock (0 if there is no min)
631 bool resizable; // flag indicating whether the dock is resizable
632 bool toolbar; // flag indicating dock contains only toolbars
633 bool fixed; // flag indicating that the dock operates on
634 // absolute coordinates as opposed to proportional
635 };
636
637
638 class WXDLLIMPEXP_AUI wxDockUIPart
639 {
640 public:
641 enum
642 {
643 typeCaption,
644 typeGripper,
645 typeDock,
646 typeDockSizer,
647 typePane,
648 typePaneSizer,
649 typeBackground,
650 typePaneBorder,
651 typePaneButton
652 };
653
654 int type; // ui part type (see enum above)
655 int orientation; // orientation (either wxHORIZONTAL or wxVERTICAL)
656 wxDockInfo* dock; // which dock the item is associated with
657 wxPaneInfo* pane; // which pane the item is associated with
658 wxPaneButton* button; // which pane button the item is associated with
659 wxSizer* cont_sizer; // the part's containing sizer
660 wxSizerItem* sizer_item; // the sizer item of the part
661 wxRect rect; // client coord rectangle of the part itself
662 };
663
664
665 class WXDLLIMPEXP_AUI wxPaneButton
666 {
667 public:
668 int button_id; // id of the button (e.g. buttonClose)
669 };
670
671
672
673 #ifndef SWIG
674 // wx event machinery
675
676 BEGIN_DECLARE_EVENT_TYPES()
677 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_AUI_PANEBUTTON, 0)
678 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_AUI_PANECLOSE, 0)
679 END_DECLARE_EVENT_TYPES()
680
681 typedef void (wxEvtHandler::*wxFrameManagerEventFunction)(wxFrameManagerEvent&);
682
683 #define wxFrameManagerEventHandler(func) \
684 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxFrameManagerEventFunction, &func)
685
686 #define EVT_AUI_PANEBUTTON(func) \
687 wx__DECLARE_EVT0(wxEVT_AUI_PANEBUTTON, wxFrameManagerEventHandler(func))
688 #define EVT_AUI_PANECLOSE(func) \
689 wx__DECLARE_EVT0(wxEVT_AUI_PANECLOSE, wxFrameManagerEventHandler(func))
690
691 #else
692
693 %constant wxEventType wxEVT_AUI_PANEBUTTON;
694 %constant wxEventType wxEVT_AUI_PANECLOSE;
695
696 %pythoncode {
697 EVT_AUI_PANEBUTTON = wx.PyEventBinder( wxEVT_AUI_PANEBUTTON )
698 EVT_AUI_PANECLOSE = wx.PyEventBinder( wxEVT_AUI_PANECLOSE )
699 }
700 #endif // SWIG
701
702 #endif // wxUSE_AUI
703 #endif //_WX_FRAMEMANAGER_H_
704