Changes needed for scanning the aui header files with SWIG for
[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(wxFrame* frame);
383 wxFrame* GetFrame() const;
384
385 void SetArtProvider(wxDockArt* art_provider);
386 wxDockArt* GetArtProvider() const;
387
388 wxPaneInfo& GetPane(wxWindow* window);
389 wxPaneInfo& GetPane(const wxString& name);
390 wxPaneInfoArray& GetAllPanes();
391
392 bool AddPane(wxWindow* window,
393 const wxPaneInfo& pane_info);
394
395 bool AddPane(wxWindow* window,
396 int direction = wxLEFT,
397 const wxString& caption = wxEmptyString);
398
399 bool InsertPane(wxWindow* window,
400 const wxPaneInfo& pane_info,
401 int insert_level = wxAUI_INSERT_PANE);
402
403 bool DetachPane(wxWindow* window);
404
405 wxString SavePerspective();
406
407 bool LoadPerspective(const wxString& perspective,
408 bool update = true);
409
410 void Update();
411
412 protected:
413
414 void DrawHintRect(wxWindow* pane_window,
415 const wxPoint& pt,
416 const wxPoint& offset);
417
418 void DoFrameLayout();
419
420 void LayoutAddPane(wxSizer* container,
421 wxDockInfo& dock,
422 wxPaneInfo& pane,
423 wxDockUIPartArray& uiparts,
424 bool spacer_only);
425
426 void LayoutAddDock(wxSizer* container,
427 wxDockInfo& dock,
428 wxDockUIPartArray& uiparts,
429 bool spacer_only);
430
431 wxSizer* LayoutAll(wxPaneInfoArray& panes,
432 wxDockInfoArray& docks,
433 wxDockUIPartArray& uiparts,
434 bool spacer_only = false);
435
436 bool DoDrop(wxDockInfoArray& docks,
437 wxPaneInfoArray& panes,
438 wxPaneInfo& drop,
439 const wxPoint& pt,
440 const wxPoint& action_offset = wxPoint(0,0));
441
442 wxPaneInfo& LookupPane(wxWindow* window);
443 wxPaneInfo& LookupPane(const wxString& name);
444 wxDockUIPart* HitTest(int x, int y);
445 wxDockUIPart* GetPanePart(wxWindow* pane);
446 int GetDockPixelOffset(wxPaneInfo& test);
447 void OnFloatingPaneMoveStart(wxWindow* window);
448 void OnFloatingPaneMoving(wxWindow* window);
449 void OnFloatingPaneMoved(wxWindow* window);
450 void OnFloatingPaneActivated(wxWindow* window);
451 void OnFloatingPaneClosed(wxWindow* window, wxCloseEvent& evt);
452 void OnFloatingPaneResized(wxWindow* window, const wxSize& size);
453 void Render(wxDC* dc);
454 void Repaint(wxDC* dc = NULL);
455 void ProcessMgrEvent(wxFrameManagerEvent& event);
456 void UpdateButtonOnScreen(wxDockUIPart* button_ui_part,
457 const wxMouseEvent& event);
458 void GetPanePositionsAndSizes(wxDockInfo& dock,
459 wxArrayInt& positions,
460 wxArrayInt& sizes);
461 virtual void ShowHint(const wxRect& rect);
462 virtual void HideHint();
463
464 protected:
465
466 // events
467 void OnPaint(wxPaintEvent& event);
468 void OnEraseBackground(wxEraseEvent& event);
469 void OnSize(wxSizeEvent& event);
470 void OnSetCursor(wxSetCursorEvent& event);
471 void OnLeftDown(wxMouseEvent& event);
472 void OnLeftUp(wxMouseEvent& event);
473 void OnMotion(wxMouseEvent& event);
474 void OnLeaveWindow(wxMouseEvent& event);
475 void OnPaneButton(wxFrameManagerEvent& event);
476 void OnChildFocus(wxChildFocusEvent& event);
477 void OnHintFadeTimer(wxTimerEvent& event);
478
479 protected:
480
481 enum
482 {
483 actionNone = 0,
484 actionResize,
485 actionClickButton,
486 actionClickCaption,
487 actionDragToolbarPane,
488 actionDragFloatingPane
489 };
490
491 protected:
492
493 wxFrame* m_frame; // the frame being managed
494 wxDockArt* m_art; // dock art object which does all drawing
495 unsigned int m_flags; // manager flags wxAUI_MGR_*
496
497 wxPaneInfoArray m_panes; // array of panes structures
498 wxDockInfoArray m_docks; // array of docks structures
499 wxDockUIPartArray m_uiparts; // array of UI parts (captions, buttons, etc)
500
501 int m_action; // current mouse action
502 wxPoint m_action_start; // position where the action click started
503 wxPoint m_action_offset; // offset from upper left of the item clicked
504 wxDockUIPart* m_action_part; // ptr to the part the action happened to
505 wxWindow* m_action_window; // action frame or window (NULL if none)
506 wxRect m_action_hintrect; // hint rectangle for the action
507 wxDockUIPart* m_hover_button;// button uipart being hovered over
508 wxRect m_last_hint; // last hint rectangle
509 wxPoint m_last_mouse_move; // last mouse move position (see OnMotion)
510
511 wxWindow* m_hint_wnd; // transparent hint window (for now, only msw)
512 wxTimer m_hint_fadetimer; // transparent fade timer (for now, only msw)
513 int m_hint_fadeamt; // transparent fade amount (for now, only msw)
514
515 #ifndef SWIG
516 DECLARE_EVENT_TABLE()
517 #endif // SWIG
518 };
519
520
521
522 // event declarations/classes
523
524 class WXDLLIMPEXP_AUI wxFrameManagerEvent : public wxEvent
525 {
526 public:
527 wxFrameManagerEvent(wxEventType type) : wxEvent(0, type)
528 {
529 pane = NULL;
530 button = 0;
531 veto_flag = false;
532 canveto_flag = true;
533 }
534 #ifndef SWIG
535 wxFrameManagerEvent(const wxFrameManagerEvent& c) : wxEvent(c)
536 {
537 pane = c.pane;
538 button = c.button;
539 veto_flag = c.veto_flag;
540 canveto_flag = c.canveto_flag;
541 }
542 #endif
543 wxEvent *Clone() const { return new wxFrameManagerEvent(*this); }
544
545 void SetPane(wxPaneInfo* p) { pane = p; }
546 void SetButton(int b) { button = b; }
547 wxPaneInfo* GetPane() { return pane; }
548 int GetButton() { return button; }
549
550 void Veto(bool veto = true) { veto_flag = veto; }
551 bool GetVeto() const { return veto_flag; }
552 void SetCanVeto(bool can_veto) { canveto_flag = can_veto; }
553 bool CanVeto() const { return canveto_flag && veto_flag; }
554
555 public:
556 wxPaneInfo* pane;
557 int button;
558 bool veto_flag;
559 bool canveto_flag;
560 };
561
562
563 class WXDLLIMPEXP_AUI wxDockInfo
564 {
565 public:
566 wxDockInfo()
567 {
568 dock_direction = 0;
569 dock_layer = 0;
570 dock_row = 0;
571 size = 0;
572 min_size = 0;
573 resizable = true;
574 fixed = false;
575 toolbar = false;
576 }
577
578 #ifndef SWIG
579 wxDockInfo(const wxDockInfo& c)
580 {
581 dock_direction = c.dock_direction;
582 dock_layer = c.dock_layer;
583 dock_row = c.dock_row;
584 size = c.size;
585 min_size = c.min_size;
586 resizable = c.resizable;
587 fixed = c.fixed;
588 toolbar = c.toolbar;
589 panes = c.panes;
590 rect = c.rect;
591 }
592
593 wxDockInfo& operator=(const wxDockInfo& c)
594 {
595 dock_direction = c.dock_direction;
596 dock_layer = c.dock_layer;
597 dock_row = c.dock_row;
598 size = c.size;
599 min_size = c.min_size;
600 resizable = c.resizable;
601 fixed = c.fixed;
602 toolbar = c.toolbar;
603 panes = c.panes;
604 rect = c.rect;
605 return *this;
606 }
607 #endif // SWIG
608
609 bool IsOk() const { return (dock_direction != 0) ? true : false; }
610 bool IsHorizontal() const { return (dock_direction == wxAUI_DOCK_TOP ||
611 dock_direction == wxAUI_DOCK_BOTTOM) ? true:false; }
612 bool IsVertical() const { return (dock_direction == wxAUI_DOCK_LEFT ||
613 dock_direction == wxAUI_DOCK_RIGHT ||
614 dock_direction == wxAUI_DOCK_CENTER) ? true:false; }
615 public:
616 wxPaneInfoPtrArray panes; // array of panes
617 wxRect rect; // current rectangle
618 int dock_direction; // dock direction (top, bottom, left, right, center)
619 int dock_layer; // layer number (0 = innermost layer)
620 int dock_row; // row number on the docking bar (0 = first row)
621 int size; // size of the dock
622 int min_size; // minimum size of a dock (0 if there is no min)
623 bool resizable; // flag indicating whether the dock is resizable
624 bool toolbar; // flag indicating dock contains only toolbars
625 bool fixed; // flag indicating that the dock operates on
626 // absolute coordinates as opposed to proportional
627 };
628
629
630 class WXDLLIMPEXP_AUI wxDockUIPart
631 {
632 public:
633 enum
634 {
635 typeCaption,
636 typeGripper,
637 typeDock,
638 typeDockSizer,
639 typePane,
640 typePaneSizer,
641 typeBackground,
642 typePaneBorder,
643 typePaneButton
644 };
645
646 int type; // ui part type (see enum above)
647 int orientation; // orientation (either wxHORIZONTAL or wxVERTICAL)
648 wxDockInfo* dock; // which dock the item is associated with
649 wxPaneInfo* pane; // which pane the item is associated with
650 wxPaneButton* button; // which pane button the item is associated with
651 wxSizer* cont_sizer; // the part's containing sizer
652 wxSizerItem* sizer_item; // the sizer item of the part
653 wxRect rect; // client coord rectangle of the part itself
654 };
655
656
657 class WXDLLIMPEXP_AUI wxPaneButton
658 {
659 public:
660 int button_id; // id of the button (e.g. buttonClose)
661 };
662
663
664
665 #ifndef SWIG
666 // wx event machinery
667
668 BEGIN_DECLARE_EVENT_TYPES()
669 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_AUI_PANEBUTTON, 0)
670 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_AUI_PANECLOSE, 0)
671 END_DECLARE_EVENT_TYPES()
672
673 typedef void (wxEvtHandler::*wxFrameManagerEventFunction)(wxFrameManagerEvent&);
674
675 #define wxFrameManagerEventHandler(func) \
676 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxFrameManagerEventFunction, &func)
677
678 #define EVT_AUI_PANEBUTTON(func) \
679 wx__DECLARE_EVT0(wxEVT_AUI_PANEBUTTON, wxFrameManagerEventHandler(func))
680 #define EVT_AUI_PANECLOSE(func) \
681 wx__DECLARE_EVT0(wxEVT_AUI_PANECLOSE, wxFrameManagerEventHandler(func))
682
683 #else
684
685 %constant wxEventType wxEVT_AUI_PANEBUTTON;
686 %constant wxEventType wxEVT_AUI_PANECLOSE;
687
688 %pythoncode {
689 EVT_AUI_PANEBUTTON = wx.PyEventBinder( wxEVT_AUI_PANEBUTTON )
690 EVT_AUI_PANECLOSE = wx.PyEventBinder( wxEVT_AUI_PANECLOSE )
691 }
692 #endif // SWIG
693
694 #endif // wxUSE_AUI
695 #endif //_WX_FRAMEMANAGER_H_
696