1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/aui/tabmdi.cpp
3 // Purpose: Generic MDI (Multiple Document Interface) classes
4 // Author: Hans Van Leemputten
5 // Modified by: Benjamin I. Williams / Kirix Corporation
8 // Copyright: (c) Hans Van Leemputten
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
30 #include "wx/aui/tabmdi.h"
37 #include "wx/settings.h"
40 #include "wx/stockitem.h"
50 //-----------------------------------------------------------------------------
51 // wxTabMDIParentFrame
52 //-----------------------------------------------------------------------------
54 IMPLEMENT_DYNAMIC_CLASS(wxTabMDIParentFrame
, wxFrame
)
56 BEGIN_EVENT_TABLE(wxTabMDIParentFrame
, wxFrame
)
58 EVT_MENU (wxID_ANY
, wxTabMDIParentFrame::DoHandleMenu
)
62 wxTabMDIParentFrame::wxTabMDIParentFrame()
67 wxTabMDIParentFrame::wxTabMDIParentFrame(wxWindow
*parent
,
69 const wxString
& title
,
76 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
79 wxTabMDIParentFrame::~wxTabMDIParentFrame()
81 // Make sure the client window is destructed before the menu bars are!
82 wxDELETE(m_pClientWindow
);
85 RemoveWindowMenu(GetMenuBar());
90 bool wxTabMDIParentFrame::Create(wxWindow
*parent
,
92 const wxString
& title
,
99 // this style can be used to prevent a window from having the standard MDI
101 if (!(style
& wxFRAME_NO_WINDOW_MENU
))
103 m_pWindowMenu
= new wxMenu
;
104 m_pWindowMenu
->Append(wxWINDOWCLOSE
, _("Cl&ose"));
105 m_pWindowMenu
->Append(wxWINDOWCLOSEALL
, _("Close All"));
106 m_pWindowMenu
->AppendSeparator();
107 m_pWindowMenu
->Append(wxWINDOWNEXT
, _("&Next"));
108 m_pWindowMenu
->Append(wxWINDOWPREV
, _("&Previous"));
110 #endif // wxUSE_MENUS
112 wxFrame::Create(parent
, id
, title
, pos
, size
, style
, name
);
118 void wxTabMDIParentFrame::SetWindowMenu(wxMenu
* pMenu
)
120 // Replace the window menu from the currently loaded menu bar.
121 wxMenuBar
*pMenuBar
= GetMenuBar();
125 RemoveWindowMenu(pMenuBar
);
126 wxDELETE(m_pWindowMenu
);
131 m_pWindowMenu
= pMenu
;
132 AddWindowMenu(pMenuBar
);
136 void wxTabMDIParentFrame::SetMenuBar(wxMenuBar
* pMenuBar
)
138 // Remove the Window menu from the old menu bar
139 RemoveWindowMenu(GetMenuBar());
141 // Add the Window menu to the new menu bar.
142 AddWindowMenu(pMenuBar
);
144 wxFrame::SetMenuBar(pMenuBar
);
145 m_pMyMenuBar
= GetMenuBar();
147 #endif // wxUSE_MENUS
149 void wxTabMDIParentFrame::SetChildMenuBar(wxTabMDIChildFrame
* pChild
)
154 // No Child, set Our menu bar back.
155 SetMenuBar(m_pMyMenuBar
);
157 // Make sure we know our menu bar is in use
158 //m_pMyMenuBar = NULL;
162 if (pChild
->GetMenuBar() == NULL
)
165 // Do we need to save the current bar?
166 if (m_pMyMenuBar
== NULL
)
167 m_pMyMenuBar
= GetMenuBar();
169 SetMenuBar(pChild
->GetMenuBar());
171 #endif // wxUSE_MENUS
174 bool wxTabMDIParentFrame::ProcessEvent(wxEvent
& event
)
176 // Stops the same event being processed repeatedly
177 static wxEventType inEvent
= wxEVT_NULL
;
178 if (inEvent
== event
.GetEventType())
181 inEvent
= event
.GetEventType();
183 // Let the active child (if any) process the event first.
185 if (m_pActiveChild
&&
186 event
.IsCommandEvent() &&
187 event
.GetEventObject() != m_pClientWindow
&&
188 !(event
.GetEventType() == wxEVT_ACTIVATE
||
189 event
.GetEventType() == wxEVT_SET_FOCUS
||
190 event
.GetEventType() == wxEVT_KILL_FOCUS
||
191 event
.GetEventType() == wxEVT_CHILD_FOCUS
||
192 event
.GetEventType() == wxEVT_COMMAND_SET_FOCUS
||
193 event
.GetEventType() == wxEVT_COMMAND_KILL_FOCUS
)
196 res
= m_pActiveChild
->GetEventHandler()->ProcessEvent(event
);
199 // If the event was not handled this frame will handle it!
202 //res = GetEventHandler()->ProcessEvent(event);
203 res
= wxEvtHandler::ProcessEvent(event
);
206 inEvent
= wxEVT_NULL
;
211 wxTabMDIChildFrame
*wxTabMDIParentFrame::GetActiveChild() const
213 return m_pActiveChild
;
216 void wxTabMDIParentFrame::SetActiveChild(wxTabMDIChildFrame
* pChildFrame
)
218 m_pActiveChild
= pChildFrame
;
221 wxTabMDIClientWindow
*wxTabMDIParentFrame::GetClientWindow() const
223 return m_pClientWindow
;
226 wxTabMDIClientWindow
*wxTabMDIParentFrame::OnCreateClient()
228 m_pClientWindow
= new wxTabMDIClientWindow( this );
229 return m_pClientWindow
;
232 void wxTabMDIParentFrame::ActivateNext()
234 if (m_pClientWindow
&& m_pClientWindow
->GetSelection() != wxNOT_FOUND
)
236 size_t active
= m_pClientWindow
->GetSelection() + 1;
237 if (active
>= m_pClientWindow
->GetPageCount())
240 m_pClientWindow
->SetSelection(active
);
244 void wxTabMDIParentFrame::ActivatePrevious()
246 if (m_pClientWindow
&& m_pClientWindow
->GetSelection() != wxNOT_FOUND
)
248 int active
= m_pClientWindow
->GetSelection() - 1;
250 active
= m_pClientWindow
->GetPageCount() - 1;
252 m_pClientWindow
->SetSelection(active
);
256 void wxTabMDIParentFrame::Init()
258 m_pClientWindow
= NULL
;
259 m_pActiveChild
= NULL
;
261 m_pWindowMenu
= NULL
;
263 #endif // wxUSE_MENUS
267 void wxTabMDIParentFrame::RemoveWindowMenu(wxMenuBar
* pMenuBar
)
269 if (pMenuBar
&& m_pWindowMenu
)
271 // Remove old window menu
272 int pos
= pMenuBar
->FindMenu(_("&Window"));
273 if (pos
!= wxNOT_FOUND
)
275 // DBG:: We're going to delete the wrong menu!!!
276 wxASSERT(m_pWindowMenu
== pMenuBar
->GetMenu(pos
));
277 pMenuBar
->Remove(pos
);
282 void wxTabMDIParentFrame::AddWindowMenu(wxMenuBar
*pMenuBar
)
284 if (pMenuBar
&& m_pWindowMenu
)
286 int pos
= pMenuBar
->FindMenu(wxGetStockLabel(wxID_HELP
,false));
287 if (pos
== wxNOT_FOUND
)
288 pMenuBar
->Append(m_pWindowMenu
, _("&Window"));
290 pMenuBar
->Insert(pos
, m_pWindowMenu
, _("&Window"));
294 void wxTabMDIParentFrame::DoHandleMenu(wxCommandEvent
& event
)
296 switch (event
.GetId())
300 m_pActiveChild
->Close();
302 case wxWINDOWCLOSEALL
:
303 while (m_pActiveChild
)
305 if (!m_pActiveChild
->Close())
311 delete m_pActiveChild
;
312 m_pActiveChild
= NULL
;
326 #endif // wxUSE_MENUS
328 void wxTabMDIParentFrame::DoGetClientSize(int* width
, int* height
) const
330 wxFrame::DoGetClientSize(width
, height
);
333 //-----------------------------------------------------------------------------
334 // wxTabMDIChildFrame
335 //-----------------------------------------------------------------------------
337 IMPLEMENT_DYNAMIC_CLASS(wxTabMDIChildFrame
, wxPanel
)
339 BEGIN_EVENT_TABLE(wxTabMDIChildFrame
, wxPanel
)
340 EVT_MENU_HIGHLIGHT_ALL(wxTabMDIChildFrame::OnMenuHighlight
)
341 EVT_ACTIVATE(wxTabMDIChildFrame::OnActivate
)
342 EVT_CLOSE(wxTabMDIChildFrame::OnCloseWindow
)
345 wxTabMDIChildFrame::wxTabMDIChildFrame()
350 wxTabMDIChildFrame::wxTabMDIChildFrame(wxTabMDIParentFrame
*parent
,
352 const wxString
& title
,
353 const wxPoint
& WXUNUSED(pos
),
356 const wxString
& name
)
359 Create(parent
, id
, title
, wxDefaultPosition
, size
, style
, name
);
362 wxTabMDIChildFrame::~wxTabMDIChildFrame()
365 wxDELETE(m_pMenuBar
);
366 #endif // wxUSE_MENUS
369 bool wxTabMDIChildFrame::Create(wxTabMDIParentFrame
* parent
,
371 const wxString
& title
,
372 const wxPoint
& WXUNUSED(pos
),
375 const wxString
& name
)
377 wxTabMDIClientWindow
* pClientWindow
= parent
->GetClientWindow();
378 wxASSERT_MSG((pClientWindow
!= (wxWindow
*) NULL
), wxT("Missing MDI client window."));
380 wxPanel::Create(pClientWindow
, id
, wxDefaultPosition
, size
, style
|wxNO_BORDER
, name
);
382 SetMDIParentFrame(parent
);
384 // this is the currently active child
385 parent
->SetActiveChild(this);
389 pClientWindow
->AddPage(this, title
, true);
390 pClientWindow
->Refresh();
395 bool wxTabMDIChildFrame::Destroy()
397 wxTabMDIParentFrame
* pParentFrame
= GetMDIParentFrame();
398 wxASSERT_MSG(pParentFrame
, wxT("Missing MDI Parent Frame"));
400 wxTabMDIClientWindow
* pClientWindow
= pParentFrame
->GetClientWindow();
401 wxASSERT_MSG(pClientWindow
, wxT("Missing MDI Client Window"));
403 bool bActive
= false;
404 if (pParentFrame
->GetActiveChild() == this)
406 pParentFrame
->SetActiveChild(NULL
);
407 pParentFrame
->SetChildMenuBar(NULL
);
411 size_t pos
, page_count
= pClientWindow
->GetPageCount();
412 for (pos
= 0; pos
< page_count
; pos
++)
414 if (pClientWindow
->GetPage(pos
) == this)
415 return pClientWindow
->DeletePage(pos
);
422 void wxTabMDIChildFrame::SetMenuBar(wxMenuBar
*menu_bar
)
424 wxMenuBar
*pOldMenuBar
= m_pMenuBar
;
425 m_pMenuBar
= menu_bar
;
429 wxTabMDIParentFrame
* pParentFrame
= GetMDIParentFrame();
430 wxASSERT_MSG(pParentFrame
, wxT("Missing MDI Parent Frame"));
432 m_pMenuBar
->SetParent(pParentFrame
);
433 if (pParentFrame
->GetActiveChild() == this)
435 // replace current menu bars
437 pParentFrame
->SetChildMenuBar(NULL
);
438 pParentFrame
->SetChildMenuBar(this);
443 wxMenuBar
*wxTabMDIChildFrame::GetMenuBar() const
447 #endif // wxUSE_MENUS
449 void wxTabMDIChildFrame::SetTitle(const wxString
& title
)
453 wxTabMDIParentFrame
* pParentFrame
= GetMDIParentFrame();
454 wxASSERT_MSG(pParentFrame
, wxT("Missing MDI Parent Frame"));
456 wxTabMDIClientWindow
* pClientWindow
= pParentFrame
->GetClientWindow();
457 if (pClientWindow
!= NULL
)
460 for (pos
= 0; pos
< pClientWindow
->GetPageCount(); pos
++)
462 if (pClientWindow
->GetPage(pos
) == this)
464 pClientWindow
->SetPageText(pos
, m_title
);
471 wxString
wxTabMDIChildFrame::GetTitle() const
476 void wxTabMDIChildFrame::Activate()
478 wxTabMDIParentFrame
* pParentFrame
= GetMDIParentFrame();
479 wxASSERT_MSG(pParentFrame
, wxT("Missing MDI Parent Frame"));
481 wxTabMDIClientWindow
* pClientWindow
= pParentFrame
->GetClientWindow();
483 if (pClientWindow
!= NULL
)
486 for (pos
= 0; pos
< pClientWindow
->GetPageCount(); pos
++)
488 if (pClientWindow
->GetPage(pos
) == this)
490 pClientWindow
->SetSelection(pos
);
497 void wxTabMDIChildFrame::OnMenuHighlight(wxMenuEvent
& event
)
500 if (m_pMDIParentFrame
)
502 // we don't have any help text for this item,
503 // but may be the MDI frame does?
504 m_pMDIParentFrame
->OnMenuHighlight(event
);
508 #endif // wxUSE_STATUSBAR
511 void wxTabMDIChildFrame::OnActivate(wxActivateEvent
& WXUNUSED(event
))
516 void wxTabMDIChildFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
521 void wxTabMDIChildFrame::SetMDIParentFrame(wxTabMDIParentFrame
* parentFrame
)
523 m_pMDIParentFrame
= parentFrame
;
526 wxTabMDIParentFrame
* wxTabMDIChildFrame::GetMDIParentFrame() const
528 return m_pMDIParentFrame
;
531 void wxTabMDIChildFrame::Init()
533 m_pMDIParentFrame
= NULL
;
536 #endif // wxUSE_MENUS
539 bool wxTabMDIChildFrame::Show(bool WXUNUSED(show
))
545 void wxTabMDIChildFrame::DoShow(bool show
)
547 wxWindow::Show(show
);
550 void wxTabMDIChildFrame::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
552 m_mdi_newrect
= wxRect(x
, y
, width
, height
);
554 wxPanel::DoSetSize(x
,y
,width
, height
, sizeFlags
);
556 wxUnusedVar(sizeFlags
);
560 void wxTabMDIChildFrame::DoMoveWindow(int x
, int y
, int width
, int height
)
562 m_mdi_newrect
= wxRect(x
, y
, width
, height
);
565 void wxTabMDIChildFrame::ApplyMDIChildFrameRect()
567 if (m_mdi_currect
!= m_mdi_newrect
)
569 wxPanel::DoMoveWindow(m_mdi_newrect
.x
, m_mdi_newrect
.y
,
570 m_mdi_newrect
.width
, m_mdi_newrect
.height
);
571 m_mdi_currect
= m_mdi_newrect
;
576 //-----------------------------------------------------------------------------
577 // wxTabMDIClientWindow
578 //-----------------------------------------------------------------------------
580 IMPLEMENT_DYNAMIC_CLASS(wxTabMDIClientWindow
, wxAuiMultiNotebook
)
582 BEGIN_EVENT_TABLE(wxTabMDIClientWindow
, wxAuiMultiNotebook
)
583 EVT_AUINOTEBOOK_PAGE_CHANGED(wxID_ANY
, wxTabMDIClientWindow::OnPageChanged
)
584 EVT_SIZE(wxTabMDIClientWindow::OnSize
)
587 wxTabMDIClientWindow::wxTabMDIClientWindow()
591 wxTabMDIClientWindow::wxTabMDIClientWindow(wxTabMDIParentFrame
* parent
, long style
)
593 CreateClient(parent
, style
);
596 wxTabMDIClientWindow::~wxTabMDIClientWindow()
601 bool wxTabMDIClientWindow::CreateClient(wxTabMDIParentFrame
* parent
, long style
)
603 SetWindowStyleFlag(style
);
605 if (!wxAuiMultiNotebook::Create(parent
,
614 wxColour bkcolour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
615 SetBackgroundColour(bkcolour
);
617 m_mgr
.GetArtProvider()->SetColour(wxAUI_ART_BACKGROUND_COLOUR
, bkcolour
);
622 int wxTabMDIClientWindow::SetSelection(size_t nPage
)
624 return wxAuiMultiNotebook::SetSelection(nPage
);
627 void wxTabMDIClientWindow::PageChanged(int old_selection
, int new_selection
)
629 // don't do anything if the page doesn't actually change
630 if (old_selection
== new_selection
)
633 // don't do anything if the new page is already active
634 if (new_selection
!= -1)
636 wxTabMDIChildFrame
* child
= (wxTabMDIChildFrame
*)GetPage(new_selection
);
637 if (child
->GetMDIParentFrame()->GetActiveChild() == child
)
641 // notify old active child that it has been deactivated
642 if (old_selection
!= -1)
644 wxTabMDIChildFrame
* old_child
= (wxTabMDIChildFrame
*)GetPage(old_selection
);
645 wxASSERT_MSG(old_child
, wxT("wxTabMDIClientWindow::PageChanged - null page pointer"));
647 wxActivateEvent
event(wxEVT_ACTIVATE
, false, old_child
->GetId());
648 event
.SetEventObject(old_child
);
649 old_child
->GetEventHandler()->ProcessEvent(event
);
652 // notify new active child that it has been activated
653 if (new_selection
!= -1)
655 wxTabMDIChildFrame
* active_child
= (wxTabMDIChildFrame
*)GetPage(new_selection
);
656 wxASSERT_MSG(active_child
, wxT("wxTabMDIClientWindow::PageChanged - null page pointer"));
658 wxActivateEvent
event(wxEVT_ACTIVATE
, true, active_child
->GetId());
659 event
.SetEventObject(active_child
);
660 active_child
->GetEventHandler()->ProcessEvent(event
);
662 if (active_child
->GetMDIParentFrame())
664 active_child
->GetMDIParentFrame()->SetActiveChild(active_child
);
665 active_child
->GetMDIParentFrame()->SetChildMenuBar(active_child
);
670 void wxTabMDIClientWindow::OnPageChanged(wxAuiNotebookEvent
& evt
)
672 PageChanged(evt
.GetOldSelection(), evt
.GetSelection());
676 void wxTabMDIClientWindow::OnSize(wxSizeEvent
& evt
)
678 wxAuiMultiNotebook::OnSize(evt
);
680 for (size_t pos
= 0; pos
< GetPageCount(); pos
++)
681 ((wxTabMDIChildFrame
*)GetPage(pos
))->ApplyMDIChildFrameRect();