1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/aui/framemanager.h
3 // Purpose: wxaui: wx advanced user interface - docking window manager
4 // Author: Benjamin I. Williams
8 // Copyright: (C) Copyright 2005, Kirix Corporation, All Rights Reserved.
9 // Licence: wxWindows Library Licence, Version 3.1
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FRAMEMANAGER_H_
13 #define _WX_FRAMEMANAGER_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
23 #include "wx/dynarray.h"
24 #include "wx/gdicmn.h"
25 #include "wx/window.h"
34 wxAUI_DOCK_BOTTOM
= 3,
36 wxAUI_DOCK_CENTER
= 5,
37 wxAUI_DOCK_CENTRE
= wxAUI_DOCK_CENTER
40 enum wxAuiManagerOption
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_VENETIAN_BLINDS_HINT
= 1 << 4,
47 wxAUI_MGR_RECTANGLE_HINT
= 1 << 5,
48 wxAUI_MGR_HINT_FADE
= 1 << 6,
49 wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
= 1 << 7,
50 wxAUI_MGR_LIVE_RESIZE
= 1 << 8,
52 wxAUI_MGR_DEFAULT
= wxAUI_MGR_ALLOW_FLOATING
|
53 wxAUI_MGR_TRANSPARENT_HINT
|
55 wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
59 enum wxAuiPaneDockArtSetting
61 wxAUI_DOCKART_SASH_SIZE
= 0,
62 wxAUI_DOCKART_CAPTION_SIZE
= 1,
63 wxAUI_DOCKART_GRIPPER_SIZE
= 2,
64 wxAUI_DOCKART_PANE_BORDER_SIZE
= 3,
65 wxAUI_DOCKART_PANE_BUTTON_SIZE
= 4,
66 wxAUI_DOCKART_BACKGROUND_COLOUR
= 5,
67 wxAUI_DOCKART_SASH_COLOUR
= 6,
68 wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR
= 7,
69 wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR
= 8,
70 wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR
= 9,
71 wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR
= 10,
72 wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR
= 11,
73 wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR
= 12,
74 wxAUI_DOCKART_BORDER_COLOUR
= 13,
75 wxAUI_DOCKART_GRIPPER_COLOUR
= 14,
76 wxAUI_DOCKART_CAPTION_FONT
= 15,
77 wxAUI_DOCKART_GRADIENT_TYPE
= 16
80 enum wxAuiPaneDockArtGradients
82 wxAUI_GRADIENT_NONE
= 0,
83 wxAUI_GRADIENT_VERTICAL
= 1,
84 wxAUI_GRADIENT_HORIZONTAL
= 2
87 enum wxAuiPaneButtonState
89 wxAUI_BUTTON_STATE_NORMAL
= 0,
90 wxAUI_BUTTON_STATE_HOVER
= 1 << 1,
91 wxAUI_BUTTON_STATE_PRESSED
= 1 << 2,
92 wxAUI_BUTTON_STATE_DISABLED
= 1 << 3,
93 wxAUI_BUTTON_STATE_HIDDEN
= 1 << 4,
94 wxAUI_BUTTON_STATE_CHECKED
= 1 << 5
99 wxAUI_BUTTON_CLOSE
= 101,
100 wxAUI_BUTTON_MAXIMIZE_RESTORE
= 102,
101 wxAUI_BUTTON_MINIMIZE
= 103,
102 wxAUI_BUTTON_PIN
= 104,
103 wxAUI_BUTTON_OPTIONS
= 105,
104 wxAUI_BUTTON_WINDOWLIST
= 106,
105 wxAUI_BUTTON_LEFT
= 107,
106 wxAUI_BUTTON_RIGHT
= 108,
107 wxAUI_BUTTON_UP
= 109,
108 wxAUI_BUTTON_DOWN
= 110,
109 wxAUI_BUTTON_CUSTOM1
= 201,
110 wxAUI_BUTTON_CUSTOM2
= 202,
111 wxAUI_BUTTON_CUSTOM3
= 203
114 enum wxAuiPaneInsertLevel
116 wxAUI_INSERT_PANE
= 0,
117 wxAUI_INSERT_ROW
= 1,
118 wxAUI_INSERT_DOCK
= 2
124 // forwards and array declarations
125 class wxAuiDockUIPart
;
126 class wxAuiPaneButton
;
130 class wxAuiManagerEvent
;
133 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiDockInfo
, wxAuiDockInfoArray
, WXDLLIMPEXP_AUI
);
134 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiDockUIPart
, wxAuiDockUIPartArray
, WXDLLIMPEXP_AUI
);
135 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiPaneButton
, wxAuiPaneButtonArray
, WXDLLIMPEXP_AUI
);
136 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiPaneInfo
, wxAuiPaneInfoArray
, WXDLLIMPEXP_AUI
);
137 WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxAuiPaneInfo
*, wxAuiPaneInfoPtrArray
, class WXDLLIMPEXP_AUI
);
138 WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxAuiDockInfo
*, wxAuiDockInfoPtrArray
, class WXDLLIMPEXP_AUI
);
141 extern WXDLLIMPEXP_AUI wxAuiDockInfo wxAuiNullDockInfo
;
142 extern WXDLLIMPEXP_AUI wxAuiPaneInfo wxAuiNullPaneInfo
;
146 class WXDLLIMPEXP_AUI wxAuiPaneInfo
155 dock_direction
= wxAUI_DOCK_LEFT
;
159 floating_pos
= wxDefaultPosition
;
160 floating_size
= wxDefaultSize
;
161 best_size
= wxDefaultSize
;
162 min_size
= wxDefaultSize
;
163 max_size
= wxDefaultSize
;
172 wxAuiPaneInfo(const wxAuiPaneInfo
& c
)
179 dock_direction
= c
.dock_direction
;
180 dock_layer
= c
.dock_layer
;
181 dock_row
= c
.dock_row
;
182 dock_pos
= c
.dock_pos
;
183 best_size
= c
.best_size
;
184 min_size
= c
.min_size
;
185 max_size
= c
.max_size
;
186 floating_pos
= c
.floating_pos
;
187 floating_size
= c
.floating_size
;
188 dock_proportion
= c
.dock_proportion
;
193 wxAuiPaneInfo
& operator=(const wxAuiPaneInfo
& c
)
200 dock_direction
= c
.dock_direction
;
201 dock_layer
= c
.dock_layer
;
202 dock_row
= c
.dock_row
;
203 dock_pos
= c
.dock_pos
;
204 best_size
= c
.best_size
;
205 min_size
= c
.min_size
;
206 max_size
= c
.max_size
;
207 floating_pos
= c
.floating_pos
;
208 floating_size
= c
.floating_size
;
209 dock_proportion
= c
.dock_proportion
;
216 // Write the safe parts of a newly loaded PaneInfo structure "source" into "this"
217 // used on loading perspectives etc.
218 void SafeSet(wxAuiPaneInfo source
)
220 // note source is not passed by reference so we can overwrite, to keep the
221 // unsafe bits of "dest"
222 source
.window
= window
;
223 source
.frame
= frame
;
224 source
.buttons
= buttons
;
229 bool IsOk() const { return window
!= NULL
; }
230 bool IsFixed() const { return !HasFlag(optionResizable
); }
231 bool IsResizable() const { return HasFlag(optionResizable
); }
232 bool IsShown() const { return !HasFlag(optionHidden
); }
233 bool IsFloating() const { return HasFlag(optionFloating
); }
234 bool IsDocked() const { return !HasFlag(optionFloating
); }
235 bool IsToolbar() const { return HasFlag(optionToolbar
); }
236 bool IsTopDockable() const { return HasFlag(optionTopDockable
); }
237 bool IsBottomDockable() const { return HasFlag(optionBottomDockable
); }
238 bool IsLeftDockable() const { return HasFlag(optionLeftDockable
); }
239 bool IsRightDockable() const { return HasFlag(optionRightDockable
); }
240 bool IsFloatable() const { return HasFlag(optionFloatable
); }
241 bool IsMovable() const { return HasFlag(optionMovable
); }
242 bool IsDestroyOnClose() const { return HasFlag(optionDestroyOnClose
); }
243 bool IsMaximized() const { return HasFlag(optionMaximized
); }
244 bool HasCaption() const { return HasFlag(optionCaption
); }
245 bool HasGripper() const { return HasFlag(optionGripper
); }
246 bool HasBorder() const { return HasFlag(optionPaneBorder
); }
247 bool HasCloseButton() const { return HasFlag(buttonClose
); }
248 bool HasMaximizeButton() const { return HasFlag(buttonMaximize
); }
249 bool HasMinimizeButton() const { return HasFlag(buttonMinimize
); }
250 bool HasPinButton() const { return HasFlag(buttonPin
); }
251 bool HasGripperTop() const { return HasFlag(optionGripperTop
); }
254 %typemap
(out
) wxAuiPaneInfo
& { $result
= $self
; Py_INCREF($result
); }
256 wxAuiPaneInfo
& Window(wxWindow
* w
) { window
= w
; return *this; }
257 wxAuiPaneInfo
& Name(const wxString
& n
) { name
= n
; return *this; }
258 wxAuiPaneInfo
& Caption(const wxString
& c
) { caption
= c
; return *this; }
259 wxAuiPaneInfo
& Left() { dock_direction
= wxAUI_DOCK_LEFT
; return *this; }
260 wxAuiPaneInfo
& Right() { dock_direction
= wxAUI_DOCK_RIGHT
; return *this; }
261 wxAuiPaneInfo
& Top() { dock_direction
= wxAUI_DOCK_TOP
; return *this; }
262 wxAuiPaneInfo
& Bottom() { dock_direction
= wxAUI_DOCK_BOTTOM
; return *this; }
263 wxAuiPaneInfo
& Center() { dock_direction
= wxAUI_DOCK_CENTER
; return *this; }
264 wxAuiPaneInfo
& Centre() { dock_direction
= wxAUI_DOCK_CENTRE
; return *this; }
265 wxAuiPaneInfo
& Direction(int direction
) { dock_direction
= direction
; return *this; }
266 wxAuiPaneInfo
& Layer(int layer
) { dock_layer
= layer
; return *this; }
267 wxAuiPaneInfo
& Row(int row
) { dock_row
= row
; return *this; }
268 wxAuiPaneInfo
& Position(int pos
) { dock_pos
= pos
; return *this; }
269 wxAuiPaneInfo
& BestSize(const wxSize
& size
) { best_size
= size
; return *this; }
270 wxAuiPaneInfo
& MinSize(const wxSize
& size
) { min_size
= size
; return *this; }
271 wxAuiPaneInfo
& MaxSize(const wxSize
& size
) { max_size
= size
; return *this; }
272 wxAuiPaneInfo
& BestSize(int x
, int y
) { best_size
.Set(x
,y
); return *this; }
273 wxAuiPaneInfo
& MinSize(int x
, int y
) { min_size
.Set(x
,y
); return *this; }
274 wxAuiPaneInfo
& MaxSize(int x
, int y
) { max_size
.Set(x
,y
); return *this; }
275 wxAuiPaneInfo
& FloatingPosition(const wxPoint
& pos
) { floating_pos
= pos
; return *this; }
276 wxAuiPaneInfo
& FloatingPosition(int x
, int y
) { floating_pos
.x
= x
; floating_pos
.y
= y
; return *this; }
277 wxAuiPaneInfo
& FloatingSize(const wxSize
& size
) { floating_size
= size
; return *this; }
278 wxAuiPaneInfo
& FloatingSize(int x
, int y
) { floating_size
.Set(x
,y
); return *this; }
279 wxAuiPaneInfo
& Fixed() { return SetFlag(optionResizable
, false); }
280 wxAuiPaneInfo
& Resizable(bool resizable
= true) { return SetFlag(optionResizable
, resizable
); }
281 wxAuiPaneInfo
& Dock() { return SetFlag(optionFloating
, false); }
282 wxAuiPaneInfo
& Float() { return SetFlag(optionFloating
, true); }
283 wxAuiPaneInfo
& Hide() { return SetFlag(optionHidden
, true); }
284 wxAuiPaneInfo
& Show(bool show
= true) { return SetFlag(optionHidden
, !show
); }
285 wxAuiPaneInfo
& CaptionVisible(bool visible
= true) { return SetFlag(optionCaption
, visible
); }
286 wxAuiPaneInfo
& Maximize() { return SetFlag(optionMaximized
, true); }
287 wxAuiPaneInfo
& Restore() { return SetFlag(optionMaximized
, false); }
288 wxAuiPaneInfo
& PaneBorder(bool visible
= true) { return SetFlag(optionPaneBorder
, visible
); }
289 wxAuiPaneInfo
& Gripper(bool visible
= true) { return SetFlag(optionGripper
, visible
); }
290 wxAuiPaneInfo
& GripperTop(bool attop
= true) { return SetFlag(optionGripperTop
, attop
); }
291 wxAuiPaneInfo
& CloseButton(bool visible
= true) { return SetFlag(buttonClose
, visible
); }
292 wxAuiPaneInfo
& MaximizeButton(bool visible
= true) { return SetFlag(buttonMaximize
, visible
); }
293 wxAuiPaneInfo
& MinimizeButton(bool visible
= true) { return SetFlag(buttonMinimize
, visible
); }
294 wxAuiPaneInfo
& PinButton(bool visible
= true) { return SetFlag(buttonPin
, visible
); }
295 wxAuiPaneInfo
& DestroyOnClose(bool b
= true) { return SetFlag(optionDestroyOnClose
, b
); }
296 wxAuiPaneInfo
& TopDockable(bool b
= true) { return SetFlag(optionTopDockable
, b
); }
297 wxAuiPaneInfo
& BottomDockable(bool b
= true) { return SetFlag(optionBottomDockable
, b
); }
298 wxAuiPaneInfo
& LeftDockable(bool b
= true) { return SetFlag(optionLeftDockable
, b
); }
299 wxAuiPaneInfo
& RightDockable(bool b
= true) { return SetFlag(optionRightDockable
, b
); }
300 wxAuiPaneInfo
& Floatable(bool b
= true) { return SetFlag(optionFloatable
, b
); }
301 wxAuiPaneInfo
& Movable(bool b
= true) { return SetFlag(optionMovable
, b
); }
302 wxAuiPaneInfo
& DockFixed(bool b
= true) { return SetFlag(optionDockFixed
, b
); }
304 wxAuiPaneInfo
& Dockable(bool b
= true)
306 return TopDockable(b
).BottomDockable(b
).LeftDockable(b
).RightDockable(b
);
309 wxAuiPaneInfo
& DefaultPane()
311 state
|= optionTopDockable
| optionBottomDockable
|
312 optionLeftDockable
| optionRightDockable
|
313 optionFloatable
| optionMovable
| optionResizable
|
314 optionCaption
| optionPaneBorder
| buttonClose
;
318 wxAuiPaneInfo
& CentrePane() { return CenterPane(); }
319 wxAuiPaneInfo
& CenterPane()
322 return Center().PaneBorder().Resizable();
325 wxAuiPaneInfo
& ToolbarPane()
328 state
|= (optionToolbar
| optionGripper
);
329 state
&= ~(optionResizable
| optionCaption
);
335 wxAuiPaneInfo
& SetFlag(int flag
, bool option_state
)
344 bool HasFlag(int flag
) const
346 return (state
& flag
) != 0;
350 %typemap
(out
) wxAuiPaneInfo
& ;
355 // NOTE: You can add and subtract flags from this list,
356 // but do not change the values of the flags, because
357 // they are stored in a binary integer format in the
358 // perspective string. If you really need to change the
359 // values around, you'll have to ensure backwards-compatibility
360 // in the perspective loading code.
363 optionFloating
= 1 << 0,
364 optionHidden
= 1 << 1,
365 optionLeftDockable
= 1 << 2,
366 optionRightDockable
= 1 << 3,
367 optionTopDockable
= 1 << 4,
368 optionBottomDockable
= 1 << 5,
369 optionFloatable
= 1 << 6,
370 optionMovable
= 1 << 7,
371 optionResizable
= 1 << 8,
372 optionPaneBorder
= 1 << 9,
373 optionCaption
= 1 << 10,
374 optionGripper
= 1 << 11,
375 optionDestroyOnClose
= 1 << 12,
376 optionToolbar
= 1 << 13,
377 optionActive
= 1 << 14,
378 optionGripperTop
= 1 << 15,
379 optionMaximized
= 1 << 16,
380 optionDockFixed
= 1 << 17,
382 buttonClose
= 1 << 21,
383 buttonMaximize
= 1 << 22,
384 buttonMinimize
= 1 << 23,
387 buttonCustom1
= 1 << 26,
388 buttonCustom2
= 1 << 27,
389 buttonCustom3
= 1 << 28,
391 savedHiddenState
= 1 << 30, // used internally
392 actionPane
= 1 << 31 // used internally
396 wxString name
; // name of the pane
397 wxString caption
; // caption displayed on the window
399 wxWindow
* window
; // window that is in this pane
400 wxFrame
* frame
; // floating frame window that holds the pane
401 unsigned int state
; // a combination of wxPaneState values
403 int dock_direction
; // dock direction (top, bottom, left, right, center)
404 int dock_layer
; // layer number (0 = innermost layer)
405 int dock_row
; // row number on the docking bar (0 = first row)
406 int dock_pos
; // position inside the row (0 = first position)
408 wxSize best_size
; // size that the layout engine will prefer
409 wxSize min_size
; // minimum size the pane window can tolerate
410 wxSize max_size
; // maximum size the pane window can tolerate
412 wxPoint floating_pos
; // position while floating
413 wxSize floating_size
; // size while floating
414 int dock_proportion
; // proportion while docked
416 wxAuiPaneButtonArray buttons
; // buttons on the pane
418 wxRect rect
; // current rectangle (populated by wxAUI)
423 class WXDLLIMPEXP_FWD_AUI wxAuiFloatingFrame
;
425 class WXDLLIMPEXP_AUI wxAuiManager
: public wxEvtHandler
427 friend class wxAuiFloatingFrame
;
431 wxAuiManager(wxWindow
* managed_wnd
= NULL
,
432 unsigned int flags
= wxAUI_MGR_DEFAULT
);
433 virtual ~wxAuiManager();
436 void SetFlags(unsigned int flags
);
437 unsigned int GetFlags() const;
439 void SetManagedWindow(wxWindow
* managed_wnd
);
440 wxWindow
* GetManagedWindow() const;
442 static wxAuiManager
* GetManager(wxWindow
* window
);
444 void SetArtProvider(wxAuiDockArt
* art_provider
);
445 wxAuiDockArt
* GetArtProvider() const;
447 wxAuiPaneInfo
& GetPane(wxWindow
* window
);
448 wxAuiPaneInfo
& GetPane(const wxString
& name
);
449 wxAuiPaneInfoArray
& GetAllPanes();
451 bool AddPane(wxWindow
* window
,
452 const wxAuiPaneInfo
& pane_info
);
454 bool AddPane(wxWindow
* window
,
455 const wxAuiPaneInfo
& pane_info
,
456 const wxPoint
& drop_pos
);
458 bool AddPane(wxWindow
* window
,
459 int direction
= wxLEFT
,
460 const wxString
& caption
= wxEmptyString
);
462 bool InsertPane(wxWindow
* window
,
463 const wxAuiPaneInfo
& insert_location
,
464 int insert_level
= wxAUI_INSERT_PANE
);
466 bool DetachPane(wxWindow
* window
);
470 wxString
SavePaneInfo(wxAuiPaneInfo
& pane
);
471 void LoadPaneInfo(wxString pane_part
, wxAuiPaneInfo
&pane
);
472 wxString
SavePerspective();
473 bool LoadPerspective(const wxString
& perspective
, bool update
= true);
475 void SetDockSizeConstraint(double width_pct
, double height_pct
);
476 void GetDockSizeConstraint(double* width_pct
, double* height_pct
) const;
478 void ClosePane(wxAuiPaneInfo
& pane_info
);
479 void MaximizePane(wxAuiPaneInfo
& pane_info
);
480 void RestorePane(wxAuiPaneInfo
& pane_info
);
481 void RestoreMaximizedPane();
485 virtual wxAuiFloatingFrame
* CreateFloatingFrame(wxWindow
* parent
, const wxAuiPaneInfo
& p
);
486 virtual bool CanDockPanel(const wxAuiPaneInfo
& p
);
489 wxWindow
* pane_window
,
490 const wxPoint
& offset
);
492 wxRect
CalculateHintRect(
493 wxWindow
* pane_window
,
495 const wxPoint
& offset
);
498 wxWindow
* pane_window
,
500 const wxPoint
& offset
);
502 virtual void ShowHint(const wxRect
& rect
);
503 virtual void HideHint();
505 void OnHintActivate(wxActivateEvent
& event
);
509 // deprecated -- please use SetManagedWindow() and
510 // and GetManagedWindow() instead
512 wxDEPRECATED( void SetFrame(wxFrame
* frame
) );
513 wxDEPRECATED( wxFrame
* GetFrame() const );
517 void UpdateHintWindowConfig();
519 void DoFrameLayout();
521 void LayoutAddPane(wxSizer
* container
,
524 wxAuiDockUIPartArray
& uiparts
,
527 void LayoutAddDock(wxSizer
* container
,
529 wxAuiDockUIPartArray
& uiparts
,
532 wxSizer
* LayoutAll(wxAuiPaneInfoArray
& panes
,
533 wxAuiDockInfoArray
& docks
,
534 wxAuiDockUIPartArray
& uiparts
,
535 bool spacer_only
= false);
537 virtual bool ProcessDockResult(wxAuiPaneInfo
& target
,
538 const wxAuiPaneInfo
& new_pos
);
540 bool DoDrop(wxAuiDockInfoArray
& docks
,
541 wxAuiPaneInfoArray
& panes
,
544 const wxPoint
& action_offset
= wxPoint(0,0));
546 wxAuiDockUIPart
* HitTest(int x
, int y
);
547 wxAuiDockUIPart
* GetPanePart(wxWindow
* pane
);
548 int GetDockPixelOffset(wxAuiPaneInfo
& test
);
549 void OnFloatingPaneMoveStart(wxWindow
* window
);
550 void OnFloatingPaneMoving(wxWindow
* window
, wxDirection dir
);
551 void OnFloatingPaneMoved(wxWindow
* window
, wxDirection dir
);
552 void OnFloatingPaneActivated(wxWindow
* window
);
553 void OnFloatingPaneClosed(wxWindow
* window
, wxCloseEvent
& evt
);
554 void OnFloatingPaneResized(wxWindow
* window
, const wxSize
& size
);
555 void Render(wxDC
* dc
);
556 void Repaint(wxDC
* dc
= NULL
);
557 void ProcessMgrEvent(wxAuiManagerEvent
& event
);
558 void UpdateButtonOnScreen(wxAuiDockUIPart
* button_ui_part
,
559 const wxMouseEvent
& event
);
560 void GetPanePositionsAndSizes(wxAuiDockInfo
& dock
,
561 wxArrayInt
& positions
,
564 /// Ends a resize action, or for live update, resizes the sash
565 bool DoEndResizeAction(wxMouseEvent
& event
);
569 // public events (which can be invoked externally)
570 void OnRender(wxAuiManagerEvent
& evt
);
571 void OnPaneButton(wxAuiManagerEvent
& evt
);
576 void OnPaint(wxPaintEvent
& evt
);
577 void OnEraseBackground(wxEraseEvent
& evt
);
578 void OnSize(wxSizeEvent
& evt
);
579 void OnSetCursor(wxSetCursorEvent
& evt
);
580 void OnLeftDown(wxMouseEvent
& evt
);
581 void OnLeftUp(wxMouseEvent
& evt
);
582 void OnMotion(wxMouseEvent
& evt
);
583 void OnCaptureLost(wxMouseCaptureLostEvent
& evt
);
584 void OnLeaveWindow(wxMouseEvent
& evt
);
585 void OnChildFocus(wxChildFocusEvent
& evt
);
586 void OnHintFadeTimer(wxTimerEvent
& evt
);
587 void OnFindManager(wxAuiManagerEvent
& evt
);
597 actionDragToolbarPane
,
598 actionDragFloatingPane
603 wxWindow
* m_frame
; // the window being managed
604 wxAuiDockArt
* m_art
; // dock art object which does all drawing
605 unsigned int m_flags
; // manager flags wxAUI_MGR_*
607 wxAuiPaneInfoArray m_panes
; // array of panes structures
608 wxAuiDockInfoArray m_docks
; // array of docks structures
609 wxAuiDockUIPartArray m_uiparts
; // array of UI parts (captions, buttons, etc)
611 int m_action
; // current mouse action
612 wxPoint m_action_start
; // position where the action click started
613 wxPoint m_action_offset
; // offset from upper left of the item clicked
614 wxAuiDockUIPart
* m_action_part
; // ptr to the part the action happened to
615 wxWindow
* m_action_window
; // action frame or window (NULL if none)
616 wxRect m_action_hintrect
; // hint rectangle for the action
618 wxAuiDockUIPart
* m_hover_button
;// button uipart being hovered over
619 wxRect m_last_hint
; // last hint rectangle
620 wxPoint m_last_mouse_move
; // last mouse move position (see OnMotion)
621 int m_currentDragItem
;
623 bool m_has_maximized
;
625 double m_dock_constraint_x
; // 0.0 .. 1.0; max pct of window width a dock can consume
626 double m_dock_constraint_y
; // 0.0 .. 1.0; max pct of window height a dock can consume
628 wxFrame
* m_hint_wnd
; // transparent hint window, if supported by platform
629 wxTimer m_hint_fadetimer
; // transparent fade timer
630 wxByte m_hint_fadeamt
; // transparent fade amount
631 wxByte m_hint_fademax
; // maximum value of hint fade
636 DECLARE_EVENT_TABLE()
637 DECLARE_CLASS(wxAuiManager
)
643 // event declarations/classes
645 class WXDLLIMPEXP_AUI wxAuiManagerEvent
: public wxEvent
648 wxAuiManagerEvent(wxEventType type
=wxEVT_NULL
) : wxEvent(0, type
)
658 wxAuiManagerEvent(const wxAuiManagerEvent
& c
) : wxEvent(c
)
663 veto_flag
= c
.veto_flag
;
664 canveto_flag
= c
.canveto_flag
;
668 wxEvent
*Clone() const { return new wxAuiManagerEvent(*this); }
670 void SetManager(wxAuiManager
* mgr
) { manager
= mgr
; }
671 void SetPane(wxAuiPaneInfo
* p
) { pane
= p
; }
672 void SetButton(int b
) { button
= b
; }
673 void SetDC(wxDC
* pdc
) { dc
= pdc
; }
675 wxAuiManager
* GetManager() const { return manager
; }
676 wxAuiPaneInfo
* GetPane() const { return pane
; }
677 int GetButton() const { return button
; }
678 wxDC
* GetDC() const { return dc
; }
680 void Veto(bool veto
= true) { veto_flag
= veto
; }
681 bool GetVeto() const { return veto_flag
; }
682 void SetCanVeto(bool can_veto
) { canveto_flag
= can_veto
; }
683 bool CanVeto() const { return canveto_flag
&& veto_flag
; }
686 wxAuiManager
* manager
;
695 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxAuiManagerEvent
)
700 class WXDLLIMPEXP_AUI wxAuiDockInfo
717 wxAuiDockInfo(const wxAuiDockInfo
& c
)
719 dock_direction
= c
.dock_direction
;
720 dock_layer
= c
.dock_layer
;
721 dock_row
= c
.dock_row
;
723 min_size
= c
.min_size
;
724 resizable
= c
.resizable
;
729 reserved1
= c
.reserved1
;
732 wxAuiDockInfo
& operator=(const wxAuiDockInfo
& c
)
734 dock_direction
= c
.dock_direction
;
735 dock_layer
= c
.dock_layer
;
736 dock_row
= c
.dock_row
;
738 min_size
= c
.min_size
;
739 resizable
= c
.resizable
;
744 reserved1
= c
.reserved1
;
749 bool IsOk() const { return dock_direction
!= 0; }
750 bool IsHorizontal() const { return dock_direction
== wxAUI_DOCK_TOP
||
751 dock_direction
== wxAUI_DOCK_BOTTOM
; }
752 bool IsVertical() const { return dock_direction
== wxAUI_DOCK_LEFT
||
753 dock_direction
== wxAUI_DOCK_RIGHT
||
754 dock_direction
== wxAUI_DOCK_CENTER
; }
756 wxAuiPaneInfoPtrArray panes
; // array of panes
757 wxRect rect
; // current rectangle
758 int dock_direction
; // dock direction (top, bottom, left, right, center)
759 int dock_layer
; // layer number (0 = innermost layer)
760 int dock_row
; // row number on the docking bar (0 = first row)
761 int size
; // size of the dock
762 int min_size
; // minimum size of a dock (0 if there is no min)
763 bool resizable
; // flag indicating whether the dock is resizable
764 bool toolbar
; // flag indicating dock contains only toolbars
765 bool fixed
; // flag indicating that the dock operates on
766 // absolute coordinates as opposed to proportional
771 class WXDLLIMPEXP_AUI wxAuiDockUIPart
787 int type
; // ui part type (see enum above)
788 int orientation
; // orientation (either wxHORIZONTAL or wxVERTICAL)
789 wxAuiDockInfo
* dock
; // which dock the item is associated with
790 wxAuiPaneInfo
* pane
; // which pane the item is associated with
791 wxAuiPaneButton
* button
; // which pane button the item is associated with
792 wxSizer
* cont_sizer
; // the part's containing sizer
793 wxSizerItem
* sizer_item
; // the sizer item of the part
794 wxRect rect
; // client coord rectangle of the part itself
798 class WXDLLIMPEXP_AUI wxAuiPaneButton
801 int button_id
; // id of the button (e.g. buttonClose)
808 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_AUI
, wxEVT_AUI_PANE_BUTTON
, wxAuiManagerEvent
);
809 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_AUI
, wxEVT_AUI_PANE_CLOSE
, wxAuiManagerEvent
);
810 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_AUI
, wxEVT_AUI_PANE_MAXIMIZE
, wxAuiManagerEvent
);
811 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_AUI
, wxEVT_AUI_PANE_RESTORE
, wxAuiManagerEvent
);
812 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_AUI
, wxEVT_AUI_RENDER
, wxAuiManagerEvent
);
813 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_AUI
, wxEVT_AUI_FIND_MANAGER
, wxAuiManagerEvent
);
815 typedef void (wxEvtHandler::*wxAuiManagerEventFunction
)(wxAuiManagerEvent
&);
817 #define wxAuiManagerEventHandler(func) \
818 wxEVENT_HANDLER_CAST(wxAuiManagerEventFunction, func)
820 #define EVT_AUI_PANE_BUTTON(func) \
821 wx__DECLARE_EVT0(wxEVT_AUI_PANE_BUTTON, wxAuiManagerEventHandler(func))
822 #define EVT_AUI_PANE_CLOSE(func) \
823 wx__DECLARE_EVT0(wxEVT_AUI_PANE_CLOSE, wxAuiManagerEventHandler(func))
824 #define EVT_AUI_PANE_MAXIMIZE(func) \
825 wx__DECLARE_EVT0(wxEVT_AUI_PANE_MAXIMIZE, wxAuiManagerEventHandler(func))
826 #define EVT_AUI_PANE_RESTORE(func) \
827 wx__DECLARE_EVT0(wxEVT_AUI_PANE_RESTORE, wxAuiManagerEventHandler(func))
828 #define EVT_AUI_RENDER(func) \
829 wx__DECLARE_EVT0(wxEVT_AUI_RENDER, wxAuiManagerEventHandler(func))
830 #define EVT_AUI_FIND_MANAGER(func) \
831 wx__DECLARE_EVT0(wxEVT_AUI_FIND_MANAGER, wxAuiManagerEventHandler(func))
835 %constant wxEventType wxEVT_AUI_PANE_BUTTON
;
836 %constant wxEventType wxEVT_AUI_PANE_CLOSE
;
837 %constant wxEventType wxEVT_AUI_PANE_MAXIMIZE
;
838 %constant wxEventType wxEVT_AUI_PANE_RESTORE
;
839 %constant wxEventType wxEVT_AUI_RENDER
;
840 %constant wxEventType wxEVT_AUI_FIND_MANAGER
;
843 EVT_AUI_PANE_BUTTON
= wx
.PyEventBinder( wxEVT_AUI_PANE_BUTTON
)
844 EVT_AUI_PANE_CLOSE
= wx
.PyEventBinder( wxEVT_AUI_PANE_CLOSE
)
845 EVT_AUI_PANE_MAXIMIZE
= wx
.PyEventBinder( wxEVT_AUI_PANE_MAXIMIZE
)
846 EVT_AUI_PANE_RESTORE
= wx
.PyEventBinder( wxEVT_AUI_PANE_RESTORE
)
847 EVT_AUI_RENDER
= wx
.PyEventBinder( wxEVT_AUI_RENDER
)
848 EVT_AUI_FIND_MANAGER
= wx
.PyEventBinder( wxEVT_AUI_FIND_MANAGER
)
853 #endif //_WX_FRAMEMANAGER_H_