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,
51 wxAUI_MGR_DEFAULT
= wxAUI_MGR_ALLOW_FLOATING
|
52 wxAUI_MGR_TRANSPARENT_HINT
|
54 wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
58 enum wxAuiPaneDockArtSetting
60 wxAUI_ART_SASH_SIZE
= 0,
61 wxAUI_ART_CAPTION_SIZE
= 1,
62 wxAUI_ART_GRIPPER_SIZE
= 2,
63 wxAUI_ART_PANE_BORDER_SIZE
= 3,
64 wxAUI_ART_PANE_BUTTON_SIZE
= 4,
65 wxAUI_ART_BACKGROUND_COLOUR
= 5,
66 wxAUI_ART_SASH_COLOUR
= 6,
67 wxAUI_ART_ACTIVE_CAPTION_COLOUR
= 7,
68 wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
= 8,
69 wxAUI_ART_INACTIVE_CAPTION_COLOUR
= 9,
70 wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
= 10,
71 wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
= 11,
72 wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
= 12,
73 wxAUI_ART_BORDER_COLOUR
= 13,
74 wxAUI_ART_GRIPPER_COLOUR
= 14,
75 wxAUI_ART_CAPTION_FONT
= 15,
76 wxAUI_ART_GRADIENT_TYPE
= 16
79 enum wxAuiPaneDockArtGradients
81 wxAUI_GRADIENT_NONE
= 0,
82 wxAUI_GRADIENT_VERTICAL
= 1,
83 wxAUI_GRADIENT_HORIZONTAL
= 2
86 enum wxAuiPaneButtonState
88 wxAUI_BUTTON_STATE_NORMAL
= 0,
89 wxAUI_BUTTON_STATE_HOVER
= 1 << 1,
90 wxAUI_BUTTON_STATE_PRESSED
= 1 << 2,
91 wxAUI_BUTTON_STATE_DISABLED
= 1 << 3,
92 wxAUI_BUTTON_STATE_HIDDEN
= 1 << 4
97 wxAUI_BUTTON_CLOSE
= 101,
98 wxAUI_BUTTON_MAXIMIZE_RESTORE
= 102,
99 wxAUI_BUTTON_MINIMIZE
= 103,
100 wxAUI_BUTTON_PIN
= 104,
101 wxAUI_BUTTON_OPTIONS
= 105,
102 wxAUI_BUTTON_WINDOWLIST
= 106,
103 wxAUI_BUTTON_LEFT
= 107,
104 wxAUI_BUTTON_RIGHT
= 108,
105 wxAUI_BUTTON_UP
= 109,
106 wxAUI_BUTTON_DOWN
= 110,
107 wxAUI_BUTTON_CUSTOM1
= 201,
108 wxAUI_BUTTON_CUSTOM2
= 202,
109 wxAUI_BUTTON_CUSTOM3
= 203
112 enum wxAuiPaneInsertLevel
114 wxAUI_INSERT_PANE
= 0,
115 wxAUI_INSERT_ROW
= 1,
116 wxAUI_INSERT_DOCK
= 2
122 // forwards and array declarations
123 class wxAuiDockUIPart
;
124 class wxAuiPaneButton
;
128 class wxAuiManagerEvent
;
131 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiDockInfo
, wxAuiDockInfoArray
, WXDLLIMPEXP_AUI
);
132 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiDockUIPart
, wxAuiDockUIPartArray
, WXDLLIMPEXP_AUI
);
133 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiPaneButton
, wxAuiPaneButtonArray
, WXDLLIMPEXP_AUI
);
134 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiPaneInfo
, wxAuiPaneInfoArray
, WXDLLIMPEXP_AUI
);
135 WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxAuiPaneInfo
*, wxAuiPaneInfoPtrArray
, class WXDLLIMPEXP_AUI
);
136 WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxAuiDockInfo
*, wxAuiDockInfoPtrArray
, class WXDLLIMPEXP_AUI
);
139 extern WXDLLIMPEXP_AUI wxAuiDockInfo wxAuiNullDockInfo
;
140 extern WXDLLIMPEXP_AUI wxAuiPaneInfo wxAuiNullPaneInfo
;
144 class WXDLLIMPEXP_AUI wxAuiPaneInfo
153 dock_direction
= wxAUI_DOCK_LEFT
;
157 floating_pos
= wxDefaultPosition
;
158 floating_size
= wxDefaultSize
;
159 best_size
= wxDefaultSize
;
160 min_size
= wxDefaultSize
;
161 max_size
= wxDefaultSize
;
170 wxAuiPaneInfo(const wxAuiPaneInfo
& c
)
177 dock_direction
= c
.dock_direction
;
178 dock_layer
= c
.dock_layer
;
179 dock_row
= c
.dock_row
;
180 dock_pos
= c
.dock_pos
;
181 best_size
= c
.best_size
;
182 min_size
= c
.min_size
;
183 max_size
= c
.max_size
;
184 floating_pos
= c
.floating_pos
;
185 floating_size
= c
.floating_size
;
186 dock_proportion
= c
.dock_proportion
;
191 wxAuiPaneInfo
& operator=(const wxAuiPaneInfo
& c
)
198 dock_direction
= c
.dock_direction
;
199 dock_layer
= c
.dock_layer
;
200 dock_row
= c
.dock_row
;
201 dock_pos
= c
.dock_pos
;
202 best_size
= c
.best_size
;
203 min_size
= c
.min_size
;
204 max_size
= c
.max_size
;
205 floating_pos
= c
.floating_pos
;
206 floating_size
= c
.floating_size
;
207 dock_proportion
= c
.dock_proportion
;
214 // Write the safe parts of a newly loaded PaneInfo structure "source" into "this"
215 // used on loading perspectives etc.
216 void SafeSet(wxAuiPaneInfo source
)
218 // note source is not passed by reference so we can overwrite, to keep the
219 // unsafe bits of "dest"
220 source
.window
= window
;
221 source
.frame
= frame
;
222 source
.buttons
= buttons
;
227 bool IsOk() const { return (window
!= NULL
) ? true : false; }
228 bool IsFixed() const { return !HasFlag(optionResizable
); }
229 bool IsResizable() const { return HasFlag(optionResizable
); }
230 bool IsShown() const { return !HasFlag(optionHidden
); }
231 bool IsFloating() const { return HasFlag(optionFloating
); }
232 bool IsDocked() const { return !HasFlag(optionFloating
); }
233 bool IsToolbar() const { return HasFlag(optionToolbar
); }
234 bool IsTopDockable() const { return HasFlag(optionTopDockable
); }
235 bool IsBottomDockable() const { return HasFlag(optionBottomDockable
); }
236 bool IsLeftDockable() const { return HasFlag(optionLeftDockable
); }
237 bool IsRightDockable() const { return HasFlag(optionRightDockable
); }
238 bool IsFloatable() const { return HasFlag(optionFloatable
); }
239 bool IsMovable() const { return HasFlag(optionMovable
); }
240 bool IsDestroyOnClose() const { return HasFlag(optionDestroyOnClose
); }
241 bool IsMaximized() const { return HasFlag(optionMaximized
); }
242 bool HasCaption() const { return HasFlag(optionCaption
); }
243 bool HasGripper() const { return HasFlag(optionGripper
); }
244 bool HasBorder() const { return HasFlag(optionPaneBorder
); }
245 bool HasCloseButton() const { return HasFlag(buttonClose
); }
246 bool HasMaximizeButton() const { return HasFlag(buttonMaximize
); }
247 bool HasMinimizeButton() const { return HasFlag(buttonMinimize
); }
248 bool HasPinButton() const { return HasFlag(buttonPin
); }
249 bool HasGripperTop() const { return HasFlag(optionGripperTop
); }
252 %typemap
(out
) wxAuiPaneInfo
& { $result
= $self
; Py_INCREF($result
); }
254 wxAuiPaneInfo
& Window(wxWindow
* w
) { window
= w
; return *this; }
255 wxAuiPaneInfo
& Name(const wxString
& n
) { name
= n
; return *this; }
256 wxAuiPaneInfo
& Caption(const wxString
& c
) { caption
= c
; return *this; }
257 wxAuiPaneInfo
& Left() { dock_direction
= wxAUI_DOCK_LEFT
; return *this; }
258 wxAuiPaneInfo
& Right() { dock_direction
= wxAUI_DOCK_RIGHT
; return *this; }
259 wxAuiPaneInfo
& Top() { dock_direction
= wxAUI_DOCK_TOP
; return *this; }
260 wxAuiPaneInfo
& Bottom() { dock_direction
= wxAUI_DOCK_BOTTOM
; return *this; }
261 wxAuiPaneInfo
& Center() { dock_direction
= wxAUI_DOCK_CENTER
; return *this; }
262 wxAuiPaneInfo
& Centre() { dock_direction
= wxAUI_DOCK_CENTRE
; return *this; }
263 wxAuiPaneInfo
& Direction(int direction
) { dock_direction
= direction
; return *this; }
264 wxAuiPaneInfo
& Layer(int layer
) { dock_layer
= layer
; return *this; }
265 wxAuiPaneInfo
& Row(int row
) { dock_row
= row
; return *this; }
266 wxAuiPaneInfo
& Position(int pos
) { dock_pos
= pos
; return *this; }
267 wxAuiPaneInfo
& BestSize(const wxSize
& size
) { best_size
= size
; return *this; }
268 wxAuiPaneInfo
& MinSize(const wxSize
& size
) { min_size
= size
; return *this; }
269 wxAuiPaneInfo
& MaxSize(const wxSize
& size
) { max_size
= size
; return *this; }
270 wxAuiPaneInfo
& BestSize(int x
, int y
) { best_size
.Set(x
,y
); return *this; }
271 wxAuiPaneInfo
& MinSize(int x
, int y
) { min_size
.Set(x
,y
); return *this; }
272 wxAuiPaneInfo
& MaxSize(int x
, int y
) { max_size
.Set(x
,y
); return *this; }
273 wxAuiPaneInfo
& FloatingPosition(const wxPoint
& pos
) { floating_pos
= pos
; return *this; }
274 wxAuiPaneInfo
& FloatingPosition(int x
, int y
) { floating_pos
.x
= x
; floating_pos
.y
= y
; return *this; }
275 wxAuiPaneInfo
& FloatingSize(const wxSize
& size
) { floating_size
= size
; return *this; }
276 wxAuiPaneInfo
& FloatingSize(int x
, int y
) { floating_size
.Set(x
,y
); return *this; }
277 wxAuiPaneInfo
& Fixed() { return SetFlag(optionResizable
, false); }
278 wxAuiPaneInfo
& Resizable(bool resizable
= true) { return SetFlag(optionResizable
, resizable
); }
279 wxAuiPaneInfo
& Dock() { return SetFlag(optionFloating
, false); }
280 wxAuiPaneInfo
& Float() { return SetFlag(optionFloating
, true); }
281 wxAuiPaneInfo
& Hide() { return SetFlag(optionHidden
, true); }
282 wxAuiPaneInfo
& Show(bool show
= true) { return SetFlag(optionHidden
, !show
); }
283 wxAuiPaneInfo
& CaptionVisible(bool visible
= true) { return SetFlag(optionCaption
, visible
); }
284 wxAuiPaneInfo
& Maximize() { return SetFlag(optionMaximized
, true); }
285 wxAuiPaneInfo
& Restore() { return SetFlag(optionMaximized
, false); }
286 wxAuiPaneInfo
& PaneBorder(bool visible
= true) { return SetFlag(optionPaneBorder
, visible
); }
287 wxAuiPaneInfo
& Gripper(bool visible
= true) { return SetFlag(optionGripper
, visible
); }
288 wxAuiPaneInfo
& GripperTop(bool attop
= true) { return SetFlag(optionGripperTop
, attop
); }
289 wxAuiPaneInfo
& CloseButton(bool visible
= true) { return SetFlag(buttonClose
, visible
); }
290 wxAuiPaneInfo
& MaximizeButton(bool visible
= true) { return SetFlag(buttonMaximize
, visible
); }
291 wxAuiPaneInfo
& MinimizeButton(bool visible
= true) { return SetFlag(buttonMinimize
, visible
); }
292 wxAuiPaneInfo
& PinButton(bool visible
= true) { return SetFlag(buttonPin
, visible
); }
293 wxAuiPaneInfo
& DestroyOnClose(bool b
= true) { return SetFlag(optionDestroyOnClose
, b
); }
294 wxAuiPaneInfo
& TopDockable(bool b
= true) { return SetFlag(optionTopDockable
, b
); }
295 wxAuiPaneInfo
& BottomDockable(bool b
= true) { return SetFlag(optionBottomDockable
, b
); }
296 wxAuiPaneInfo
& LeftDockable(bool b
= true) { return SetFlag(optionLeftDockable
, b
); }
297 wxAuiPaneInfo
& RightDockable(bool b
= true) { return SetFlag(optionRightDockable
, b
); }
298 wxAuiPaneInfo
& Floatable(bool b
= true) { return SetFlag(optionFloatable
, b
); }
299 wxAuiPaneInfo
& Movable(bool b
= true) { return SetFlag(optionMovable
, b
); }
301 wxAuiPaneInfo
& SaveHidden() { return SetFlag(optionSavedHidden
, HasFlag(optionHidden
)); }
302 wxAuiPaneInfo
& RestoreHidden() { return SetFlag(optionHidden
, HasFlag(optionSavedHidden
)); }
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(unsigned int flag
, bool option_state
)
344 bool HasFlag(unsigned int flag
) const
346 return (state
& flag
) ? true:false;
350 %typemap
(out
) wxAuiPaneInfo
& ;
357 optionFloating
= 1 << 0,
358 optionHidden
= 1 << 1,
359 optionLeftDockable
= 1 << 2,
360 optionRightDockable
= 1 << 3,
361 optionTopDockable
= 1 << 4,
362 optionBottomDockable
= 1 << 5,
363 optionFloatable
= 1 << 6,
364 optionMovable
= 1 << 7,
365 optionResizable
= 1 << 8,
366 optionPaneBorder
= 1 << 9,
367 optionCaption
= 1 << 10,
368 optionGripper
= 1 << 11,
369 optionDestroyOnClose
= 1 << 12,
370 optionToolbar
= 1 << 13,
371 optionActive
= 1 << 14,
372 optionGripperTop
= 1 << 15,
373 optionMaximized
= 1 << 16,
374 optionSavedHidden
= 1 << 17,
376 buttonClose
= 1 << 24,
377 buttonMaximize
= 1 << 25,
378 buttonMinimize
= 1 << 26,
380 buttonCustom1
= 1 << 28,
381 buttonCustom2
= 1 << 29,
382 buttonCustom3
= 1 << 30,
383 actionPane
= 1 << 31 // used internally
387 wxString name
; // name of the pane
388 wxString caption
; // caption displayed on the window
390 wxWindow
* window
; // window that is in this pane
391 wxFrame
* frame
; // floating frame window that holds the pane
392 unsigned int state
; // a combination of wxPaneState values
394 int dock_direction
; // dock direction (top, bottom, left, right, center)
395 int dock_layer
; // layer number (0 = innermost layer)
396 int dock_row
; // row number on the docking bar (0 = first row)
397 int dock_pos
; // position inside the row (0 = first position)
399 wxSize best_size
; // size that the layout engine will prefer
400 wxSize min_size
; // minimum size the pane window can tolerate
401 wxSize max_size
; // maximum size the pane window can tolerate
403 wxPoint floating_pos
; // position while floating
404 wxSize floating_size
; // size while floating
405 int dock_proportion
; // proportion while docked
407 wxAuiPaneButtonArray buttons
; // buttons on the pane
409 wxRect rect
; // current rectangle (populated by wxAUI)
414 class WXDLLIMPEXP_AUI wxAuiFloatingFrame
;
416 class WXDLLIMPEXP_AUI wxAuiManager
: public wxEvtHandler
418 friend class wxAuiFloatingFrame
;
422 wxAuiManager(wxWindow
* managed_wnd
= NULL
,
423 unsigned int flags
= wxAUI_MGR_DEFAULT
);
424 virtual ~wxAuiManager();
427 void SetFlags(unsigned int flags
);
428 unsigned int GetFlags() const;
430 void SetManagedWindow(wxWindow
* managed_wnd
);
431 wxWindow
* GetManagedWindow() const;
434 %disownarg
( wxAuiDockArt
* art_provider
);
436 void SetArtProvider(wxAuiDockArt
* art_provider
);
437 wxAuiDockArt
* GetArtProvider() const;
439 wxAuiPaneInfo
& GetPane(wxWindow
* window
);
440 wxAuiPaneInfo
& GetPane(const wxString
& name
);
441 wxAuiPaneInfoArray
& GetAllPanes();
443 bool AddPane(wxWindow
* window
,
444 const wxAuiPaneInfo
& pane_info
);
446 bool AddPane(wxWindow
* window
,
447 const wxAuiPaneInfo
& pane_info
,
448 const wxPoint
& drop_pos
);
450 bool AddPane(wxWindow
* window
,
451 int direction
= wxLEFT
,
452 const wxString
& caption
= wxEmptyString
);
454 bool InsertPane(wxWindow
* window
,
455 const wxAuiPaneInfo
& insert_location
,
456 int insert_level
= wxAUI_INSERT_PANE
);
458 bool DetachPane(wxWindow
* window
);
460 void ClosePane(wxAuiPaneInfo
& pane_info
);
461 void MaximizePane(wxAuiPaneInfo
& pane_info
);
462 void RestorePane(wxAuiPaneInfo
& pane_info
);
463 void RestoreMaximizedPane();
465 wxString
SavePaneInfo(wxAuiPaneInfo
& pane
);
466 void LoadPaneInfo(wxString pane_part
, wxAuiPaneInfo
&pane
);
468 wxString
SavePerspective();
470 bool LoadPerspective(const wxString
& perspective
,
477 virtual wxAuiFloatingFrame
* CreateFloatingFrame(wxWindow
* parent
, const wxAuiPaneInfo
& p
);
479 wxRect
CalculateHintRect(wxWindow
* pane_window
,
481 const wxPoint
& offset
);
483 void DrawHintRect(wxWindow
* pane_window
,
485 const wxPoint
& offset
);
487 virtual void ShowHint(const wxRect
& rect
);
488 virtual void HideHint();
492 // deprecated -- please use SetManagedWindow() and
493 // and GetManagedWindow() instead
495 wxDEPRECATED( void SetFrame(wxFrame
* frame
) );
496 wxDEPRECATED( wxFrame
* GetFrame() const );
500 void UpdateHintWindowConfig();
502 void DoFrameLayout();
504 void LayoutAddPane(wxSizer
* container
,
507 wxAuiDockUIPartArray
& uiparts
,
510 void LayoutAddDock(wxSizer
* container
,
512 wxAuiDockUIPartArray
& uiparts
,
515 wxSizer
* LayoutAll(wxAuiPaneInfoArray
& panes
,
516 wxAuiDockInfoArray
& docks
,
517 wxAuiDockUIPartArray
& uiparts
,
518 bool spacer_only
= false);
520 virtual bool ProcessDockResult(wxAuiPaneInfo
& target
,
521 const wxAuiPaneInfo
& new_pos
);
523 bool DoDrop(wxAuiDockInfoArray
& docks
,
524 wxAuiPaneInfoArray
& panes
,
527 const wxPoint
& action_offset
= wxPoint(0,0));
529 wxAuiPaneInfo
& LookupPane(wxWindow
* window
);
530 wxAuiPaneInfo
& LookupPane(const wxString
& name
);
531 wxAuiDockUIPart
* HitTest(int x
, int y
);
532 wxAuiDockUIPart
* GetPanePart(wxWindow
* pane
);
533 int GetDockPixelOffset(wxAuiPaneInfo
& test
);
534 void OnFloatingPaneMoveStart(wxWindow
* window
);
535 void OnFloatingPaneMoving(wxWindow
* window
, wxDirection dir
);
536 void OnFloatingPaneMoved(wxWindow
* window
, wxDirection dir
);
537 void OnFloatingPaneActivated(wxWindow
* window
);
538 void OnFloatingPaneClosed(wxWindow
* window
, wxCloseEvent
& evt
);
539 void OnFloatingPaneResized(wxWindow
* window
, const wxSize
& size
);
540 void Render(wxDC
* dc
);
541 void Repaint(wxDC
* dc
= NULL
);
542 void ProcessMgrEvent(wxAuiManagerEvent
& event
);
543 void UpdateButtonOnScreen(wxAuiDockUIPart
* button_ui_part
,
544 const wxMouseEvent
& event
);
545 void GetPanePositionsAndSizes(wxAuiDockInfo
& dock
,
546 wxArrayInt
& positions
,
552 // public events (which can be invoked externally)
553 void OnRender(wxAuiManagerEvent
& evt
);
554 void OnPaneButton(wxAuiManagerEvent
& evt
);
559 void OnPaint(wxPaintEvent
& evt
);
560 void OnEraseBackground(wxEraseEvent
& evt
);
561 void OnSize(wxSizeEvent
& evt
);
562 void OnSetCursor(wxSetCursorEvent
& evt
);
563 void OnLeftDown(wxMouseEvent
& evt
);
564 void OnLeftUp(wxMouseEvent
& evt
);
565 void OnMotion(wxMouseEvent
& evt
);
566 void OnLeaveWindow(wxMouseEvent
& evt
);
567 void OnChildFocus(wxChildFocusEvent
& evt
);
568 void OnHintFadeTimer(wxTimerEvent
& evt
);
578 actionDragToolbarPane
,
579 actionDragFloatingPane
584 wxWindow
* m_frame
; // the window being managed
585 wxAuiDockArt
* m_art
; // dock art object which does all drawing
586 unsigned int m_flags
; // manager flags wxAUI_MGR_*
588 wxAuiPaneInfoArray m_panes
; // array of panes structures
589 wxAuiDockInfoArray m_docks
; // array of docks structures
590 wxAuiDockUIPartArray m_uiparts
; // array of UI parts (captions, buttons, etc)
592 int m_action
; // current mouse action
593 wxPoint m_action_start
; // position where the action click started
594 wxPoint m_action_offset
; // offset from upper left of the item clicked
595 wxAuiDockUIPart
* m_action_part
; // ptr to the part the action happened to
596 wxWindow
* m_action_window
; // action frame or window (NULL if none)
597 wxRect m_action_hintrect
; // hint rectangle for the action
599 bool m_has_maximized
;
601 wxAuiDockUIPart
* m_hover_button
;// button uipart being hovered over
602 wxRect m_last_hint
; // last hint rectangle
603 wxPoint m_last_mouse_move
; // last mouse move position (see OnMotion)
605 wxFrame
* m_hint_wnd
; // transparent hint window, if supported by platform
606 wxTimer m_hint_fadetimer
; // transparent fade timer
607 wxByte m_hint_fadeamt
; // transparent fade amount
608 wxByte m_hint_fademax
; // maximum value of hint fade
611 DECLARE_EVENT_TABLE()
617 // event declarations/classes
619 class WXDLLIMPEXP_AUI wxAuiManagerEvent
: public wxEvent
622 wxAuiManagerEvent(wxEventType type
=wxEVT_NULL
) : wxEvent(0, type
)
631 wxAuiManagerEvent(const wxAuiManagerEvent
& c
) : wxEvent(c
)
635 veto_flag
= c
.veto_flag
;
636 canveto_flag
= c
.canveto_flag
;
640 wxEvent
*Clone() const { return new wxAuiManagerEvent(*this); }
642 void SetPane(wxAuiPaneInfo
* p
) { pane
= p
; }
643 void SetButton(int b
) { button
= b
; }
644 void SetDC(wxDC
* pdc
) { dc
= pdc
; }
646 wxAuiPaneInfo
* GetPane() { return pane
; }
647 int GetButton() { return button
; }
648 wxDC
* GetDC() { return dc
; }
650 void Veto(bool veto
= true) { veto_flag
= veto
; }
651 bool GetVeto() const { return veto_flag
; }
652 void SetCanVeto(bool can_veto
) { canveto_flag
= can_veto
; }
653 bool CanVeto() const { return canveto_flag
&& veto_flag
; }
664 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxAuiManagerEvent
)
669 class WXDLLIMPEXP_AUI wxAuiDockInfo
685 wxAuiDockInfo(const wxAuiDockInfo
& c
)
687 dock_direction
= c
.dock_direction
;
688 dock_layer
= c
.dock_layer
;
689 dock_row
= c
.dock_row
;
691 min_size
= c
.min_size
;
692 resizable
= c
.resizable
;
699 wxAuiDockInfo
& operator=(const wxAuiDockInfo
& c
)
701 dock_direction
= c
.dock_direction
;
702 dock_layer
= c
.dock_layer
;
703 dock_row
= c
.dock_row
;
705 min_size
= c
.min_size
;
706 resizable
= c
.resizable
;
715 bool IsOk() const { return (dock_direction
!= 0) ? true : false; }
716 bool IsHorizontal() const { return (dock_direction
== wxAUI_DOCK_TOP
||
717 dock_direction
== wxAUI_DOCK_BOTTOM
) ? true:false; }
718 bool IsVertical() const { return (dock_direction
== wxAUI_DOCK_LEFT
||
719 dock_direction
== wxAUI_DOCK_RIGHT
||
720 dock_direction
== wxAUI_DOCK_CENTER
) ? true:false; }
722 wxAuiPaneInfoPtrArray panes
; // array of panes
723 wxRect rect
; // current rectangle
724 int dock_direction
; // dock direction (top, bottom, left, right, center)
725 int dock_layer
; // layer number (0 = innermost layer)
726 int dock_row
; // row number on the docking bar (0 = first row)
727 int size
; // size of the dock
728 int min_size
; // minimum size of a dock (0 if there is no min)
729 bool resizable
; // flag indicating whether the dock is resizable
730 bool toolbar
; // flag indicating dock contains only toolbars
731 bool fixed
; // flag indicating that the dock operates on
732 // absolute coordinates as opposed to proportional
736 class WXDLLIMPEXP_AUI wxAuiDockUIPart
752 int type
; // ui part type (see enum above)
753 int orientation
; // orientation (either wxHORIZONTAL or wxVERTICAL)
754 wxAuiDockInfo
* dock
; // which dock the item is associated with
755 wxAuiPaneInfo
* pane
; // which pane the item is associated with
756 wxAuiPaneButton
* button
; // which pane button the item is associated with
757 wxSizer
* cont_sizer
; // the part's containing sizer
758 wxSizerItem
* sizer_item
; // the sizer item of the part
759 wxRect rect
; // client coord rectangle of the part itself
763 class WXDLLIMPEXP_AUI wxAuiPaneButton
766 int button_id
; // id of the button (e.g. buttonClose)
772 // wx event machinery
774 BEGIN_DECLARE_EVENT_TYPES()
775 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_AUI_PANEBUTTON
, 0)
776 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_AUI_PANECLOSE
, 0)
777 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_AUI_PANEMAXIMIZE
, 0)
778 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_AUI_PANERESTORE
, 0)
779 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_AUI_RENDER
, 0)
780 END_DECLARE_EVENT_TYPES()
782 typedef void (wxEvtHandler::*wxAuiManagerEventFunction
)(wxAuiManagerEvent
&);
784 #define wxAuiManagerEventHandler(func) \
785 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxAuiManagerEventFunction, &func)
787 #define EVT_AUI_PANEBUTTON(func) \
788 wx__DECLARE_EVT0(wxEVT_AUI_PANEBUTTON, wxAuiManagerEventHandler(func))
789 #define EVT_AUI_PANECLOSE(func) \
790 wx__DECLARE_EVT0(wxEVT_AUI_PANECLOSE, wxAuiManagerEventHandler(func))
791 #define EVT_AUI_PANEMAXIMIZE(func) \
792 wx__DECLARE_EVT0(wxEVT_AUI_PANEMAXIMIZE, wxAuiManagerEventHandler(func))
793 #define EVT_AUI_PANERESTORE(func) \
794 wx__DECLARE_EVT0(wxEVT_AUI_PANERESTORE, wxAuiManagerEventHandler(func))
795 #define EVT_AUI_RENDER(func) \
796 wx__DECLARE_EVT0(wxEVT_AUI_RENDER, wxAuiManagerEventHandler(func))
800 %constant wxEventType wxEVT_AUI_PANEBUTTON
;
801 %constant wxEventType wxEVT_AUI_PANECLOSE
;
802 %constant wxEventType wxEVT_AUI_PANEMAXIMIZE
;
803 %constant wxEventType wxEVT_AUI_PANERESTORE
;
804 %constant wxEventType wxEVT_AUI_RENDER
;
807 EVT_AUI_PANEBUTTON
= wx
.PyEventBinder( wxEVT_AUI_PANEBUTTON
)
808 EVT_AUI_PANECLOSE
= wx
.PyEventBinder( wxEVT_AUI_PANECLOSE
)
809 EVT_AUI_PANEMAXIMIZE
= wx
.PyEventBinder( wxEVT_AUI_PANEMAXIMIZE
)
810 EVT_AUI_PANERESTORE
= wx
.PyEventBinder( wxEVT_AUI_PANERESTORE
)
811 EVT_AUI_RENDER
= wx
.PyEventBinder( wxEVT_AUI_RENDER
)
816 #endif //_WX_FRAMEMANAGER_H_