1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/aui/framemanager.cpp
3 // Purpose: wxaui: wx advanced user interface - docking window manager
4 // Author: Benjamin I. Williams
8 // Copyright: (C) Copyright 2005-2006, Kirix Corporation, All Rights Reserved
9 // Licence: wxWindows Library Licence, Version 3.1
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
28 #include "wx/aui/framemanager.h"
29 #include "wx/aui/dockart.h"
30 #include "wx/aui/floatpane.h"
34 #include "wx/settings.h"
36 #include "wx/dcclient.h"
37 #include "wx/dcscreen.h"
38 #include "wx/toolbar.h"
43 WX_CHECK_BUILD_OPTIONS("wxAUI")
45 #include "wx/arrimpl.cpp"
46 WX_DECLARE_OBJARRAY(wxRect
, wxAuiRectArray
);
47 WX_DEFINE_OBJARRAY(wxAuiRectArray
)
48 WX_DEFINE_OBJARRAY(wxDockUIPartArray
)
49 WX_DEFINE_OBJARRAY(wxDockInfoArray
)
50 WX_DEFINE_OBJARRAY(wxPaneButtonArray
)
51 WX_DEFINE_OBJARRAY(wxPaneInfoArray
)
53 wxPaneInfo wxNullPaneInfo
;
54 wxDockInfo wxNullDockInfo
;
55 DEFINE_EVENT_TYPE(wxEVT_AUI_PANEBUTTON
)
56 DEFINE_EVENT_TYPE(wxEVT_AUI_PANECLOSE
)
57 DEFINE_EVENT_TYPE(wxEVT_AUI_RENDER
)
60 // a few defines to avoid nameclashes
61 #define __MAC_OS_X_MEMORY_MANAGER_CLEAN__ 1
63 #include "wx/mac/private.h"
66 IMPLEMENT_DYNAMIC_CLASS(wxFrameManagerEvent
, wxEvent
)
68 class wxPseudoTransparentFrame
: public wxFrame
71 wxPseudoTransparentFrame(wxWindow
* parent
= NULL
,
72 wxWindowID id
= wxID_ANY
,
73 const wxString
& title
= wxEmptyString
,
74 const wxPoint
& pos
= wxDefaultPosition
,
75 const wxSize
& size
= wxDefaultSize
,
76 long style
= wxDEFAULT_FRAME_STYLE
,
77 const wxString
&name
= wxT("frame"))
78 : wxFrame(parent
, id
, title
, pos
, size
, style
| wxFRAME_SHAPED
, name
)
80 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
87 m_CanSetShape
= false; // have to wait for window create event on GTK
91 m_Region
= wxRegion(0, 0, 0, 0);
95 virtual bool SetTransparent(wxByte alpha
)
99 int w
=100; // some defaults
101 GetClientSize(&w
, &h
);
107 // m_Region.Union(0, 0, 1, m_MaxWidth);
110 for (int y
=0; y
<m_MaxHeight
; y
++)
112 // Reverse the order of the bottom 4 bits
113 int j
=((y
&8)?1:0)|((y
&4)?2:0)|((y
&2)?4:0)|((y
&1)?8:0);
114 if ((j
*16+8)<m_Amount
)
115 m_Region
.Union(0, y
, m_MaxWidth
, 1);
124 void OnPaint(wxPaintEvent
& WXUNUSED(event
))
128 if (m_Region
.IsEmpty())
132 dc
.SetBrush(wxColour(128, 192, 255));
134 dc
.SetBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_ACTIVECAPTION
));
136 dc
.SetPen(*wxTRANSPARENT_PEN
);
138 wxRegionIterator
upd(GetUpdateRegion()); // get the update rect list
142 wxRect
rect(upd
.GetRect());
143 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
150 void OnWindowCreate(wxWindowCreateEvent
& WXUNUSED(event
))
157 void OnSize(wxSizeEvent
& event
)
159 // We sometimes get surplus size events
160 if ((event
.GetSize().GetWidth() == m_lastWidth
) &&
161 (event
.GetSize().GetHeight() == m_lastHeight
))
166 m_lastWidth
= event
.GetSize().GetWidth();
167 m_lastHeight
= event
.GetSize().GetHeight();
169 SetTransparent(m_Amount
);
170 m_Region
.Intersect(0, 0, event
.GetSize().GetWidth(),
171 event
.GetSize().GetHeight());
182 int m_lastWidth
,m_lastHeight
;
186 DECLARE_DYNAMIC_CLASS(wxPseudoTransparentFrame
)
187 DECLARE_EVENT_TABLE()
191 IMPLEMENT_DYNAMIC_CLASS(wxPseudoTransparentFrame
, wxFrame
)
193 BEGIN_EVENT_TABLE(wxPseudoTransparentFrame
, wxFrame
)
194 EVT_PAINT(wxPseudoTransparentFrame::OnPaint
)
195 EVT_SIZE(wxPseudoTransparentFrame::OnSize
)
197 EVT_WINDOW_CREATE(wxPseudoTransparentFrame::OnWindowCreate
)
202 // -- static utility functions --
204 static wxBitmap
wxPaneCreateStippleBitmap()
206 unsigned char data
[] = { 0,0,0,192,192,192, 192,192,192,0,0,0 };
207 wxImage
img(2,2,data
,true);
208 return wxBitmap(img
);
211 static void DrawResizeHint(wxDC
& dc
, const wxRect
& rect
)
213 wxBitmap stipple
= wxPaneCreateStippleBitmap();
214 wxBrush
brush(stipple
);
216 dc
.SetPen(*wxTRANSPARENT_PEN
);
218 dc
.SetLogicalFunction(wxXOR
);
219 dc
.DrawRectangle(rect
);
224 // CopyDocksAndPanes() - this utility function creates copies of
225 // the dock and pane info. wxDockInfo's usually contain pointers
226 // to wxPaneInfo classes, thus this function is necessary to reliably
227 // reconstruct that relationship in the new dock info and pane info arrays
229 static void CopyDocksAndPanes(wxDockInfoArray
& dest_docks
,
230 wxPaneInfoArray
& dest_panes
,
231 const wxDockInfoArray
& src_docks
,
232 const wxPaneInfoArray
& src_panes
)
234 dest_docks
= src_docks
;
235 dest_panes
= src_panes
;
236 int i
, j
, k
, dock_count
, pc1
, pc2
;
237 for (i
= 0, dock_count
= dest_docks
.GetCount(); i
< dock_count
; ++i
)
239 wxDockInfo
& dock
= dest_docks
.Item(i
);
240 for (j
= 0, pc1
= dock
.panes
.GetCount(); j
< pc1
; ++j
)
241 for (k
= 0, pc2
= src_panes
.GetCount(); k
< pc2
; ++k
)
242 if (dock
.panes
.Item(j
) == &src_panes
.Item(k
))
243 dock
.panes
.Item(j
) = &dest_panes
.Item(k
);
247 // GetMaxLayer() is an internal function which returns
248 // the highest layer inside the specified dock
249 static int GetMaxLayer(const wxDockInfoArray
& docks
, int dock_direction
)
251 int i
, dock_count
, max_layer
= 0;
252 for (i
= 0, dock_count
= docks
.GetCount(); i
< dock_count
; ++i
)
254 wxDockInfo
& dock
= docks
.Item(i
);
255 if (dock
.dock_direction
== dock_direction
&&
256 dock
.dock_layer
> max_layer
&& !dock
.fixed
)
257 max_layer
= dock
.dock_layer
;
263 // GetMaxRow() is an internal function which returns
264 // the highest layer inside the specified dock
265 static int GetMaxRow(const wxPaneInfoArray
& panes
, int direction
, int layer
)
267 int i
, pane_count
, max_row
= 0;
268 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
270 wxPaneInfo
& pane
= panes
.Item(i
);
271 if (pane
.dock_direction
== direction
&&
272 pane
.dock_layer
== layer
&&
273 pane
.dock_row
> max_row
)
274 max_row
= pane
.dock_row
;
281 // DoInsertDockLayer() is an internal function that inserts a new dock
282 // layer by incrementing all existing dock layer values by one
283 static void DoInsertDockLayer(wxPaneInfoArray
& panes
,
288 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
290 wxPaneInfo
& pane
= panes
.Item(i
);
291 if (!pane
.IsFloating() &&
292 pane
.dock_direction
== dock_direction
&&
293 pane
.dock_layer
>= dock_layer
)
298 // DoInsertDockLayer() is an internal function that inserts a new dock
299 // row by incrementing all existing dock row values by one
300 static void DoInsertDockRow(wxPaneInfoArray
& panes
,
306 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
308 wxPaneInfo
& pane
= panes
.Item(i
);
309 if (!pane
.IsFloating() &&
310 pane
.dock_direction
== dock_direction
&&
311 pane
.dock_layer
== dock_layer
&&
312 pane
.dock_row
>= dock_row
)
317 // DoInsertDockLayer() is an internal function that inserts a space for
318 // another dock pane by incrementing all existing dock row values by one
319 static void DoInsertPane(wxPaneInfoArray
& panes
,
326 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
328 wxPaneInfo
& pane
= panes
.Item(i
);
329 if (!pane
.IsFloating() &&
330 pane
.dock_direction
== dock_direction
&&
331 pane
.dock_layer
== dock_layer
&&
332 pane
.dock_row
== dock_row
&&
333 pane
.dock_pos
>= dock_pos
)
338 // FindDocks() is an internal function that returns a list of docks which meet
339 // the specified conditions in the parameters and returns a sorted array
340 // (sorted by layer and then row)
341 static void FindDocks(wxDockInfoArray
& docks
,
345 wxDockInfoPtrArray
& arr
)
347 int begin_layer
= dock_layer
;
348 int end_layer
= dock_layer
;
349 int begin_row
= dock_row
;
350 int end_row
= dock_row
;
351 int dock_count
= docks
.GetCount();
352 int layer
, row
, i
, max_row
= 0, max_layer
= 0;
354 // discover the maximum dock layer and the max row
355 for (i
= 0; i
< dock_count
; ++i
)
357 max_row
= wxMax(max_row
, docks
.Item(i
).dock_row
);
358 max_layer
= wxMax(max_layer
, docks
.Item(i
).dock_layer
);
361 // if no dock layer was specified, search all dock layers
362 if (dock_layer
== -1)
365 end_layer
= max_layer
;
368 // if no dock row was specified, search all dock row
377 for (layer
= begin_layer
; layer
<= end_layer
; ++layer
)
378 for (row
= begin_row
; row
<= end_row
; ++row
)
379 for (i
= 0; i
< dock_count
; ++i
)
381 wxDockInfo
& d
= docks
.Item(i
);
382 if (dock_direction
== -1 || dock_direction
== d
.dock_direction
)
384 if (d
.dock_layer
== layer
&& d
.dock_row
== row
)
390 // FindPaneInDock() looks up a specified window pointer inside a dock.
391 // If found, the corresponding wxPaneInfo pointer is returned, otherwise NULL.
392 static wxPaneInfo
* FindPaneInDock(const wxDockInfo
& dock
, wxWindow
* window
)
394 int i
, count
= dock
.panes
.GetCount();
395 for (i
= 0; i
< count
; ++i
)
397 wxPaneInfo
* p
= dock
.panes
.Item(i
);
398 if (p
->window
== window
)
404 // RemovePaneFromDocks() removes a pane window from all docks
405 // with a possible exception specified by parameter "ex_cept"
406 static void RemovePaneFromDocks(wxDockInfoArray
& docks
,
408 wxDockInfo
* ex_cept
= NULL
)
411 for (i
= 0, dock_count
= docks
.GetCount(); i
< dock_count
; ++i
)
413 wxDockInfo
& d
= docks
.Item(i
);
416 wxPaneInfo
* pi
= FindPaneInDock(d
, pane
.window
);
422 // RenumberDockRows() takes a dock and assigns sequential numbers
423 // to existing rows. Basically it takes out the gaps; so if a
424 // dock has rows with numbers 0,2,5, they will become 0,1,2
425 static void RenumberDockRows(wxDockInfoPtrArray
& docks
)
427 int i
, dock_count
, j
, pane_count
;
428 for (i
= 0, dock_count
= docks
.GetCount(); i
< dock_count
; ++i
)
430 wxDockInfo
& dock
= *docks
.Item(i
);
432 for (j
= 0, pane_count
= dock
.panes
.GetCount(); j
< pane_count
; ++j
)
433 dock
.panes
.Item(j
)->dock_row
= i
;
438 // SetActivePane() sets the active pane, as well as cycles through
439 // every other pane and makes sure that all others' active flags
441 static void SetActivePane(wxPaneInfoArray
& panes
, wxWindow
* active_pane
)
444 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
446 wxPaneInfo
& pane
= panes
.Item(i
);
447 pane
.state
&= ~wxPaneInfo::optionActive
;
448 if (pane
.window
== active_pane
)
449 pane
.state
|= wxPaneInfo::optionActive
;
454 // this function is used to sort panes by dock position
455 static int PaneSortFunc(wxPaneInfo
** p1
, wxPaneInfo
** p2
)
457 return ((*p1
)->dock_pos
< (*p2
)->dock_pos
) ? -1 : 1;
461 // -- wxFrameManager class implementation --
464 BEGIN_EVENT_TABLE(wxFrameManager
, wxEvtHandler
)
465 EVT_AUI_PANEBUTTON(wxFrameManager::OnPaneButton
)
466 EVT_AUI_RENDER(wxFrameManager::OnRender
)
467 EVT_PAINT(wxFrameManager::OnPaint
)
468 EVT_ERASE_BACKGROUND(wxFrameManager::OnEraseBackground
)
469 EVT_SIZE(wxFrameManager::OnSize
)
470 EVT_SET_CURSOR(wxFrameManager::OnSetCursor
)
471 EVT_LEFT_DOWN(wxFrameManager::OnLeftDown
)
472 EVT_LEFT_UP(wxFrameManager::OnLeftUp
)
473 EVT_MOTION(wxFrameManager::OnMotion
)
474 EVT_LEAVE_WINDOW(wxFrameManager::OnLeaveWindow
)
475 EVT_CHILD_FOCUS(wxFrameManager::OnChildFocus
)
476 EVT_TIMER(101, wxFrameManager::OnHintFadeTimer
)
480 wxFrameManager::wxFrameManager(wxWindow
* managed_wnd
, unsigned int flags
)
482 m_action
= actionNone
;
483 m_last_mouse_move
= wxPoint();
484 m_hover_button
= NULL
;
485 m_art
= new wxDefaultDockArt
;
492 SetManagedWindow(managed_wnd
);
496 wxFrameManager::~wxFrameManager()
501 // Creates a floating frame for the windows
502 wxFloatingPane
* wxFrameManager::CreateFloatingFrame(wxWindow
* parent
, const wxPaneInfo
& p
)
504 return new wxFloatingPane(parent
, this, p
);
507 // GetPane() looks up a wxPaneInfo structure based
508 // on the supplied window pointer. Upon failure, GetPane()
509 // returns an empty wxPaneInfo, a condition which can be checked
510 // by calling wxPaneInfo::IsOk().
512 // The pane info's structure may then be modified. Once a pane's
513 // info is modified, wxFrameManager::Update() must be called to
514 // realize the changes in the UI.
516 wxPaneInfo
& wxFrameManager::GetPane(wxWindow
* window
)
519 for (i
= 0, pane_count
= m_panes
.GetCount(); i
< pane_count
; ++i
)
521 wxPaneInfo
& p
= m_panes
.Item(i
);
522 if (p
.window
== window
)
525 return wxNullPaneInfo
;
528 // this version of GetPane() looks up a pane based on a
529 // 'pane name', see above comment for more info
530 wxPaneInfo
& wxFrameManager::GetPane(const wxString
& name
)
533 for (i
= 0, pane_count
= m_panes
.GetCount(); i
< pane_count
; ++i
)
535 wxPaneInfo
& p
= m_panes
.Item(i
);
539 return wxNullPaneInfo
;
542 // GetAllPanes() returns a reference to all the pane info structures
543 wxPaneInfoArray
& wxFrameManager::GetAllPanes()
548 // HitTest() is an internal function which determines
549 // which UI item the specified coordinates are over
550 // (x,y) specify a position in client coordinates
551 wxDockUIPart
* wxFrameManager::HitTest(int x
, int y
)
553 wxDockUIPart
* result
= NULL
;
556 for (i
= 0, part_count
= m_uiparts
.GetCount(); i
< part_count
; ++i
)
558 wxDockUIPart
* item
= &m_uiparts
.Item(i
);
560 // we are not interested in typeDock, because this space
561 // isn't used to draw anything, just for measurements;
562 // besides, the entire dock area is covered with other
563 // rectangles, which we are interested in.
564 if (item
->type
== wxDockUIPart::typeDock
)
567 // if we already have a hit on a more specific item, we are not
568 // interested in a pane hit. If, however, we don't already have
569 // a hit, returning a pane hit is necessary for some operations
570 if ((item
->type
== wxDockUIPart::typePane
||
571 item
->type
== wxDockUIPart::typePaneBorder
) && result
)
574 // if the point is inside the rectangle, we have a hit
575 if (item
->rect
.Contains(x
,y
))
583 // SetFlags() and GetFlags() allow the owner to set various
584 // options which are global to wxFrameManager
585 void wxFrameManager::SetFlags(unsigned int flags
)
587 // find out if we have to call UpdateHintWindowConfig()
588 bool update_hint_wnd
= false;
589 unsigned int hint_mask
= wxAUI_MGR_TRANSPARENT_HINT
|
590 wxAUI_MGR_VENETIAN_BLINDS_HINT
|
591 wxAUI_MGR_RECTANGLE_HINT
;
592 if ((flags
& hint_mask
) != (m_flags
& hint_mask
))
593 update_hint_wnd
= true;
601 UpdateHintWindowConfig();
605 unsigned int wxFrameManager::GetFlags() const
611 // don't use these anymore as they are deprecated
612 // use Set/GetManagedFrame() instead
613 void wxFrameManager::SetFrame(wxFrame
* frame
)
615 SetManagedWindow((wxWindow
*)frame
);
618 wxFrame
* wxFrameManager::GetFrame() const
620 return (wxFrame
*)m_frame
;
624 void wxFrameManager::UpdateHintWindowConfig()
626 // find out if the the system can do transparent frames
627 bool can_do_transparent
= false;
629 wxWindow
* w
= m_frame
;
632 if (w
->IsKindOf(CLASSINFO(wxFrame
)))
634 wxFrame
* f
= static_cast<wxFrame
*>(w
);
635 #if wxCHECK_VERSION(2,7,0)
636 can_do_transparent
= f
->CanSetTransparent();
644 // if there is an existing hint window, delete it
647 m_hint_wnd
->Destroy();
654 if ((m_flags
& wxAUI_MGR_TRANSPARENT_HINT
) && can_do_transparent
)
656 // Make a window to use for a transparent hint
657 #if defined(__WXMSW__) || defined(__WXGTK__)
658 m_hint_wnd
= new wxFrame(m_frame
, wxID_ANY
, wxEmptyString
,
659 wxDefaultPosition
, wxSize(1,1),
660 wxFRAME_TOOL_WINDOW
|
661 wxFRAME_FLOAT_ON_PARENT
|
665 m_hint_wnd
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_ACTIVECAPTION
));
666 #elif defined(__WXMAC__)
667 // Using a miniframe with float and tool styles keeps the parent
668 // frame activated and highlighted as such...
669 m_hint_wnd
= new wxMiniFrame(m_frame
, wxID_ANY
, wxEmptyString
,
670 wxDefaultPosition
, wxSize(1,1),
671 wxFRAME_FLOAT_ON_PARENT
672 | wxFRAME_TOOL_WINDOW
);
674 // Can't set the bg colour of a Frame in wxMac
675 wxPanel
* p
= new wxPanel(m_hint_wnd
);
677 // The default wxSYS_COLOUR_ACTIVECAPTION colour is a light silver
678 // color that is really hard to see, especially transparent.
679 // Until a better system color is decided upon we'll just use
681 p
->SetBackgroundColour(*wxBLUE
);
687 if ((m_flags
& wxAUI_MGR_TRANSPARENT_HINT
) != 0 ||
688 (m_flags
& wxAUI_MGR_VENETIAN_BLINDS_HINT
) != 0)
690 // system can't support transparent fade, or the venetian
691 // blinds effect was explicitly requested
692 m_hint_wnd
= new wxPseudoTransparentFrame(m_frame
,
697 wxFRAME_TOOL_WINDOW
|
698 wxFRAME_FLOAT_ON_PARENT
|
701 m_hint_fademax
= 128;
707 // SetManagedWindow() is usually called once when the frame
708 // manager class is being initialized. "frame" specifies
709 // the frame which should be managed by the frame mananger
710 void wxFrameManager::SetManagedWindow(wxWindow
* wnd
)
712 wxASSERT_MSG(wnd
, wxT("specified window must be non-NULL"));
715 m_frame
->PushEventHandler(this);
718 // if the owner is going to manage an MDI parent frame,
719 // we need to add the MDI client window as the default
722 if (m_frame
->IsKindOf(CLASSINFO(wxMDIParentFrame
)))
724 wxMDIParentFrame
* mdi_frame
= (wxMDIParentFrame
*)m_frame
;
725 wxWindow
* client_window
= mdi_frame
->GetClientWindow();
727 wxASSERT_MSG(client_window
, wxT("Client window is NULL!"));
729 AddPane(client_window
,
730 wxPaneInfo().Name(wxT("mdiclient")).
731 CenterPane().PaneBorder(false));
735 UpdateHintWindowConfig();
739 // UnInit() must be called, usually in the destructor
740 // of the frame class. If it is not called, usually this
741 // will result in a crash upon program exit
742 void wxFrameManager::UnInit()
744 m_frame
->RemoveEventHandler(this);
747 // GetManagedWindow() returns the window pointer being managed
748 wxWindow
* wxFrameManager::GetManagedWindow() const
753 wxDockArt
* wxFrameManager::GetArtProvider() const
758 void wxFrameManager::ProcessMgrEvent(wxFrameManagerEvent
& event
)
760 // first, give the owner frame a chance to override
763 if (m_frame
->ProcessEvent(event
))
770 // SetArtProvider() instructs wxFrameManager to use the
771 // specified art provider for all drawing calls. This allows
772 // plugable look-and-feel features. The pointer that is
773 // passed to this method subsequently belongs to wxFrameManager,
774 // and is deleted in the frame manager destructor
775 void wxFrameManager::SetArtProvider(wxDockArt
* art_provider
)
777 // delete the last art provider, if any
780 // assign the new art provider
781 m_art
= art_provider
;
785 bool wxFrameManager::AddPane(wxWindow
* window
, const wxPaneInfo
& pane_info
)
787 // check if the pane has a valid window
791 // check if the pane already exists
792 if (GetPane(pane_info
.window
).IsOk())
795 m_panes
.Add(pane_info
);
797 wxPaneInfo
& pinfo
= m_panes
.Last();
799 // set the pane window
800 pinfo
.window
= window
;
802 // if the pane's name identifier is blank, create a random string
803 if (pinfo
.name
.empty())
805 pinfo
.name
.Printf(wxT("%08lx%08x%08x%08lx"),
806 ((unsigned long)pinfo
.window
) & 0xffffffff,
807 (unsigned int)time(NULL
),
809 (unsigned int)GetTickCount(),
811 (unsigned int)clock(),
813 (unsigned long)m_panes
.GetCount());
816 // set initial proportion (if not already set)
817 if (pinfo
.dock_proportion
== 0)
818 pinfo
.dock_proportion
= 100000;
820 if (pinfo
.HasCloseButton() &&
821 pinfo
.buttons
.size() == 0)
824 button
.button_id
= wxPaneInfo::buttonClose
;
825 pinfo
.buttons
.Add(button
);
828 if (pinfo
.best_size
== wxDefaultSize
&&
831 pinfo
.best_size
= pinfo
.window
->GetClientSize();
833 if (pinfo
.window
->IsKindOf(CLASSINFO(wxToolBar
)))
835 // GetClientSize() doesn't get the best size for
836 // a toolbar under some newer versions of wxWidgets,
837 // so use GetBestSize()
838 pinfo
.best_size
= pinfo
.window
->GetBestSize();
840 // for some reason, wxToolBar::GetBestSize() is returning
841 // a size that is a pixel shy of the correct amount.
842 // I believe this to be the correct action, until
843 // wxToolBar::GetBestSize() is fixed. Is this assumption
848 if (pinfo
.min_size
!= wxDefaultSize
)
850 if (pinfo
.best_size
.x
< pinfo
.min_size
.x
)
851 pinfo
.best_size
.x
= pinfo
.min_size
.x
;
852 if (pinfo
.best_size
.y
< pinfo
.min_size
.y
)
853 pinfo
.best_size
.y
= pinfo
.min_size
.y
;
860 bool wxFrameManager::AddPane(wxWindow
* window
,
862 const wxString
& caption
)
865 pinfo
.Caption(caption
);
868 case wxTOP
: pinfo
.Top(); break;
869 case wxBOTTOM
: pinfo
.Bottom(); break;
870 case wxLEFT
: pinfo
.Left(); break;
871 case wxRIGHT
: pinfo
.Right(); break;
872 case wxCENTER
: pinfo
.CenterPane(); break;
874 return AddPane(window
, pinfo
);
877 bool wxFrameManager::AddPane(wxWindow
* window
,
878 const wxPaneInfo
& pane_info
,
879 const wxPoint
& drop_pos
)
881 if (!AddPane(window
, pane_info
))
884 wxPaneInfo
& pane
= GetPane(window
);
886 DoDrop(m_docks
, m_panes
, pane
, drop_pos
, wxPoint(0,0));
891 bool wxFrameManager::InsertPane(wxWindow
* window
, const wxPaneInfo
& pane_info
,
894 // shift the panes around, depending on the insert level
895 switch (insert_level
)
897 case wxAUI_INSERT_PANE
:
898 DoInsertPane(m_panes
,
899 pane_info
.dock_direction
,
900 pane_info
.dock_layer
,
904 case wxAUI_INSERT_ROW
:
905 DoInsertDockRow(m_panes
,
906 pane_info
.dock_direction
,
907 pane_info
.dock_layer
,
910 case wxAUI_INSERT_DOCK
:
911 DoInsertDockLayer(m_panes
,
912 pane_info
.dock_direction
,
913 pane_info
.dock_layer
);
917 // if the window already exists, we are basically just moving/inserting the
918 // existing window. If it doesn't exist, we need to add it and insert it
919 wxPaneInfo
& existing_pane
= GetPane(window
);
920 if (!existing_pane
.IsOk())
922 return AddPane(window
, pane_info
);
926 if (pane_info
.IsFloating())
928 existing_pane
.Float();
929 if (pane_info
.floating_pos
!= wxDefaultPosition
)
930 existing_pane
.FloatingPosition(pane_info
.floating_pos
);
931 if (pane_info
.floating_size
!= wxDefaultSize
)
932 existing_pane
.FloatingSize(pane_info
.floating_size
);
936 existing_pane
.Direction(pane_info
.dock_direction
);
937 existing_pane
.Layer(pane_info
.dock_layer
);
938 existing_pane
.Row(pane_info
.dock_row
);
939 existing_pane
.Position(pane_info
.dock_pos
);
947 // DetachPane() removes a pane from the frame manager. This
948 // method will not destroy the window that is removed.
949 bool wxFrameManager::DetachPane(wxWindow
* window
)
952 for (i
= 0, count
= m_panes
.GetCount(); i
< count
; ++i
)
954 wxPaneInfo
& p
= m_panes
.Item(i
);
955 if (p
.window
== window
)
959 // we have a floating frame which is being detached. We need to
960 // reparent it to m_frame and destroy the floating frame
963 p
.window
->SetSize(1,1);
965 if (p
.frame
->IsShown())
966 p
.frame
->Show(false);
968 // reparent to m_frame and destroy the pane
969 p
.window
->Reparent(m_frame
);
970 p
.frame
->SetSizer(NULL
);
975 // make sure there are no references to this pane in our uiparts,
976 // just in case the caller doesn't call Update() immediately after
977 // the DetachPane() call. This prevets obscure crashes which would
978 // happen at window repaint if the caller forgets to call Update()
980 for (pi
= 0, part_count
= (int)m_uiparts
.GetCount(); pi
< part_count
; ++pi
)
982 wxDockUIPart
& part
= m_uiparts
.Item(pi
);
985 m_uiparts
.RemoveAt(pi
);
999 // ClosePane() destroys or hides the pane depending on its
1001 void wxFrameManager::ClosePane(wxPaneInfo
& pane_info
)
1003 // first, hide the window
1004 if (pane_info
.window
&& pane_info
.window
->IsShown()) {
1005 pane_info
.window
->Show(false);
1008 // make sure that we are the parent of this window
1009 if(pane_info
.window
&& pane_info
.window
->GetParent() != m_frame
) {
1010 pane_info
.window
->Reparent(m_frame
);
1013 // if we have a frame, destroy it
1014 if(pane_info
.frame
) {
1015 pane_info
.frame
->Destroy();
1016 pane_info
.frame
= NULL
;
1019 // now we need to either destroy or hide the pane
1020 if(pane_info
.IsDestroyOnClose())
1022 wxWindow
* window
= pane_info
.window
;
1034 // EscapeDelimiters() changes ";" into "\;" and "|" into "\|"
1035 // in the input string. This is an internal functions which is
1036 // used for saving perspectives
1037 static wxString
EscapeDelimiters(const wxString
& s
)
1040 result
.Alloc(s
.length());
1041 const wxChar
* ch
= s
.c_str();
1044 if (*ch
== wxT(';') || *ch
== wxT('|'))
1045 result
+= wxT('\\');
1052 wxString
wxFrameManager::SavePaneInfo(wxPaneInfo
& pane
)
1054 wxString result
= wxT("name=");
1055 result
+= EscapeDelimiters(pane
.name
);
1058 result
+= wxT("caption=");
1059 result
+= EscapeDelimiters(pane
.caption
);
1062 result
+= wxString::Format(wxT("state=%u;"), pane
.state
);
1063 result
+= wxString::Format(wxT("dir=%d;"), pane
.dock_direction
);
1064 result
+= wxString::Format(wxT("layer=%d;"), pane
.dock_layer
);
1065 result
+= wxString::Format(wxT("row=%d;"), pane
.dock_row
);
1066 result
+= wxString::Format(wxT("pos=%d;"), pane
.dock_pos
);
1067 result
+= wxString::Format(wxT("prop=%d;"), pane
.dock_proportion
);
1068 result
+= wxString::Format(wxT("bestw=%d;"), pane
.best_size
.x
);
1069 result
+= wxString::Format(wxT("besth=%d;"), pane
.best_size
.y
);
1070 result
+= wxString::Format(wxT("minw=%d;"), pane
.min_size
.x
);
1071 result
+= wxString::Format(wxT("minh=%d;"), pane
.min_size
.y
);
1072 result
+= wxString::Format(wxT("maxw=%d;"), pane
.max_size
.x
);
1073 result
+= wxString::Format(wxT("maxh=%d;"), pane
.max_size
.y
);
1074 result
+= wxString::Format(wxT("floatx=%d;"), pane
.floating_pos
.x
);
1075 result
+= wxString::Format(wxT("floaty=%d;"), pane
.floating_pos
.y
);
1076 result
+= wxString::Format(wxT("floatw=%d;"), pane
.floating_size
.x
);
1077 result
+= wxString::Format(wxT("floath=%d"), pane
.floating_size
.y
);
1082 // Load a "pane" with the pane infor settings in pane_part
1083 void wxFrameManager::LoadPaneInfo(wxString pane_part
, wxPaneInfo
&pane
)
1085 // replace escaped characters so we can
1086 // split up the string easily
1087 pane_part
.Replace(wxT("\\|"), wxT("\a"));
1088 pane_part
.Replace(wxT("\\;"), wxT("\b"));
1092 wxString val_part
= pane_part
.BeforeFirst(wxT(';'));
1093 pane_part
= pane_part
.AfterFirst(wxT(';'));
1094 wxString val_name
= val_part
.BeforeFirst(wxT('='));
1095 wxString value
= val_part
.AfterFirst(wxT('='));
1096 val_name
.MakeLower();
1097 val_name
.Trim(true);
1098 val_name
.Trim(false);
1102 if (val_name
.empty())
1105 if (val_name
== wxT("name"))
1107 else if (val_name
== wxT("caption"))
1108 pane
.caption
= value
;
1109 else if (val_name
== wxT("state"))
1110 pane
.state
= (unsigned int)wxAtoi(value
.c_str());
1111 else if (val_name
== wxT("dir"))
1112 pane
.dock_direction
= wxAtoi(value
.c_str());
1113 else if (val_name
== wxT("layer"))
1114 pane
.dock_layer
= wxAtoi(value
.c_str());
1115 else if (val_name
== wxT("row"))
1116 pane
.dock_row
= wxAtoi(value
.c_str());
1117 else if (val_name
== wxT("pos"))
1118 pane
.dock_pos
= wxAtoi(value
.c_str());
1119 else if (val_name
== wxT("prop"))
1120 pane
.dock_proportion
= wxAtoi(value
.c_str());
1121 else if (val_name
== wxT("bestw"))
1122 pane
.best_size
.x
= wxAtoi(value
.c_str());
1123 else if (val_name
== wxT("besth"))
1124 pane
.best_size
.y
= wxAtoi(value
.c_str());
1125 else if (val_name
== wxT("minw"))
1126 pane
.min_size
.x
= wxAtoi(value
.c_str());
1127 else if (val_name
== wxT("minh"))
1128 pane
.min_size
.y
= wxAtoi(value
.c_str());
1129 else if (val_name
== wxT("maxw"))
1130 pane
.max_size
.x
= wxAtoi(value
.c_str());
1131 else if (val_name
== wxT("maxh"))
1132 pane
.max_size
.y
= wxAtoi(value
.c_str());
1133 else if (val_name
== wxT("floatx"))
1134 pane
.floating_pos
.x
= wxAtoi(value
.c_str());
1135 else if (val_name
== wxT("floaty"))
1136 pane
.floating_pos
.y
= wxAtoi(value
.c_str());
1137 else if (val_name
== wxT("floatw"))
1138 pane
.floating_size
.x
= wxAtoi(value
.c_str());
1139 else if (val_name
== wxT("floath"))
1140 pane
.floating_size
.y
= wxAtoi(value
.c_str());
1142 wxFAIL_MSG(wxT("Bad Perspective String"));
1146 // replace escaped characters so we can
1147 // split up the string easily
1148 pane
.name
.Replace(wxT("\a"), wxT("|"));
1149 pane
.name
.Replace(wxT("\b"), wxT(";"));
1150 pane
.caption
.Replace(wxT("\a"), wxT("|"));
1151 pane
.caption
.Replace(wxT("\b"), wxT(";"));
1152 pane_part
.Replace(wxT("\a"), wxT("|"));
1153 pane_part
.Replace(wxT("\b"), wxT(";"));
1159 // SavePerspective() saves all pane information as a single string.
1160 // This string may later be fed into LoadPerspective() to restore
1161 // all pane settings. This save and load mechanism allows an
1162 // exact pane configuration to be saved and restored at a later time
1164 wxString
wxFrameManager::SavePerspective()
1168 result
= wxT("layout1|");
1170 int pane_i
, pane_count
= m_panes
.GetCount();
1171 for (pane_i
= 0; pane_i
< pane_count
; ++pane_i
)
1173 wxPaneInfo
& pane
= m_panes
.Item(pane_i
);
1174 result
+= SavePaneInfo(pane
)+wxT("|");
1177 int dock_i
, dock_count
= m_docks
.GetCount();
1178 for (dock_i
= 0; dock_i
< dock_count
; ++dock_i
)
1180 wxDockInfo
& dock
= m_docks
.Item(dock_i
);
1182 result
+= wxString::Format(wxT("dock_size(%d,%d,%d)=%d|"),
1183 dock
.dock_direction
, dock
.dock_layer
,
1184 dock
.dock_row
, dock
.size
);
1190 // LoadPerspective() loads a layout which was saved with SavePerspective()
1191 // If the "update" flag parameter is true, the GUI will immediately be updated
1193 bool wxFrameManager::LoadPerspective(const wxString
& layout
, bool update
)
1195 wxString input
= layout
;
1198 // check layout string version
1199 part
= input
.BeforeFirst(wxT('|'));
1200 input
= input
.AfterFirst(wxT('|'));
1203 if (part
!= wxT("layout1"))
1206 // mark all panes currently managed as docked and hidden
1207 int pane_i
, pane_count
= m_panes
.GetCount();
1208 for (pane_i
= 0; pane_i
< pane_count
; ++pane_i
)
1209 m_panes
.Item(pane_i
).Dock().Hide();
1211 // clear out the dock array; this will be reconstructed
1214 // replace escaped characters so we can
1215 // split up the string easily
1216 input
.Replace(wxT("\\|"), wxT("\a"));
1217 input
.Replace(wxT("\\;"), wxT("\b"));
1223 wxString pane_part
= input
.BeforeFirst(wxT('|'));
1224 input
= input
.AfterFirst(wxT('|'));
1225 pane_part
.Trim(true);
1227 // if the string is empty, we're done parsing
1228 if (pane_part
.empty())
1231 if (pane_part
.Left(9) == wxT("dock_size"))
1233 wxString val_name
= pane_part
.BeforeFirst(wxT('='));
1234 wxString value
= pane_part
.AfterFirst(wxT('='));
1236 long dir
, layer
, row
, size
;
1237 wxString piece
= val_name
.AfterFirst(wxT('('));
1238 piece
= piece
.BeforeLast(wxT(')'));
1239 piece
.BeforeFirst(wxT(',')).ToLong(&dir
);
1240 piece
= piece
.AfterFirst(wxT(','));
1241 piece
.BeforeFirst(wxT(',')).ToLong(&layer
);
1242 piece
.AfterFirst(wxT(',')).ToLong(&row
);
1243 value
.ToLong(&size
);
1246 dock
.dock_direction
= dir
;
1247 dock
.dock_layer
= layer
;
1248 dock
.dock_row
= row
;
1254 // Undo our escaping as LoadPaneInfo needs to take an unescaped
1255 // name so it can be called by external callers
1256 pane_part
.Replace(wxT("\a"), wxT("|"));
1257 pane_part
.Replace(wxT("\b"), wxT(";"));
1259 LoadPaneInfo(pane_part
, pane
);
1261 wxPaneInfo
& p
= GetPane(pane
.name
);
1264 // the pane window couldn't be found
1265 // in the existing layout
1279 void wxFrameManager::GetPanePositionsAndSizes(wxDockInfo
& dock
,
1280 wxArrayInt
& positions
,
1283 int caption_size
= m_art
->GetMetric(wxAUI_ART_CAPTION_SIZE
);
1284 int pane_border_size
= m_art
->GetMetric(wxAUI_ART_PANE_BORDER_SIZE
);
1285 int gripper_size
= m_art
->GetMetric(wxAUI_ART_GRIPPER_SIZE
);
1290 int offset
, action_pane
= -1;
1291 int pane_i
, pane_count
= dock
.panes
.GetCount();
1293 // find the pane marked as our action pane
1294 for (pane_i
= 0; pane_i
< pane_count
; ++pane_i
)
1296 wxPaneInfo
& pane
= *(dock
.panes
.Item(pane_i
));
1298 if (pane
.state
& wxPaneInfo::actionPane
)
1300 wxASSERT_MSG(action_pane
==-1, wxT("Too many fixed action panes"));
1301 action_pane
= pane_i
;
1305 // set up each panes default position, and
1306 // determine the size (width or height, depending
1307 // on the dock's orientation) of each pane
1308 for (pane_i
= 0; pane_i
< pane_count
; ++pane_i
)
1310 wxPaneInfo
& pane
= *(dock
.panes
.Item(pane_i
));
1311 positions
.Add(pane
.dock_pos
);
1314 if (pane
.HasBorder())
1315 size
+= (pane_border_size
*2);
1317 if (dock
.IsHorizontal())
1319 if (pane
.HasGripper() && !pane
.HasGripperTop())
1320 size
+= gripper_size
;
1321 size
+= pane
.best_size
.x
;
1325 if (pane
.HasGripper() && pane
.HasGripperTop())
1326 size
+= gripper_size
;
1328 if (pane
.HasCaption())
1329 size
+= caption_size
;
1330 size
+= pane
.best_size
.y
;
1336 // if there is no action pane, just return the default
1337 // positions (as specified in pane.pane_pos)
1338 if (action_pane
== -1)
1342 for (pane_i
= action_pane
-1; pane_i
>= 0; --pane_i
)
1344 int amount
= positions
[pane_i
+1] - (positions
[pane_i
] + sizes
[pane_i
]);
1349 positions
[pane_i
] -= -amount
;
1351 offset
+= sizes
[pane_i
];
1354 // if the dock mode is fixed, make sure none of the panes
1355 // overlap; we will bump panes that overlap
1357 for (pane_i
= action_pane
; pane_i
< pane_count
; ++pane_i
)
1359 int amount
= positions
[pane_i
] - offset
;
1363 positions
[pane_i
] += -amount
;
1365 offset
+= sizes
[pane_i
];
1370 void wxFrameManager::LayoutAddPane(wxSizer
* cont
,
1373 wxDockUIPartArray
& uiparts
,
1377 wxSizerItem
* sizer_item
;
1379 int caption_size
= m_art
->GetMetric(wxAUI_ART_CAPTION_SIZE
);
1380 int gripper_size
= m_art
->GetMetric(wxAUI_ART_GRIPPER_SIZE
);
1381 int pane_border_size
= m_art
->GetMetric(wxAUI_ART_PANE_BORDER_SIZE
);
1382 int pane_button_size
= m_art
->GetMetric(wxAUI_ART_PANE_BUTTON_SIZE
);
1384 // find out the orientation of the item (orientation for panes
1385 // is the same as the dock's orientation)
1387 if (dock
.IsHorizontal())
1388 orientation
= wxHORIZONTAL
;
1390 orientation
= wxVERTICAL
;
1392 // this variable will store the proportion
1393 // value that the pane will receive
1394 int pane_proportion
= pane
.dock_proportion
;
1396 wxBoxSizer
* horz_pane_sizer
= new wxBoxSizer(wxHORIZONTAL
);
1397 wxBoxSizer
* vert_pane_sizer
= new wxBoxSizer(wxVERTICAL
);
1399 if (pane
.HasGripper())
1401 if (pane
.HasGripperTop())
1402 sizer_item
= vert_pane_sizer
->Add(1, gripper_size
, 0, wxEXPAND
);
1404 sizer_item
= horz_pane_sizer
->Add(gripper_size
, 1, 0, wxEXPAND
);
1406 part
.type
= wxDockUIPart::typeGripper
;
1410 part
.orientation
= orientation
;
1411 part
.cont_sizer
= horz_pane_sizer
;
1412 part
.sizer_item
= sizer_item
;
1416 if (pane
.HasCaption())
1418 // create the caption sizer
1419 wxBoxSizer
* caption_sizer
= new wxBoxSizer(wxHORIZONTAL
);
1421 sizer_item
= caption_sizer
->Add(1, caption_size
, 1, wxEXPAND
);
1423 part
.type
= wxDockUIPart::typeCaption
;
1427 part
.orientation
= orientation
;
1428 part
.cont_sizer
= vert_pane_sizer
;
1429 part
.sizer_item
= sizer_item
;
1430 int caption_part_idx
= uiparts
.GetCount();
1433 // add pane buttons to the caption
1434 int i
, button_count
;
1435 for (i
= 0, button_count
= pane
.buttons
.GetCount();
1436 i
< button_count
; ++i
)
1438 wxPaneButton
& button
= pane
.buttons
.Item(i
);
1440 sizer_item
= caption_sizer
->Add(pane_button_size
,
1444 part
.type
= wxDockUIPart::typePaneButton
;
1447 part
.button
= &button
;
1448 part
.orientation
= orientation
;
1449 part
.cont_sizer
= caption_sizer
;
1450 part
.sizer_item
= sizer_item
;
1454 // add the caption sizer
1455 sizer_item
= vert_pane_sizer
->Add(caption_sizer
, 0, wxEXPAND
);
1457 uiparts
.Item(caption_part_idx
).sizer_item
= sizer_item
;
1460 // add the pane window itself
1463 sizer_item
= vert_pane_sizer
->Add(1, 1, 1, wxEXPAND
);
1467 sizer_item
= vert_pane_sizer
->Add(pane
.window
, 1, wxEXPAND
);
1468 // Don't do this because it breaks the pane size in floating windows
1469 // BIW: Right now commenting this out is causing problems with
1470 // an mdi client window as the center pane.
1471 vert_pane_sizer
->SetItemMinSize(pane
.window
, 1, 1);
1474 part
.type
= wxDockUIPart::typePane
;
1478 part
.orientation
= orientation
;
1479 part
.cont_sizer
= vert_pane_sizer
;
1480 part
.sizer_item
= sizer_item
;
1484 // determine if the pane should have a minimum size; if the pane is
1485 // non-resizable (fixed) then we must set a minimum size. Alternitavely,
1486 // if the pane.min_size is set, we must use that value as well
1488 wxSize min_size
= pane
.min_size
;
1491 if (min_size
== wxDefaultSize
)
1493 min_size
= pane
.best_size
;
1494 pane_proportion
= 0;
1498 if (min_size
!= wxDefaultSize
)
1500 vert_pane_sizer
->SetItemMinSize(
1501 vert_pane_sizer
->GetChildren().GetCount()-1,
1502 min_size
.x
, min_size
.y
);
1506 // add the verticle sizer (caption, pane window) to the
1507 // horizontal sizer (gripper, verticle sizer)
1508 horz_pane_sizer
->Add(vert_pane_sizer
, 1, wxEXPAND
);
1510 // finally, add the pane sizer to the dock sizer
1512 if (pane
.HasBorder())
1514 // allowing space for the pane's border
1515 sizer_item
= cont
->Add(horz_pane_sizer
, pane_proportion
,
1516 wxEXPAND
| wxALL
, pane_border_size
);
1518 part
.type
= wxDockUIPart::typePaneBorder
;
1522 part
.orientation
= orientation
;
1523 part
.cont_sizer
= cont
;
1524 part
.sizer_item
= sizer_item
;
1529 sizer_item
= cont
->Add(horz_pane_sizer
, pane_proportion
, wxEXPAND
);
1533 void wxFrameManager::LayoutAddDock(wxSizer
* cont
,
1535 wxDockUIPartArray
& uiparts
,
1538 wxSizerItem
* sizer_item
;
1541 int sash_size
= m_art
->GetMetric(wxAUI_ART_SASH_SIZE
);
1542 int orientation
= dock
.IsHorizontal() ? wxHORIZONTAL
: wxVERTICAL
;
1544 // resizable bottom and right docks have a sash before them
1545 if (!dock
.fixed
&& (dock
.dock_direction
== wxAUI_DOCK_BOTTOM
||
1546 dock
.dock_direction
== wxAUI_DOCK_RIGHT
))
1548 sizer_item
= cont
->Add(sash_size
, sash_size
, 0, wxEXPAND
);
1550 part
.type
= wxDockUIPart::typeDockSizer
;
1551 part
.orientation
= orientation
;
1555 part
.cont_sizer
= cont
;
1556 part
.sizer_item
= sizer_item
;
1560 // create the sizer for the dock
1561 wxSizer
* dock_sizer
= new wxBoxSizer(orientation
);
1563 // add each pane to the dock
1564 int pane_i
, pane_count
= dock
.panes
.GetCount();
1568 wxArrayInt pane_positions
, pane_sizes
;
1570 // figure out the real pane positions we will
1571 // use, without modifying the each pane's pane_pos member
1572 GetPanePositionsAndSizes(dock
, pane_positions
, pane_sizes
);
1575 for (pane_i
= 0; pane_i
< pane_count
; ++pane_i
)
1577 wxPaneInfo
& pane
= *(dock
.panes
.Item(pane_i
));
1578 int pane_pos
= pane_positions
.Item(pane_i
);
1580 int amount
= pane_pos
- offset
;
1583 if (dock
.IsVertical())
1584 sizer_item
= dock_sizer
->Add(1, amount
, 0, wxEXPAND
);
1586 sizer_item
= dock_sizer
->Add(amount
, 1, 0, wxEXPAND
);
1588 part
.type
= wxDockUIPart::typeBackground
;
1592 part
.orientation
= (orientation
==wxHORIZONTAL
) ? wxVERTICAL
:wxHORIZONTAL
;
1593 part
.cont_sizer
= dock_sizer
;
1594 part
.sizer_item
= sizer_item
;
1600 LayoutAddPane(dock_sizer
, dock
, pane
, uiparts
, spacer_only
);
1602 offset
+= pane_sizes
.Item(pane_i
);
1605 // at the end add a very small stretchable background area
1606 sizer_item
= dock_sizer
->Add(1,1, 1, wxEXPAND
);
1608 part
.type
= wxDockUIPart::typeBackground
;
1612 part
.orientation
= orientation
;
1613 part
.cont_sizer
= dock_sizer
;
1614 part
.sizer_item
= sizer_item
;
1619 for (pane_i
= 0; pane_i
< pane_count
; ++pane_i
)
1621 wxPaneInfo
& pane
= *(dock
.panes
.Item(pane_i
));
1623 // if this is not the first pane being added,
1624 // we need to add a pane sizer
1627 sizer_item
= dock_sizer
->Add(sash_size
, sash_size
, 0, wxEXPAND
);
1629 part
.type
= wxDockUIPart::typePaneSizer
;
1631 part
.pane
= dock
.panes
.Item(pane_i
-1);
1633 part
.orientation
= (orientation
==wxHORIZONTAL
) ? wxVERTICAL
:wxHORIZONTAL
;
1634 part
.cont_sizer
= dock_sizer
;
1635 part
.sizer_item
= sizer_item
;
1639 LayoutAddPane(dock_sizer
, dock
, pane
, uiparts
, spacer_only
);
1643 if (dock
.dock_direction
== wxAUI_DOCK_CENTER
)
1644 sizer_item
= cont
->Add(dock_sizer
, 1, wxEXPAND
);
1646 sizer_item
= cont
->Add(dock_sizer
, 0, wxEXPAND
);
1648 part
.type
= wxDockUIPart::typeDock
;
1652 part
.orientation
= orientation
;
1653 part
.cont_sizer
= cont
;
1654 part
.sizer_item
= sizer_item
;
1657 if (dock
.IsHorizontal())
1658 cont
->SetItemMinSize(dock_sizer
, 0, dock
.size
);
1660 cont
->SetItemMinSize(dock_sizer
, dock
.size
, 0);
1662 // top and left docks have a sash after them
1663 if (!dock
.fixed
&& (dock
.dock_direction
== wxAUI_DOCK_TOP
||
1664 dock
.dock_direction
== wxAUI_DOCK_LEFT
))
1666 sizer_item
= cont
->Add(sash_size
, sash_size
, 0, wxEXPAND
);
1668 part
.type
= wxDockUIPart::typeDockSizer
;
1672 part
.orientation
= orientation
;
1673 part
.cont_sizer
= cont
;
1674 part
.sizer_item
= sizer_item
;
1679 wxSizer
* wxFrameManager::LayoutAll(wxPaneInfoArray
& panes
,
1680 wxDockInfoArray
& docks
,
1681 wxDockUIPartArray
& uiparts
,
1684 wxBoxSizer
* container
= new wxBoxSizer(wxVERTICAL
);
1686 int pane_border_size
= m_art
->GetMetric(wxAUI_ART_PANE_BORDER_SIZE
);
1687 int caption_size
= m_art
->GetMetric(wxAUI_ART_CAPTION_SIZE
);
1688 wxSize cli_size
= m_frame
->GetClientSize();
1689 int i
, dock_count
, pane_count
;
1692 // empty all docks out
1693 for (i
= 0, dock_count
= docks
.GetCount(); i
< dock_count
; ++i
)
1694 docks
.Item(i
).panes
.Empty();
1696 // iterate through all known panes, filing each
1697 // of them into the appropriate dock. If the
1698 // pane does not exist in the dock, add it
1699 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
1701 wxPaneInfo
& p
= panes
.Item(i
);
1703 // find any docks in this layer
1705 wxDockInfoPtrArray arr
;
1706 FindDocks(docks
, p
.dock_direction
, p
.dock_layer
, p
.dock_row
, arr
);
1708 if (arr
.GetCount() > 0)
1714 // dock was not found, so we need to create a new one
1716 d
.dock_direction
= p
.dock_direction
;
1717 d
.dock_layer
= p
.dock_layer
;
1718 d
.dock_row
= p
.dock_row
;
1720 dock
= &docks
.Last();
1724 if (p
.IsDocked() && p
.IsShown())
1726 // remove the pane from any existing docks except this one
1727 RemovePaneFromDocks(docks
, p
, dock
);
1729 // pane needs to be added to the dock,
1730 // if it doesn't already exist
1731 if (!FindPaneInDock(*dock
, p
.window
))
1732 dock
->panes
.Add(&p
);
1736 // remove the pane from any existing docks
1737 RemovePaneFromDocks(docks
, p
);
1742 // remove any empty docks
1743 for (i
= docks
.GetCount()-1; i
>= 0; --i
)
1745 if (docks
.Item(i
).panes
.GetCount() == 0)
1749 // configure the docks further
1750 for (i
= 0, dock_count
= docks
.GetCount(); i
< dock_count
; ++i
)
1752 wxDockInfo
& dock
= docks
.Item(i
);
1753 int j
, dock_pane_count
= dock
.panes
.GetCount();
1755 // sort the dock pane array by the pane's
1756 // dock position (dock_pos), in ascending order
1757 dock
.panes
.Sort(PaneSortFunc
);
1759 // for newly created docks, set up their initial size
1764 for (j
= 0; j
< dock_pane_count
; ++j
)
1766 wxPaneInfo
& pane
= *dock
.panes
.Item(j
);
1767 wxSize pane_size
= pane
.best_size
;
1768 if (pane_size
== wxDefaultSize
)
1769 pane_size
= pane
.min_size
;
1770 if (pane_size
== wxDefaultSize
)
1771 pane_size
= pane
.window
->GetSize();
1773 if (dock
.IsHorizontal())
1774 size
= wxMax(pane_size
.y
, size
);
1776 size
= wxMax(pane_size
.x
, size
);
1779 // add space for the border (two times), but only
1780 // if at least one pane inside the dock has a pane border
1781 for (j
= 0; j
< dock_pane_count
; ++j
)
1783 if (dock
.panes
.Item(j
)->HasBorder())
1785 size
+= (pane_border_size
*2);
1790 // if pane is on the top or bottom, add the caption height,
1791 // but only if at least one pane inside the dock has a caption
1792 if (dock
.IsHorizontal())
1794 for (j
= 0; j
< dock_pane_count
; ++j
)
1796 if (dock
.panes
.Item(j
)->HasCaption())
1798 size
+= caption_size
;
1804 // new dock's size may not be more than 1/3 of the frame size
1805 if (dock
.IsHorizontal())
1806 size
= wxMin(size
, cli_size
.y
/3);
1808 size
= wxMin(size
, cli_size
.x
/3);
1816 // determine the dock's minimum size
1817 bool plus_border
= false;
1818 bool plus_caption
= false;
1819 int dock_min_size
= 0;
1820 for (j
= 0; j
< dock_pane_count
; ++j
)
1822 wxPaneInfo
& pane
= *dock
.panes
.Item(j
);
1823 if (pane
.min_size
!= wxDefaultSize
)
1825 if (pane
.HasBorder())
1827 if (pane
.HasCaption())
1828 plus_caption
= true;
1829 if (dock
.IsHorizontal())
1831 if (pane
.min_size
.y
> dock_min_size
)
1832 dock_min_size
= pane
.min_size
.y
;
1836 if (pane
.min_size
.x
> dock_min_size
)
1837 dock_min_size
= pane
.min_size
.x
;
1843 dock_min_size
+= (pane_border_size
*2);
1844 if (plus_caption
&& dock
.IsHorizontal())
1845 dock_min_size
+= (caption_size
);
1847 dock
.min_size
= dock_min_size
;
1850 // if the pane's current size is less than it's
1851 // minimum, increase the dock's size to it's minimum
1852 if (dock
.size
< dock
.min_size
)
1853 dock
.size
= dock
.min_size
;
1856 // determine the dock's mode (fixed or proportional);
1857 // determine whether the dock has only toolbars
1858 bool action_pane_marked
= false;
1860 dock
.toolbar
= true;
1861 for (j
= 0; j
< dock_pane_count
; ++j
)
1863 wxPaneInfo
& pane
= *dock
.panes
.Item(j
);
1864 if (!pane
.IsFixed())
1866 if (!pane
.IsToolbar())
1867 dock
.toolbar
= false;
1868 if (pane
.state
& wxPaneInfo::actionPane
)
1869 action_pane_marked
= true;
1873 // if the dock mode is proportional and not fixed-pixel,
1874 // reassign the dock_pos to the sequential 0, 1, 2, 3;
1875 // e.g. remove gaps like 1, 2, 30, 500
1878 for (j
= 0; j
< dock_pane_count
; ++j
)
1880 wxPaneInfo
& pane
= *dock
.panes
.Item(j
);
1885 // if the dock mode is fixed, and none of the panes
1886 // are being moved right now, make sure the panes
1887 // do not overlap each other. If they do, we will
1888 // adjust the panes' positions
1889 if (dock
.fixed
&& !action_pane_marked
)
1891 wxArrayInt pane_positions
, pane_sizes
;
1892 GetPanePositionsAndSizes(dock
, pane_positions
, pane_sizes
);
1895 for (j
= 0; j
< dock_pane_count
; ++j
)
1897 wxPaneInfo
& pane
= *(dock
.panes
.Item(j
));
1898 pane
.dock_pos
= pane_positions
[j
];
1900 int amount
= pane
.dock_pos
- offset
;
1904 pane
.dock_pos
+= -amount
;
1906 offset
+= pane_sizes
[j
];
1911 // discover the maximum dock layer
1913 for (i
= 0; i
< dock_count
; ++i
)
1914 max_layer
= wxMax(max_layer
, docks
.Item(i
).dock_layer
);
1917 // clear out uiparts
1920 // create a bunch of box sizers,
1921 // from the innermost level outwards.
1922 wxSizer
* cont
= NULL
;
1923 wxSizer
* middle
= NULL
;
1927 for (layer
= 0; layer
<= max_layer
; ++layer
)
1929 wxDockInfoPtrArray arr
;
1931 // find any docks in this layer
1932 FindDocks(docks
, -1, layer
, -1, arr
);
1934 // if there aren't any, skip to the next layer
1938 wxSizer
* old_cont
= cont
;
1940 // create a container which will hold this layer's
1941 // docks (top, bottom, left, right)
1942 cont
= new wxBoxSizer(wxVERTICAL
);
1945 // find any top docks in this layer
1946 FindDocks(docks
, wxAUI_DOCK_TOP
, layer
, -1, arr
);
1947 RenumberDockRows(arr
);
1950 for (row
= 0, row_count
= arr
.GetCount(); row
< row_count
; ++row
)
1951 LayoutAddDock(cont
, *arr
.Item(row
), uiparts
, spacer_only
);
1955 // fill out the middle layer (which consists
1956 // of left docks, content area and right docks)
1958 middle
= new wxBoxSizer(wxHORIZONTAL
);
1960 // find any left docks in this layer
1961 FindDocks(docks
, wxAUI_DOCK_LEFT
, layer
, -1, arr
);
1962 RenumberDockRows(arr
);
1965 for (row
= 0, row_count
= arr
.GetCount(); row
< row_count
; ++row
)
1966 LayoutAddDock(middle
, *arr
.Item(row
), uiparts
, spacer_only
);
1969 // add content dock (or previous layer's sizer
1973 // find any center docks
1974 FindDocks(docks
, wxAUI_DOCK_CENTER
, -1, -1, arr
);
1977 for (row
= 0,row_count
= arr
.GetCount(); row
<row_count
; ++row
)
1978 LayoutAddDock(middle
, *arr
.Item(row
), uiparts
, spacer_only
);
1982 // there are no center docks, add a background area
1983 wxSizerItem
* sizer_item
= middle
->Add(1,1, 1, wxEXPAND
);
1985 part
.type
= wxDockUIPart::typeBackground
;
1989 part
.cont_sizer
= middle
;
1990 part
.sizer_item
= sizer_item
;
1996 middle
->Add(old_cont
, 1, wxEXPAND
);
1999 // find any right docks in this layer
2000 FindDocks(docks
, wxAUI_DOCK_RIGHT
, layer
, -1, arr
);
2001 RenumberDockRows(arr
);
2004 for (row
= arr
.GetCount()-1; row
>= 0; --row
)
2005 LayoutAddDock(middle
, *arr
.Item(row
), uiparts
, spacer_only
);
2008 cont
->Add(middle
, 1, wxEXPAND
);
2012 // find any bottom docks in this layer
2013 FindDocks(docks
, wxAUI_DOCK_BOTTOM
, layer
, -1, arr
);
2014 RenumberDockRows(arr
);
2017 for (row
= arr
.GetCount()-1; row
>= 0; --row
)
2018 LayoutAddDock(cont
, *arr
.Item(row
), uiparts
, spacer_only
);
2025 // no sizer available, because there are no docks,
2026 // therefore we will create a simple background area
2027 cont
= new wxBoxSizer(wxVERTICAL
);
2028 wxSizerItem
* sizer_item
= cont
->Add(1,1, 1, wxEXPAND
);
2030 part
.type
= wxDockUIPart::typeBackground
;
2034 part
.cont_sizer
= middle
;
2035 part
.sizer_item
= sizer_item
;
2039 container
->Add(cont
, 1, wxEXPAND
);
2044 // Update() updates the layout. Whenever changes are made to
2045 // one or more panes, this function should be called. It is the
2046 // external entry point for running the layout engine.
2048 void wxFrameManager::Update()
2051 int i
, pane_count
= m_panes
.GetCount();
2053 // delete old sizer first
2054 m_frame
->SetSizer(NULL
);
2056 // destroy floating panes which have been
2057 // redocked or are becoming non-floating
2058 for (i
= 0; i
< pane_count
; ++i
)
2060 wxPaneInfo
& p
= m_panes
.Item(i
);
2062 if (!p
.IsFloating() && p
.frame
)
2064 // because the pane is no longer in a floating, we need to
2065 // reparent it to m_frame and destroy the floating frame
2068 p
.window
->SetSize(1,1);
2070 if (p
.frame
->IsShown())
2071 p
.frame
->Show(false);
2073 // reparent to m_frame and destroy the pane
2074 p
.window
->Reparent(m_frame
);
2075 p
.frame
->SetSizer(NULL
);
2082 // create a layout for all of the panes
2083 sizer
= LayoutAll(m_panes
, m_docks
, m_uiparts
, false);
2085 // hide or show panes as necessary,
2086 // and float panes as necessary
2087 for (i
= 0; i
< pane_count
; ++i
)
2089 wxPaneInfo
& p
= m_panes
.Item(i
);
2093 if (p
.frame
== NULL
)
2095 // we need to create a frame for this
2096 // pane, which has recently been floated
2097 wxFloatingPane
* frame
= CreateFloatingFrame(m_frame
, p
);
2099 #if wxCHECK_VERSION(2,7,0)
2100 // on MSW and Mac, if the owner desires transparent dragging, and
2101 // the dragging is happening right now, then the floating
2102 // window should have this style by default
2103 if (m_action
== actionDragFloatingPane
&&
2104 (m_flags
& wxAUI_MGR_TRANSPARENT_DRAG
))
2105 frame
->SetTransparent(150);
2108 frame
->SetPaneWindow(p
);
2111 if (p
.IsShown() && !frame
->IsShown())
2116 // frame already exists, make sure it's position
2117 // and size reflect the information in wxPaneInfo
2118 if (p
.frame
->GetPosition() != p
.floating_pos
)
2120 p
.frame
->SetSize(p
.floating_pos
.x
, p
.floating_pos
.y
,
2121 wxDefaultCoord
, wxDefaultCoord
,
2122 wxSIZE_USE_EXISTING
);
2123 //p.frame->Move(p.floating_pos.x, p.floating_pos.y);
2126 if (p
.frame
->IsShown() != p
.IsShown())
2127 p
.frame
->Show(p
.IsShown());
2132 if (p
.window
->IsShown() != p
.IsShown())
2133 p
.window
->Show(p
.IsShown());
2136 // if "active panes" are no longer allowed, clear
2137 // any optionActive values from the pane states
2138 if ((m_flags
& wxAUI_MGR_ALLOW_ACTIVE_PANE
) == 0)
2140 p
.state
&= ~wxPaneInfo::optionActive
;
2145 // keep track of the old window rectangles so we can
2146 // refresh those windows whose rect has changed
2147 wxAuiRectArray old_pane_rects
;
2148 for (i
= 0; i
< pane_count
; ++i
)
2151 wxPaneInfo
& p
= m_panes
.Item(i
);
2153 if (p
.window
&& p
.IsShown() && p
.IsDocked())
2156 old_pane_rects
.Add(r
);
2162 // apply the new sizer
2163 m_frame
->SetSizer(sizer
);
2164 m_frame
->SetAutoLayout(false);
2169 // now that the frame layout is done, we need to check
2170 // the new pane rectangles against the old rectangles that
2171 // we saved a few lines above here. If the rectangles have
2172 // changed, the corresponding panes must also be updated
2173 for (i
= 0; i
< pane_count
; ++i
)
2175 wxPaneInfo
& p
= m_panes
.Item(i
);
2176 if (p
.window
&& p
.window
->IsShown() && p
.IsDocked())
2178 if (p
.rect
!= old_pane_rects
[i
])
2180 p
.window
->Refresh();
2189 // set frame's minimum size
2192 // N.B. More work needs to be done on frame minimum sizes;
2193 // this is some intresting code that imposes the minimum size,
2194 // but we may want to include a more flexible mechanism or
2195 // options for multiple minimum-size modes, e.g. strict or lax
2196 wxSize min_size = sizer->GetMinSize();
2197 wxSize frame_size = m_frame->GetSize();
2198 wxSize client_size = m_frame->GetClientSize();
2200 wxSize minframe_size(min_size.x+frame_size.x-client_size.x,
2201 min_size.y+frame_size.y-client_size.y );
2203 m_frame->SetMinSize(minframe_size);
2205 if (frame_size.x < minframe_size.x ||
2206 frame_size.y < minframe_size.y)
2207 sizer->Fit(m_frame);
2212 // DoFrameLayout() is an internal function which invokes wxSizer::Layout
2213 // on the frame's main sizer, then measures all the various UI items
2214 // and updates their internal rectangles. This should always be called
2215 // instead of calling m_frame->Layout() directly
2217 void wxFrameManager::DoFrameLayout()
2222 for (i
= 0, part_count
= m_uiparts
.GetCount(); i
< part_count
; ++i
)
2224 wxDockUIPart
& part
= m_uiparts
.Item(i
);
2226 // get the rectangle of the UI part
2227 // originally, this code looked like this:
2228 // part.rect = wxRect(part.sizer_item->GetPosition(),
2229 // part.sizer_item->GetSize());
2230 // this worked quite well, with one exception: the mdi
2231 // client window had a "deferred" size variable
2232 // that returned the wrong size. It looks like
2233 // a bug in wx, because the former size of the window
2234 // was being returned. So, we will retrieve the part's
2235 // rectangle via other means
2238 part
.rect
= part
.sizer_item
->GetRect();
2239 int flag
= part
.sizer_item
->GetFlag();
2240 int border
= part
.sizer_item
->GetBorder();
2243 part
.rect
.y
-= border
;
2244 part
.rect
.height
+= border
;
2248 part
.rect
.x
-= border
;
2249 part
.rect
.width
+= border
;
2251 if (flag
& wxBOTTOM
)
2252 part
.rect
.height
+= border
;
2254 part
.rect
.width
+= border
;
2257 if (part
.type
== wxDockUIPart::typeDock
)
2258 part
.dock
->rect
= part
.rect
;
2259 if (part
.type
== wxDockUIPart::typePane
)
2260 part
.pane
->rect
= part
.rect
;
2264 // GetPanePart() looks up the pane the pane border UI part (or the regular
2265 // pane part if there is no border). This allows the caller to get the exact
2266 // rectangle of the pane in question, including decorations like
2267 // caption and border (if any).
2269 wxDockUIPart
* wxFrameManager::GetPanePart(wxWindow
* wnd
)
2272 for (i
= 0, part_count
= m_uiparts
.GetCount(); i
< part_count
; ++i
)
2274 wxDockUIPart
& part
= m_uiparts
.Item(i
);
2275 if (part
.type
== wxDockUIPart::typePaneBorder
&&
2276 part
.pane
&& part
.pane
->window
== wnd
)
2279 for (i
= 0, part_count
= m_uiparts
.GetCount(); i
< part_count
; ++i
)
2281 wxDockUIPart
& part
= m_uiparts
.Item(i
);
2282 if (part
.type
== wxDockUIPart::typePane
&&
2283 part
.pane
&& part
.pane
->window
== wnd
)
2291 // GetDockPixelOffset() is an internal function which returns
2292 // a dock's offset in pixels from the left side of the window
2293 // (for horizontal docks) or from the top of the window (for
2294 // vertical docks). This value is necessary for calculating
2295 // fixel-pane/toolbar offsets when they are dragged.
2297 int wxFrameManager::GetDockPixelOffset(wxPaneInfo
& test
)
2299 // the only way to accurately calculate the dock's
2300 // offset is to actually run a theoretical layout
2302 int i
, part_count
, dock_count
;
2303 wxDockInfoArray docks
;
2304 wxPaneInfoArray panes
;
2305 wxDockUIPartArray uiparts
;
2306 CopyDocksAndPanes(docks
, panes
, m_docks
, m_panes
);
2309 wxSizer
* sizer
= LayoutAll(panes
, docks
, uiparts
, true);
2310 wxSize client_size
= m_frame
->GetClientSize();
2311 sizer
->SetDimension(0, 0, client_size
.x
, client_size
.y
);
2314 for (i
= 0, part_count
= uiparts
.GetCount(); i
< part_count
; ++i
)
2316 wxDockUIPart
& part
= uiparts
.Item(i
);
2317 part
.rect
= wxRect(part
.sizer_item
->GetPosition(),
2318 part
.sizer_item
->GetSize());
2319 if (part
.type
== wxDockUIPart::typeDock
)
2320 part
.dock
->rect
= part
.rect
;
2325 for (i
= 0, dock_count
= docks
.GetCount(); i
< dock_count
; ++i
)
2327 wxDockInfo
& dock
= docks
.Item(i
);
2328 if (test
.dock_direction
== dock
.dock_direction
&&
2329 test
.dock_layer
==dock
.dock_layer
&& test
.dock_row
==dock
.dock_row
)
2331 if (dock
.IsVertical())
2343 // ProcessDockResult() is a utility function used by DoDrop() - it checks
2344 // if a dock operation is allowed, the new dock position is copied into
2345 // the target info. If the operation was allowed, the function returns true.
2347 bool wxFrameManager::ProcessDockResult(wxPaneInfo
& target
,
2348 const wxPaneInfo
& new_pos
)
2350 bool allowed
= false;
2351 switch (new_pos
.dock_direction
)
2353 case wxAUI_DOCK_TOP
: allowed
= target
.IsTopDockable(); break;
2354 case wxAUI_DOCK_BOTTOM
: allowed
= target
.IsBottomDockable(); break;
2355 case wxAUI_DOCK_LEFT
: allowed
= target
.IsLeftDockable(); break;
2356 case wxAUI_DOCK_RIGHT
: allowed
= target
.IsRightDockable(); break;
2366 // DoDrop() is an important function. It basically takes a mouse position,
2367 // and determines where the pane's new position would be. If the pane is to be
2368 // dropped, it performs the drop operation using the specified dock and pane
2369 // arrays. By specifying copied dock and pane arrays when calling, a "what-if"
2370 // scenario can be performed, giving precise coordinates for drop hints.
2371 // If, however, wxFrameManager:m_docks and wxFrameManager::m_panes are specified
2372 // as parameters, the changes will be made to the main state arrays
2374 const int auiInsertRowPixels
= 10;
2375 const int auiNewRowPixels
= 40;
2376 const int auiLayerInsertPixels
= 40;
2377 const int auiLayerInsertOffset
= 5;
2379 bool wxFrameManager::DoDrop(wxDockInfoArray
& docks
,
2380 wxPaneInfoArray
& panes
,
2383 const wxPoint
& offset
)
2385 wxSize cli_size
= m_frame
->GetClientSize();
2387 wxPaneInfo drop
= target
;
2390 // The result should always be shown
2394 // Check to see if the pane has been dragged outside of the window
2395 // (or near to the outside of the window), if so, dock it along the edge
2398 int layer_insert_offset
= auiLayerInsertOffset
;
2399 if (target
.IsToolbar())
2400 layer_insert_offset
= 0;
2402 if (pt
.x
< layer_insert_offset
&&
2403 pt
.x
> layer_insert_offset
-auiLayerInsertPixels
)
2407 Position(pt
.y
- GetDockPixelOffset(drop
) - offset
.y
);
2408 return ProcessDockResult(target
, drop
);
2410 else if (pt
.y
< layer_insert_offset
&&
2411 pt
.y
> layer_insert_offset
-auiLayerInsertPixels
)
2415 Position(pt
.x
- GetDockPixelOffset(drop
) - offset
.x
);
2416 return ProcessDockResult(target
, drop
);
2418 else if (pt
.x
>= cli_size
.x
- layer_insert_offset
&&
2419 pt
.x
< cli_size
.x
- layer_insert_offset
+ auiLayerInsertPixels
)
2421 drop
.Dock().Right().
2423 Position(pt
.y
- GetDockPixelOffset(drop
) - offset
.y
);
2424 return ProcessDockResult(target
, drop
);
2426 else if (pt
.y
>= cli_size
.y
- layer_insert_offset
&&
2427 pt
.y
< cli_size
.y
- layer_insert_offset
+ auiLayerInsertPixels
)
2429 int new_layer
= wxMax( wxMax( GetMaxLayer(docks
, wxAUI_DOCK_BOTTOM
),
2430 GetMaxLayer(docks
, wxAUI_DOCK_LEFT
)),
2431 GetMaxLayer(docks
, wxAUI_DOCK_RIGHT
)) + 1;
2433 drop
.Dock().Bottom().
2436 Position(pt
.x
- GetDockPixelOffset(drop
) - offset
.x
);
2437 return ProcessDockResult(target
, drop
);
2440 wxDockUIPart
* part
= HitTest(pt
.x
, pt
.y
);
2443 if (drop
.IsToolbar())
2445 if (!part
|| !part
->dock
)
2448 // calculate the offset from where the dock begins
2449 // to the point where the user dropped the pane
2450 int dock_drop_offset
= 0;
2451 if (part
->dock
->IsHorizontal())
2452 dock_drop_offset
= pt
.x
- part
->dock
->rect
.x
- offset
.x
;
2454 dock_drop_offset
= pt
.y
- part
->dock
->rect
.y
- offset
.y
;
2457 // toolbars may only be moved in and to fixed-pane docks,
2458 // otherwise we will try to float the pane. Also, the pane
2459 // should float if being dragged over center pane windows
2460 if (!part
->dock
->fixed
|| part
->dock
->dock_direction
== wxAUI_DOCK_CENTER
)
2462 if (m_last_rect
.IsEmpty() || m_last_rect
.Contains(pt
.x
, pt
.y
))
2468 if ((m_flags
& wxAUI_MGR_ALLOW_FLOATING
) &&
2469 (drop
.IsFloatable() ||
2470 (part
->dock
->dock_direction
!= wxAUI_DOCK_CENTER
&&
2471 part
->dock
->dock_direction
!= wxAUI_DOCK_NONE
)))
2478 return ProcessDockResult(target
, drop
);
2481 drop
.Position(pt
.x
- GetDockPixelOffset(drop
) - offset
.x
);
2483 return ProcessDockResult(target
, drop
);
2492 m_last_rect
= part
->dock
->rect
;
2493 m_last_rect
.Inflate( 15, 15 );
2497 Direction(part
->dock
->dock_direction
).
2498 Layer(part
->dock
->dock_layer
).
2499 Row(part
->dock
->dock_row
).
2500 Position(dock_drop_offset
);
2503 ((pt
.y
< part
->dock
->rect
.y
+ 1) && part
->dock
->IsHorizontal()) ||
2504 ((pt
.x
< part
->dock
->rect
.x
+ 1) && part
->dock
->IsVertical())
2505 ) && part
->dock
->panes
.GetCount() > 1)
2507 if ((part
->dock
->dock_direction
== wxAUI_DOCK_TOP
) ||
2508 (part
->dock
->dock_direction
== wxAUI_DOCK_LEFT
))
2510 int row
= drop
.dock_row
;
2511 DoInsertDockRow(panes
, part
->dock
->dock_direction
,
2512 part
->dock
->dock_layer
,
2513 part
->dock
->dock_row
);
2514 drop
.dock_row
= row
;
2518 DoInsertDockRow(panes
, part
->dock
->dock_direction
,
2519 part
->dock
->dock_layer
,
2520 part
->dock
->dock_row
+1);
2521 drop
.dock_row
= part
->dock
->dock_row
+1;
2526 ((pt
.y
> part
->dock
->rect
.y
+ part
->dock
->rect
.height
- 2 ) && part
->dock
->IsHorizontal()) ||
2527 ((pt
.x
> part
->dock
->rect
.x
+ part
->dock
->rect
.width
- 2 ) && part
->dock
->IsVertical())
2528 ) && part
->dock
->panes
.GetCount() > 1)
2530 if ((part
->dock
->dock_direction
== wxAUI_DOCK_TOP
) ||
2531 (part
->dock
->dock_direction
== wxAUI_DOCK_LEFT
))
2533 DoInsertDockRow(panes
, part
->dock
->dock_direction
,
2534 part
->dock
->dock_layer
,
2535 part
->dock
->dock_row
+1);
2536 drop
.dock_row
= part
->dock
->dock_row
+1;
2540 int row
= drop
.dock_row
;
2541 DoInsertDockRow(panes
, part
->dock
->dock_direction
,
2542 part
->dock
->dock_layer
,
2543 part
->dock
->dock_row
);
2544 drop
.dock_row
= row
;
2548 return ProcessDockResult(target
, drop
);
2557 if (part
->type
== wxDockUIPart::typePaneBorder
||
2558 part
->type
== wxDockUIPart::typeCaption
||
2559 part
->type
== wxDockUIPart::typeGripper
||
2560 part
->type
== wxDockUIPart::typePaneButton
||
2561 part
->type
== wxDockUIPart::typePane
||
2562 part
->type
== wxDockUIPart::typePaneSizer
||
2563 part
->type
== wxDockUIPart::typeDockSizer
||
2564 part
->type
== wxDockUIPart::typeBackground
)
2566 if (part
->type
== wxDockUIPart::typeDockSizer
)
2568 if (part
->dock
->panes
.GetCount() != 1)
2570 part
= GetPanePart(part
->dock
->panes
.Item(0)->window
);
2577 // If a normal frame is being dragged over a toolbar, insert it
2578 // along the edge under the toolbar, but over all other panes.
2579 // (this could be done much better, but somehow factoring this
2580 // calculation with the one at the beginning of this function)
2581 if (part
->dock
&& part
->dock
->toolbar
)
2585 switch (part
->dock
->dock_direction
)
2587 case wxAUI_DOCK_LEFT
:
2588 layer
= wxMax(wxMax(GetMaxLayer(docks
, wxAUI_DOCK_LEFT
),
2589 GetMaxLayer(docks
, wxAUI_DOCK_BOTTOM
)),
2590 GetMaxLayer(docks
, wxAUI_DOCK_TOP
));
2592 case wxAUI_DOCK_TOP
:
2593 layer
= wxMax(wxMax(GetMaxLayer(docks
, wxAUI_DOCK_TOP
),
2594 GetMaxLayer(docks
, wxAUI_DOCK_LEFT
)),
2595 GetMaxLayer(docks
, wxAUI_DOCK_RIGHT
));
2597 case wxAUI_DOCK_RIGHT
:
2598 layer
= wxMax(wxMax(GetMaxLayer(docks
, wxAUI_DOCK_RIGHT
),
2599 GetMaxLayer(docks
, wxAUI_DOCK_TOP
)),
2600 GetMaxLayer(docks
, wxAUI_DOCK_BOTTOM
));
2602 case wxAUI_DOCK_BOTTOM
:
2603 layer
= wxMax(wxMax(GetMaxLayer(docks
, wxAUI_DOCK_BOTTOM
),
2604 GetMaxLayer(docks
, wxAUI_DOCK_LEFT
)),
2605 GetMaxLayer(docks
, wxAUI_DOCK_RIGHT
));
2609 DoInsertDockRow(panes
, part
->dock
->dock_direction
,
2612 Direction(part
->dock
->dock_direction
).
2613 Layer(layer
).Row(0).Position(0);
2614 return ProcessDockResult(target
, drop
);
2621 part
= GetPanePart(part
->pane
->window
);
2625 bool insert_dock_row
= false;
2626 int insert_row
= part
->pane
->dock_row
;
2627 int insert_dir
= part
->pane
->dock_direction
;
2628 int insert_layer
= part
->pane
->dock_layer
;
2630 switch (part
->pane
->dock_direction
)
2632 case wxAUI_DOCK_TOP
:
2633 if (pt
.y
>= part
->rect
.y
&&
2634 pt
.y
< part
->rect
.y
+auiInsertRowPixels
)
2635 insert_dock_row
= true;
2637 case wxAUI_DOCK_BOTTOM
:
2638 if (pt
.y
> part
->rect
.y
+part
->rect
.height
-auiInsertRowPixels
&&
2639 pt
.y
<= part
->rect
.y
+ part
->rect
.height
)
2640 insert_dock_row
= true;
2642 case wxAUI_DOCK_LEFT
:
2643 if (pt
.x
>= part
->rect
.x
&&
2644 pt
.x
< part
->rect
.x
+auiInsertRowPixels
)
2645 insert_dock_row
= true;
2647 case wxAUI_DOCK_RIGHT
:
2648 if (pt
.x
> part
->rect
.x
+part
->rect
.width
-auiInsertRowPixels
&&
2649 pt
.x
<= part
->rect
.x
+part
->rect
.width
)
2650 insert_dock_row
= true;
2652 case wxAUI_DOCK_CENTER
:
2654 // "new row pixels" will be set to the default, but
2655 // must never exceed 20% of the window size
2656 int new_row_pixels_x
= auiNewRowPixels
;
2657 int new_row_pixels_y
= auiNewRowPixels
;
2659 if (new_row_pixels_x
> (part
->rect
.width
*20)/100)
2660 new_row_pixels_x
= (part
->rect
.width
*20)/100;
2662 if (new_row_pixels_y
> (part
->rect
.height
*20)/100)
2663 new_row_pixels_y
= (part
->rect
.height
*20)/100;
2666 // determine if the mouse pointer is in a location that
2667 // will cause a new row to be inserted. The hot spot positions
2668 // are along the borders of the center pane
2671 insert_dock_row
= true;
2672 if (pt
.x
>= part
->rect
.x
&&
2673 pt
.x
< part
->rect
.x
+new_row_pixels_x
)
2674 insert_dir
= wxAUI_DOCK_LEFT
;
2676 if (pt
.y
>= part
->rect
.y
&&
2677 pt
.y
< part
->rect
.y
+new_row_pixels_y
)
2678 insert_dir
= wxAUI_DOCK_TOP
;
2680 if (pt
.x
>= part
->rect
.x
+ part
->rect
.width
-new_row_pixels_x
&&
2681 pt
.x
< part
->rect
.x
+ part
->rect
.width
)
2682 insert_dir
= wxAUI_DOCK_RIGHT
;
2684 if (pt
.y
>= part
->rect
.y
+ part
->rect
.height
-new_row_pixels_y
&&
2685 pt
.y
< part
->rect
.y
+ part
->rect
.height
)
2686 insert_dir
= wxAUI_DOCK_BOTTOM
;
2690 insert_row
= GetMaxRow(panes
, insert_dir
, insert_layer
) + 1;
2694 if (insert_dock_row
)
2696 DoInsertDockRow(panes
, insert_dir
, insert_layer
, insert_row
);
2697 drop
.Dock().Direction(insert_dir
).
2698 Layer(insert_layer
).
2701 return ProcessDockResult(target
, drop
);
2704 // determine the mouse offset and the pane size, both in the
2705 // direction of the dock itself, and perpendicular to the dock
2709 if (part
->orientation
== wxVERTICAL
)
2711 offset
= pt
.y
- part
->rect
.y
;
2712 size
= part
->rect
.GetHeight();
2716 offset
= pt
.x
- part
->rect
.x
;
2717 size
= part
->rect
.GetWidth();
2720 int drop_position
= part
->pane
->dock_pos
;
2722 // if we are in the top/left part of the pane,
2723 // insert the pane before the pane being hovered over
2724 if (offset
<= size
/2)
2726 drop_position
= part
->pane
->dock_pos
;
2728 part
->pane
->dock_direction
,
2729 part
->pane
->dock_layer
,
2730 part
->pane
->dock_row
,
2731 part
->pane
->dock_pos
);
2734 // if we are in the bottom/right part of the pane,
2735 // insert the pane before the pane being hovered over
2736 if (offset
> size
/2)
2738 drop_position
= part
->pane
->dock_pos
+1;
2740 part
->pane
->dock_direction
,
2741 part
->pane
->dock_layer
,
2742 part
->pane
->dock_row
,
2743 part
->pane
->dock_pos
+1);
2747 Direction(part
->dock
->dock_direction
).
2748 Layer(part
->dock
->dock_layer
).
2749 Row(part
->dock
->dock_row
).
2750 Position(drop_position
);
2751 return ProcessDockResult(target
, drop
);
2758 void wxFrameManager::OnHintFadeTimer(wxTimerEvent
& WXUNUSED(event
))
2760 if (!m_hint_wnd
|| m_hint_fadeamt
>= m_hint_fademax
)
2762 m_hint_fadetimer
.Stop();
2766 m_hint_fadeamt
+= 4;
2767 #if wxCHECK_VERSION(2,7,0)
2768 m_hint_wnd
->SetTransparent(m_hint_fadeamt
);
2770 if (m_hint_wnd
->IsKindOf(CLASSINFO(wxPseudoTransparentFrame
)))
2771 ((wxPseudoTransparentFrame
*)m_hint_wnd
)->SetTransparent(m_hint_fadeamt
);
2775 void wxFrameManager::ShowHint(const wxRect
& rect
)
2779 // if the hint rect is the same as last time, don't do anything
2780 if (m_last_hint
== rect
)
2784 m_hint_fadeamt
= m_hint_fademax
;
2786 if ((m_flags
& wxAUI_MGR_HINT_FADE
)
2787 && !((m_hint_wnd
->IsKindOf(CLASSINFO(wxPseudoTransparentFrame
))) &&
2788 (m_flags
& wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
))
2792 m_hint_wnd
->SetSize(rect
);
2794 if (!m_hint_wnd
->IsShown())
2797 // if we are dragging a floating pane, set the focus
2798 // back to that floating pane (otherwise it becomes unfocused)
2799 if (m_action
== actionDragFloatingPane
&& m_action_window
)
2800 m_action_window
->SetFocus();
2802 #if wxCHECK_VERSION(2,7,0)
2803 m_hint_wnd
->SetTransparent(m_hint_fadeamt
);
2805 if (m_hint_wnd
->IsKindOf(CLASSINFO(wxPseudoTransparentFrame
)))
2806 ((wxPseudoTransparentFrame
*)m_hint_wnd
)->SetTransparent(m_hint_fadeamt
);
2808 m_hint_wnd
->Raise();
2811 if (m_hint_fadeamt
!= m_hint_fademax
) // Only fade if we need to
2813 // start fade in timer
2814 m_hint_fadetimer
.SetOwner(this, 101);
2815 m_hint_fadetimer
.Start(5);
2818 else // Not using a transparent hint window...
2820 if (!(m_flags
& wxAUI_MGR_RECTANGLE_HINT
))
2823 if (m_last_hint
!= rect
)
2825 // remove the last hint rectangle
2831 wxScreenDC screendc
;
2832 wxRegion
clip(1, 1, 10000, 10000);
2834 // clip all floating windows, so we don't draw over them
2836 for (i
= 0, pane_count
= m_panes
.GetCount(); i
< pane_count
; ++i
)
2838 wxPaneInfo
& pane
= m_panes
.Item(i
);
2840 if (pane
.IsFloating() &&
2841 pane
.frame
->IsShown())
2843 wxRect rect
= pane
.frame
->GetRect();
2845 // wxGTK returns the client size, not the whole frame size
2851 clip
.Subtract(rect
);
2855 // As we can only hide the hint by redrawing the managed window, we
2856 // need to clip the region to the managed window too or we get
2857 // nasty redrawn problems.
2858 clip
.Intersect(m_frame
->GetRect());
2860 screendc
.SetClippingRegion(clip
);
2862 wxBitmap stipple
= wxPaneCreateStippleBitmap();
2863 wxBrush
brush(stipple
);
2864 screendc
.SetBrush(brush
);
2865 screendc
.SetPen(*wxTRANSPARENT_PEN
);
2867 screendc
.DrawRectangle(rect
.x
, rect
.y
, 5, rect
.height
);
2868 screendc
.DrawRectangle(rect
.x
+5, rect
.y
, rect
.width
-10, 5);
2869 screendc
.DrawRectangle(rect
.x
+rect
.width
-5, rect
.y
, 5, rect
.height
);
2870 screendc
.DrawRectangle(rect
.x
+5, rect
.y
+rect
.height
-5, rect
.width
-10, 5);
2874 void wxFrameManager::HideHint()
2876 // hides a transparent window hint, if there is one
2879 if (m_hint_wnd
->IsShown())
2880 m_hint_wnd
->Show(false);
2881 #if wxCHECK_VERSION(2,7,0)
2882 m_hint_wnd
->SetTransparent(0);
2884 if (m_hint_wnd
->IsKindOf(CLASSINFO(wxPseudoTransparentFrame
)))
2885 ((wxPseudoTransparentFrame
*)m_hint_wnd
)->SetTransparent(0);
2887 m_hint_fadetimer
.Stop();
2888 m_last_hint
= wxRect();
2892 // hides a painted hint by redrawing the frame window
2893 if (!m_last_hint
.IsEmpty())
2897 m_last_hint
= wxRect();
2903 // DrawHintRect() draws a drop hint rectangle. First calls DoDrop() to
2904 // determine the exact position the pane would be at were if dropped. If
2905 // the pame would indeed become docked at the specified drop point,
2906 // DrawHintRect() then calls ShowHint() to indicate this drop rectangle.
2907 // "pane_window" is the window pointer of the pane being dragged, pt is
2908 // the mouse position, in client coordinates
2909 void wxFrameManager::DrawHintRect(wxWindow
* pane_window
,
2911 const wxPoint
& offset
)
2915 // we need to paint a hint rectangle; to find out the exact hint rectangle,
2916 // we will create a new temporary layout and then measure the resulting
2917 // rectangle; we will create a copy of the docking structures (m_dock)
2918 // so that we don't modify the real thing on screen
2920 int i
, pane_count
, part_count
;
2921 wxDockInfoArray docks
;
2922 wxPaneInfoArray panes
;
2923 wxDockUIPartArray uiparts
;
2924 wxPaneInfo hint
= GetPane(pane_window
);
2925 hint
.name
= wxT("__HINT__");
2931 CopyDocksAndPanes(docks
, panes
, m_docks
, m_panes
);
2933 // remove any pane already there which bears the same window;
2934 // this happens when you are moving a pane around in a dock
2935 for (i
= 0, pane_count
= panes
.GetCount(); i
< pane_count
; ++i
)
2937 if (panes
.Item(i
).window
== pane_window
)
2939 RemovePaneFromDocks(docks
, panes
.Item(i
));
2945 // find out where the new pane would be
2946 if (!DoDrop(docks
, panes
, hint
, pt
, offset
))
2954 wxSizer
* sizer
= LayoutAll(panes
, docks
, uiparts
, true);
2955 wxSize client_size
= m_frame
->GetClientSize();
2956 sizer
->SetDimension(0, 0, client_size
.x
, client_size
.y
);
2959 for (i
= 0, part_count
= uiparts
.GetCount();
2960 i
< part_count
; ++i
)
2962 wxDockUIPart
& part
= uiparts
.Item(i
);
2964 if (part
.type
== wxDockUIPart::typePaneBorder
&&
2965 part
.pane
&& part
.pane
->name
== wxT("__HINT__"))
2967 rect
= wxRect(part
.sizer_item
->GetPosition(),
2968 part
.sizer_item
->GetSize());
2981 // actually show the hint rectangle on the screen
2982 m_frame
->ClientToScreen(&rect
.x
, &rect
.y
);
2986 void wxFrameManager::OnFloatingPaneMoveStart(wxWindow
* wnd
)
2988 // try to find the pane
2989 wxPaneInfo
& pane
= GetPane(wnd
);
2990 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
2992 #if wxCHECK_VERSION(2,7,0)
2993 if (m_flags
& wxAUI_MGR_TRANSPARENT_DRAG
)
2994 pane
.frame
->SetTransparent(150);
2998 void wxFrameManager::OnFloatingPaneMoving(wxWindow
* wnd
, wxDirection dir
)
3000 // try to find the pane
3001 wxPaneInfo
& pane
= GetPane(wnd
);
3002 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
3004 wxPoint pt
= ::wxGetMousePosition();
3007 // Adapt pt to direction
3010 // move to pane's upper border
3012 pos
= wnd
->ClientToScreen( pos
);
3014 // and some more pixels for the title bar
3019 // move to pane's left border
3021 pos
= wnd
->ClientToScreen( pos
);
3026 // move to pane's right border
3027 wxPoint
pos( wnd
->GetSize().x
, 0 );
3028 pos
= wnd
->ClientToScreen( pos
);
3033 // move to pane's bottom border
3034 wxPoint
pos( 0, wnd
->GetSize().y
);
3035 pos
= wnd
->ClientToScreen( pos
);
3042 wxPoint client_pt
= m_frame
->ScreenToClient(pt
);
3044 // calculate the offset from the upper left-hand corner
3045 // of the frame to the mouse pointer
3046 wxPoint frame_pos
= pane
.frame
->GetPosition();
3047 wxPoint
action_offset(pt
.x
-frame_pos
.x
, pt
.y
-frame_pos
.y
);
3049 // no hint for toolbar floating windows
3050 if (pane
.IsToolbar() && m_action
== actionDragFloatingPane
)
3052 if (m_action
== actionDragFloatingPane
)
3054 wxDockInfoArray docks
;
3055 wxPaneInfoArray panes
;
3056 wxDockUIPartArray uiparts
;
3057 wxPaneInfo hint
= pane
;
3059 CopyDocksAndPanes(docks
, panes
, m_docks
, m_panes
);
3061 // find out where the new pane would be
3062 if (!DoDrop(docks
, panes
, hint
, client_pt
))
3064 if (hint
.IsFloating())
3068 m_action
= actionDragToolbarPane
;
3069 m_action_window
= pane
.window
;
3078 // if a key modifier is pressed while dragging the frame,
3079 // don't dock the window
3080 if (wxGetKeyState(WXK_CONTROL
) || wxGetKeyState(WXK_ALT
))
3087 DrawHintRect(wnd
, client_pt
, action_offset
);
3090 // this cleans up some screen artifacts that are caused on GTK because
3091 // we aren't getting the exact size of the window (see comment
3101 void wxFrameManager::OnFloatingPaneMoved(wxWindow
* wnd
, wxDirection dir
)
3103 // try to find the pane
3104 wxPaneInfo
& pane
= GetPane(wnd
);
3105 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
3107 wxPoint pt
= ::wxGetMousePosition();
3110 // Adapt pt to direction
3113 // move to pane's upper border
3115 pos
= wnd
->ClientToScreen( pos
);
3117 // and some more pixels for the title bar
3122 // move to pane's left border
3124 pos
= wnd
->ClientToScreen( pos
);
3129 // move to pane's right border
3130 wxPoint
pos( wnd
->GetSize().x
, 0 );
3131 pos
= wnd
->ClientToScreen( pos
);
3136 // move to pane's bottom border
3137 wxPoint
pos( 0, wnd
->GetSize().y
);
3138 pos
= wnd
->ClientToScreen( pos
);
3145 wxPoint client_pt
= m_frame
->ScreenToClient(pt
);
3147 // calculate the offset from the upper left-hand corner
3148 // of the frame to the mouse pointer
3149 wxPoint frame_pos
= pane
.frame
->GetPosition();
3150 wxPoint
action_offset(pt
.x
-frame_pos
.x
, pt
.y
-frame_pos
.y
);
3153 // if a key modifier is pressed while dragging the frame,
3154 // don't dock the window
3155 if (!wxGetKeyState(WXK_CONTROL
) && !wxGetKeyState(WXK_ALT
))
3157 // do the drop calculation
3158 DoDrop(m_docks
, m_panes
, pane
, client_pt
, action_offset
);
3161 // if the pane is still floating, update it's floating
3162 // position (that we store)
3163 if (pane
.IsFloating())
3165 pane
.floating_pos
= pane
.frame
->GetPosition();
3167 #if wxCHECK_VERSION(2,7,0)
3168 if (m_flags
& wxAUI_MGR_TRANSPARENT_DRAG
)
3169 pane
.frame
->SetTransparent(255);
3178 void wxFrameManager::OnFloatingPaneResized(wxWindow
* wnd
, const wxSize
& size
)
3180 // try to find the pane
3181 wxPaneInfo
& pane
= GetPane(wnd
);
3182 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
3184 pane
.floating_size
= size
;
3188 void wxFrameManager::OnFloatingPaneClosed(wxWindow
* wnd
, wxCloseEvent
& evt
)
3190 // try to find the pane
3191 wxPaneInfo
& pane
= GetPane(wnd
);
3192 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
3195 // fire pane close event
3196 wxFrameManagerEvent
e(wxEVT_AUI_PANECLOSE
);
3198 e
.SetCanVeto(evt
.CanVeto());
3214 void wxFrameManager::OnFloatingPaneActivated(wxWindow
* wnd
)
3216 if (GetFlags() & wxAUI_MGR_ALLOW_ACTIVE_PANE
)
3218 // try to find the pane
3219 wxASSERT_MSG(GetPane(wnd
).IsOk(), wxT("Pane window not found"));
3221 SetActivePane(m_panes
, wnd
);
3226 // OnRender() draws all of the pane captions, sashes,
3227 // backgrounds, captions, grippers, pane borders and buttons.
3228 // It renders the entire user interface.
3230 void wxFrameManager::OnRender(wxFrameManagerEvent
& evt
)
3232 wxDC
* dc
= evt
.GetDC();
3238 for (i
= 0, part_count
= m_uiparts
.GetCount();
3239 i
< part_count
; ++i
)
3241 wxDockUIPart
& part
= m_uiparts
.Item(i
);
3243 // don't draw hidden pane items
3244 if (part
.sizer_item
&& !part
.sizer_item
->IsShown())
3249 case wxDockUIPart::typeDockSizer
:
3250 case wxDockUIPart::typePaneSizer
:
3251 m_art
->DrawSash(*dc
, m_frame
, part
.orientation
, part
.rect
);
3253 case wxDockUIPart::typeBackground
:
3254 m_art
->DrawBackground(*dc
, m_frame
, part
.orientation
, part
.rect
);
3256 case wxDockUIPart::typeCaption
:
3257 m_art
->DrawCaption(*dc
, m_frame
, part
.pane
->caption
, part
.rect
, *part
.pane
);
3259 case wxDockUIPart::typeGripper
:
3260 m_art
->DrawGripper(*dc
, m_frame
, part
.rect
, *part
.pane
);
3262 case wxDockUIPart::typePaneBorder
:
3263 m_art
->DrawBorder(*dc
, m_frame
, part
.rect
, *part
.pane
);
3265 case wxDockUIPart::typePaneButton
:
3266 m_art
->DrawPaneButton(*dc
, m_frame
, part
.button
->button_id
,
3267 wxAUI_BUTTON_STATE_NORMAL
, part
.rect
, *part
.pane
);
3274 // Render() fire a render event, which is normally handled by
3275 // wxFrameManager::OnRender(). This allows the render function to
3276 // be overridden via the render event. This can be useful for paintin
3277 // custom graphics in the main window. Default behavior can be
3278 // invoked in the overridden function by calling OnRender()
3280 void wxFrameManager::Render(wxDC
* dc
)
3282 wxFrameManagerEvent
e(wxEVT_AUI_RENDER
);
3287 void wxFrameManager::Repaint(wxDC
* dc
)
3292 m_frame
->Refresh() ;
3298 m_frame
->GetClientSize(&w
, &h
);
3300 // figure out which dc to use; if one
3301 // has been specified, use it, otherwise
3303 wxClientDC
* client_dc
= NULL
;
3306 client_dc
= new wxClientDC(m_frame
);
3310 // if the frame has a toolbar, the client area
3311 // origin will not be (0,0).
3312 wxPoint pt
= m_frame
->GetClientAreaOrigin();
3313 if (pt
.x
!= 0 || pt
.y
!= 0)
3314 dc
->SetDeviceOrigin(pt
.x
, pt
.y
);
3316 // render all the items
3319 // if we created a client_dc, delete it
3324 void wxFrameManager::OnPaint(wxPaintEvent
& WXUNUSED(event
))
3326 wxPaintDC
dc(m_frame
);
3330 void wxFrameManager::OnEraseBackground(wxEraseEvent
& event
)
3339 void wxFrameManager::OnSize(wxSizeEvent
& event
)
3350 void wxFrameManager::OnSetCursor(wxSetCursorEvent
& event
)
3353 wxDockUIPart
* part
= HitTest(event
.GetX(), event
.GetY());
3354 wxCursor cursor
= wxNullCursor
;
3358 if (part
->type
== wxDockUIPart::typeDockSizer
||
3359 part
->type
== wxDockUIPart::typePaneSizer
)
3361 // a dock may not be resized if it has a single
3362 // pane which is not resizable
3363 if (part
->type
== wxDockUIPart::typeDockSizer
&& part
->dock
&&
3364 part
->dock
->panes
.GetCount() == 1 &&
3365 part
->dock
->panes
.Item(0)->IsFixed())
3368 // panes that may not be resized do not get a sizing cursor
3369 if (part
->pane
&& part
->pane
->IsFixed())
3372 if (part
->orientation
== wxVERTICAL
)
3373 cursor
= wxCursor(wxCURSOR_SIZEWE
);
3375 cursor
= wxCursor(wxCURSOR_SIZENS
);
3377 else if (part
->type
== wxDockUIPart::typeGripper
)
3379 cursor
= wxCursor(wxCURSOR_SIZING
);
3383 event
.SetCursor(cursor
);
3388 void wxFrameManager::UpdateButtonOnScreen(wxDockUIPart
* button_ui_part
,
3389 const wxMouseEvent
& event
)
3391 wxDockUIPart
* hit_test
= HitTest(event
.GetX(), event
.GetY());
3393 int state
= wxAUI_BUTTON_STATE_NORMAL
;
3395 if (hit_test
== button_ui_part
)
3397 if (event
.LeftDown())
3398 state
= wxAUI_BUTTON_STATE_PRESSED
;
3400 state
= wxAUI_BUTTON_STATE_HOVER
;
3404 if (event
.LeftDown())
3405 state
= wxAUI_BUTTON_STATE_HOVER
;
3408 // now repaint the button with hover state
3409 wxClientDC
cdc(m_frame
);
3411 // if the frame has a toolbar, the client area
3412 // origin will not be (0,0).
3413 wxPoint pt
= m_frame
->GetClientAreaOrigin();
3414 if (pt
.x
!= 0 || pt
.y
!= 0)
3415 cdc
.SetDeviceOrigin(pt
.x
, pt
.y
);
3417 m_art
->DrawPaneButton(cdc
, m_frame
,
3418 button_ui_part
->button
->button_id
,
3420 button_ui_part
->rect
,
3424 void wxFrameManager::OnLeftDown(wxMouseEvent
& event
)
3426 wxDockUIPart
* part
= HitTest(event
.GetX(), event
.GetY());
3429 if (part
->dock
&& part
->dock
->dock_direction
== wxAUI_DOCK_CENTER
)
3432 if (part
->type
== wxDockUIPart::typeDockSizer
||
3433 part
->type
== wxDockUIPart::typePaneSizer
)
3435 // a dock may not be resized if it has a single
3436 // pane which is not resizable
3437 if (part
->type
== wxDockUIPart::typeDockSizer
&& part
->dock
&&
3438 part
->dock
->panes
.GetCount() == 1 &&
3439 part
->dock
->panes
.Item(0)->IsFixed())
3442 // panes that may not be resized should be ignored here
3443 if (part
->pane
&& part
->pane
->IsFixed())
3446 m_action
= actionResize
;
3447 m_action_part
= part
;
3448 m_action_hintrect
= wxRect();
3449 m_action_start
= wxPoint(event
.m_x
, event
.m_y
);
3450 m_action_offset
= wxPoint(event
.m_x
- part
->rect
.x
,
3451 event
.m_y
- part
->rect
.y
);
3452 m_frame
->CaptureMouse();
3454 else if (part
->type
== wxDockUIPart::typePaneButton
)
3456 m_action
= actionClickButton
;
3457 m_action_part
= part
;
3458 m_action_start
= wxPoint(event
.m_x
, event
.m_y
);
3459 m_frame
->CaptureMouse();
3461 UpdateButtonOnScreen(part
, event
);
3463 else if (part
->type
== wxDockUIPart::typeCaption
||
3464 part
->type
== wxDockUIPart::typeGripper
)
3466 if (GetFlags() & wxAUI_MGR_ALLOW_ACTIVE_PANE
)
3468 // set the caption as active
3469 SetActivePane(m_panes
, part
->pane
->window
);
3473 m_action
= actionClickCaption
;
3474 m_action_part
= part
;
3475 m_action_start
= wxPoint(event
.m_x
, event
.m_y
);
3476 m_action_offset
= wxPoint(event
.m_x
- part
->rect
.x
,
3477 event
.m_y
- part
->rect
.y
);
3478 m_frame
->CaptureMouse();
3498 void wxFrameManager::OnLeftUp(wxMouseEvent
& event
)
3500 if (m_action
== actionResize
)
3502 m_frame
->ReleaseMouse();
3504 // get rid of the hint rectangle
3506 DrawResizeHint(dc
, m_action_hintrect
);
3508 // resize the dock or the pane
3509 if (m_action_part
&& m_action_part
->type
==wxDockUIPart::typeDockSizer
)
3511 wxRect
& rect
= m_action_part
->dock
->rect
;
3513 wxPoint
new_pos(event
.m_x
- m_action_offset
.x
,
3514 event
.m_y
- m_action_offset
.y
);
3516 switch (m_action_part
->dock
->dock_direction
)
3518 case wxAUI_DOCK_LEFT
:
3519 m_action_part
->dock
->size
= new_pos
.x
- rect
.x
;
3521 case wxAUI_DOCK_TOP
:
3522 m_action_part
->dock
->size
= new_pos
.y
- rect
.y
;
3524 case wxAUI_DOCK_RIGHT
:
3525 m_action_part
->dock
->size
= rect
.x
+ rect
.width
-
3526 new_pos
.x
- m_action_part
->rect
.GetWidth();
3528 case wxAUI_DOCK_BOTTOM
:
3529 m_action_part
->dock
->size
= rect
.y
+ rect
.height
-
3530 new_pos
.y
- m_action_part
->rect
.GetHeight();
3537 else if (m_action_part
&&
3538 m_action_part
->type
== wxDockUIPart::typePaneSizer
)
3540 wxDockInfo
& dock
= *m_action_part
->dock
;
3541 wxPaneInfo
& pane
= *m_action_part
->pane
;
3543 int total_proportion
= 0;
3544 int dock_pixels
= 0;
3545 int new_pixsize
= 0;
3547 int caption_size
= m_art
->GetMetric(wxAUI_ART_CAPTION_SIZE
);
3548 int pane_border_size
= m_art
->GetMetric(wxAUI_ART_PANE_BORDER_SIZE
);
3549 int sash_size
= m_art
->GetMetric(wxAUI_ART_SASH_SIZE
);
3551 wxPoint
new_pos(event
.m_x
- m_action_offset
.x
,
3552 event
.m_y
- m_action_offset
.y
);
3554 // determine the pane rectangle by getting the pane part
3555 wxDockUIPart
* pane_part
= GetPanePart(pane
.window
);
3556 wxASSERT_MSG(pane_part
,
3557 wxT("Pane border part not found -- shouldn't happen"));
3559 // determine the new pixel size that the user wants;
3560 // this will help us recalculate the pane's proportion
3561 if (dock
.IsHorizontal())
3562 new_pixsize
= new_pos
.x
- pane_part
->rect
.x
;
3564 new_pixsize
= new_pos
.y
- pane_part
->rect
.y
;
3566 // determine the size of the dock, based on orientation
3567 if (dock
.IsHorizontal())
3568 dock_pixels
= dock
.rect
.GetWidth();
3570 dock_pixels
= dock
.rect
.GetHeight();
3572 // determine the total proportion of all resizable panes,
3573 // and the total size of the dock minus the size of all
3575 int i
, dock_pane_count
= dock
.panes
.GetCount();
3576 int pane_position
= -1;
3577 for (i
= 0; i
< dock_pane_count
; ++i
)
3579 wxPaneInfo
& p
= *dock
.panes
.Item(i
);
3580 if (p
.window
== pane
.window
)
3583 // while we're at it, subtract the pane sash
3584 // width from the dock width, because this would
3585 // skew our proportion calculations
3587 dock_pixels
-= sash_size
;
3589 // also, the whole size (including decorations) of
3590 // all fixed panes must also be subtracted, because they
3591 // are not part of the proportion calculation
3594 if (dock
.IsHorizontal())
3595 dock_pixels
-= p
.best_size
.x
;
3597 dock_pixels
-= p
.best_size
.y
;
3601 total_proportion
+= p
.dock_proportion
;
3605 // find a pane in our dock to 'steal' space from or to 'give'
3606 // space to -- this is essentially what is done when a pane is
3607 // resized; the pane should usually be the first non-fixed pane
3608 // to the right of the action pane
3609 int borrow_pane
= -1;
3610 for (i
= pane_position
+1; i
< dock_pane_count
; ++i
)
3612 wxPaneInfo
& p
= *dock
.panes
.Item(i
);
3621 // demand that the pane being resized is found in this dock
3622 // (this assert really never should be raised)
3623 wxASSERT_MSG(pane_position
!= -1, wxT("Pane not found in dock"));
3625 // prevent division by zero
3626 if (dock_pixels
== 0 || total_proportion
== 0 || borrow_pane
== -1)
3628 m_action
= actionNone
;
3632 // calculate the new proportion of the pane
3633 int new_proportion
= (new_pixsize
*total_proportion
)/dock_pixels
;
3635 // default minimum size
3638 // check against the pane's minimum size, if specified. please note
3639 // that this is not enough to ensure that the minimum size will
3640 // not be violated, because the whole frame might later be shrunk,
3641 // causing the size of the pane to violate it's minimum size
3642 if (pane
.min_size
.IsFullySpecified())
3646 if (pane
.HasBorder())
3647 min_size
+= (pane_border_size
*2);
3649 // calculate minimum size with decorations (border,caption)
3650 if (pane_part
->orientation
== wxVERTICAL
)
3652 min_size
+= pane
.min_size
.y
;
3653 if (pane
.HasCaption())
3654 min_size
+= caption_size
;
3658 min_size
+= pane
.min_size
.x
;
3663 // for some reason, an arithmatic error somewhere is causing
3664 // the proportion calculations to always be off by 1 pixel;
3665 // for now we will add the 1 pixel on, but we really should
3666 // determine what's causing this.
3669 int min_proportion
= (min_size
*total_proportion
)/dock_pixels
;
3671 if (new_proportion
< min_proportion
)
3672 new_proportion
= min_proportion
;
3676 int prop_diff
= new_proportion
- pane
.dock_proportion
;
3678 // borrow the space from our neighbor pane to the
3679 // right or bottom (depending on orientation)
3680 dock
.panes
.Item(borrow_pane
)->dock_proportion
-= prop_diff
;
3681 pane
.dock_proportion
= new_proportion
;
3688 else if (m_action
== actionClickButton
)
3690 m_hover_button
= NULL
;
3691 m_frame
->ReleaseMouse();
3692 UpdateButtonOnScreen(m_action_part
, event
);
3694 // make sure we're still over the item that was originally clicked
3695 if (m_action_part
== HitTest(event
.GetX(), event
.GetY()))
3697 // fire button-click event
3698 wxFrameManagerEvent
e(wxEVT_AUI_PANEBUTTON
);
3699 e
.SetPane(m_action_part
->pane
);
3700 e
.SetButton(m_action_part
->button
->button_id
);
3704 else if (m_action
== actionClickCaption
)
3706 m_frame
->ReleaseMouse();
3708 else if (m_action
== actionDragFloatingPane
)
3710 m_frame
->ReleaseMouse();
3712 else if (m_action
== actionDragToolbarPane
)
3714 m_frame
->ReleaseMouse();
3716 wxPaneInfo
& pane
= GetPane(m_action_window
);
3717 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
3719 // save the new positions
3720 wxDockInfoPtrArray docks
;
3721 FindDocks(m_docks
, pane
.dock_direction
,
3722 pane
.dock_layer
, pane
.dock_row
, docks
);
3723 if (docks
.GetCount() == 1)
3725 wxDockInfo
& dock
= *docks
.Item(0);
3727 wxArrayInt pane_positions
, pane_sizes
;
3728 GetPanePositionsAndSizes(dock
, pane_positions
, pane_sizes
);
3730 int i
, dock_pane_count
= dock
.panes
.GetCount();
3731 for (i
= 0; i
< dock_pane_count
; ++i
)
3732 dock
.panes
.Item(i
)->dock_pos
= pane_positions
[i
];
3735 pane
.state
&= ~wxPaneInfo::actionPane
;
3743 m_action
= actionNone
;
3744 m_last_mouse_move
= wxPoint(); // see comment in OnMotion()
3748 void wxFrameManager::OnMotion(wxMouseEvent
& event
)
3750 // sometimes when Update() is called from inside this method,
3751 // a spurious mouse move event is generated; this check will make
3752 // sure that only real mouse moves will get anywhere in this method;
3753 // this appears to be a bug somewhere, and I don't know where the
3754 // mouse move event is being generated. only verified on MSW
3756 wxPoint mouse_pos
= event
.GetPosition();
3757 if (m_last_mouse_move
== mouse_pos
)
3759 m_last_mouse_move
= mouse_pos
;
3762 if (m_action
== actionResize
)
3764 wxPoint pos
= m_action_part
->rect
.GetPosition();
3765 if (m_action_part
->orientation
== wxHORIZONTAL
)
3766 pos
.y
= wxMax(0, event
.m_y
- m_action_offset
.y
);
3768 pos
.x
= wxMax(0, event
.m_x
- m_action_offset
.x
);
3770 wxRect
rect(m_frame
->ClientToScreen(pos
),
3771 m_action_part
->rect
.GetSize());
3774 if (!m_action_hintrect
.IsEmpty())
3775 DrawResizeHint(dc
, m_action_hintrect
);
3776 DrawResizeHint(dc
, rect
);
3777 m_action_hintrect
= rect
;
3779 else if (m_action
== actionClickCaption
)
3781 int drag_x_threshold
= wxSystemSettings::GetMetric(wxSYS_DRAG_X
);
3782 int drag_y_threshold
= wxSystemSettings::GetMetric(wxSYS_DRAG_Y
);
3784 // caption has been clicked. we need to check if the mouse
3785 // is now being dragged. if it is, we need to change the
3786 // mouse action to 'drag'
3787 if (abs(event
.m_x
- m_action_start
.x
) > drag_x_threshold
||
3788 abs(event
.m_y
- m_action_start
.y
) > drag_y_threshold
)
3790 wxPaneInfo
* pane_info
= m_action_part
->pane
;
3792 if (!pane_info
->IsToolbar())
3794 if ((m_flags
& wxAUI_MGR_ALLOW_FLOATING
) &&
3795 pane_info
->IsFloatable())
3797 m_action
= actionDragFloatingPane
;
3799 // set initial float position
3800 wxPoint pt
= m_frame
->ClientToScreen(event
.GetPosition());
3801 pane_info
->floating_pos
= wxPoint(pt
.x
- m_action_offset
.x
,
3802 pt
.y
- m_action_offset
.y
);
3807 m_action_window
= pane_info
->frame
;
3809 // action offset is used here to make it feel "natural" to the user
3810 // to drag a docked pane and suddenly have it become a floating frame.
3811 // Sometimes, however, the offset where the user clicked on the docked
3812 // caption is bigger than the width of the floating frame itself, so
3813 // in that case we need to set the action offset to a sensible value
3814 wxSize frame_size
= m_action_window
->GetSize();
3815 if (frame_size
.x
<= m_action_offset
.x
)
3816 m_action_offset
.x
= 30;
3821 m_action
= actionDragToolbarPane
;
3822 m_action_window
= pane_info
->window
;
3826 else if (m_action
== actionDragFloatingPane
)
3828 wxPoint pt
= m_frame
->ClientToScreen(event
.GetPosition());
3829 m_action_window
->Move(pt
.x
- m_action_offset
.x
,
3830 pt
.y
- m_action_offset
.y
);
3832 else if (m_action
== actionDragToolbarPane
)
3834 wxPaneInfo
& pane
= GetPane(m_action_window
);
3835 wxASSERT_MSG(pane
.IsOk(), wxT("Pane window not found"));
3837 pane
.state
|= wxPaneInfo::actionPane
;
3839 wxPoint pt
= event
.GetPosition();
3840 DoDrop(m_docks
, m_panes
, pane
, pt
, m_action_offset
);
3842 // if DoDrop() decided to float the pane, set up
3843 // the floating pane's initial position
3844 if (pane
.IsFloating())
3846 wxPoint pt
= m_frame
->ClientToScreen(event
.GetPosition());
3847 pane
.floating_pos
= wxPoint(pt
.x
- m_action_offset
.x
,
3848 pt
.y
- m_action_offset
.y
);
3851 // this will do the actiual move operation;
3852 // in the case that the pane has been floated,
3853 // this call will create the floating pane
3854 // and do the reparenting
3857 // if the pane has been floated, change the mouse
3858 // action actionDragFloatingPane so that subsequent
3859 // EVT_MOTION() events will move the floating pane
3860 if (pane
.IsFloating())
3862 pane
.state
&= ~wxPaneInfo::actionPane
;
3863 m_action
= actionDragFloatingPane
;
3864 m_action_window
= pane
.frame
;
3869 wxDockUIPart
* part
= HitTest(event
.GetX(), event
.GetY());
3870 if (part
&& part
->type
== wxDockUIPart::typePaneButton
)
3872 if (part
!= m_hover_button
)
3874 // make the old button normal
3876 UpdateButtonOnScreen(m_hover_button
, event
);
3878 // mouse is over a button, so repaint the
3879 // button in hover mode
3880 UpdateButtonOnScreen(part
, event
);
3881 m_hover_button
= part
;
3888 m_hover_button
= NULL
;
3899 void wxFrameManager::OnLeaveWindow(wxMouseEvent
& WXUNUSED(event
))
3903 m_hover_button
= NULL
;
3908 void wxFrameManager::OnChildFocus(wxChildFocusEvent
& event
)
3910 // when a child pane has it's focus set, we should change the
3911 // pane's active state to reflect this. (this is only true if
3912 // active panes are allowed by the owner)
3913 if (GetFlags() & wxAUI_MGR_ALLOW_ACTIVE_PANE
)
3915 if (GetPane(event
.GetWindow()).IsOk())
3917 SetActivePane(m_panes
, event
.GetWindow());
3926 // OnPaneButton() is an event handler that is called
3927 // when a pane button has been pressed.
3928 void wxFrameManager::OnPaneButton(wxFrameManagerEvent
& evt
)
3930 wxASSERT_MSG(evt
.pane
, wxT("Pane Info passed to wxFrameManager::OnPaneButton must be non-null"));
3932 wxPaneInfo
& pane
= *(evt
.pane
);
3934 if (evt
.button
== wxPaneInfo::buttonClose
)
3936 // fire pane close event
3937 wxFrameManagerEvent
e(wxEVT_AUI_PANECLOSE
);
3938 e
.SetPane(evt
.pane
);
3947 else if (evt
.button
== wxPaneInfo::buttonPin
)
3949 if ((m_flags
& wxAUI_MGR_ALLOW_FLOATING
) &&