1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: MDI classes
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "mdi.h"
18 #include "wx/settings.h"
21 #include "wx/mac/private.h"
22 #include "wx/mac/uma.h"
24 extern wxWindowList wxModelessWindows
;
26 #if !USE_SHARED_LIBRARY
27 IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame
, wxFrame
)
28 IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame
, wxFrame
)
29 IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow
, wxWindow
)
31 BEGIN_EVENT_TABLE(wxMDIParentFrame
, wxFrame
)
32 EVT_ACTIVATE(wxMDIParentFrame::OnActivate
)
33 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged
)
36 BEGIN_EVENT_TABLE(wxMDIClientWindow
, wxWindow
)
37 EVT_SCROLL(wxMDIClientWindow::OnScroll
)
42 static const int IDM_WINDOWTILE
= 4001;
43 static const int IDM_WINDOWTILEHOR
= 4001;
44 static const int IDM_WINDOWCASCADE
= 4002;
45 static const int IDM_WINDOWICONS
= 4003;
46 static const int IDM_WINDOWNEXT
= 4004;
47 static const int IDM_WINDOWTILEVERT
= 4005;
48 static const int IDM_WINDOWPREV
= 4006;
50 // This range gives a maximum of 500 MDI children. Should be enough :-)
51 static const int wxFIRST_MDI_CHILD
= 4100;
52 static const int wxLAST_MDI_CHILD
= 4600;
54 // Status border dimensions
55 static const int wxTHICK_LINE_BORDER
= 3;
59 wxMDIParentFrame::wxMDIParentFrame()
61 m_clientWindow
= NULL
;
62 m_currentChild
= NULL
;
63 m_windowMenu
= (wxMenu
*) NULL
;
64 m_parentFrameActive
= TRUE
;
67 bool wxMDIParentFrame::Create(wxWindow
*parent
,
69 const wxString
& title
,
75 m_clientWindow
= NULL
;
76 m_currentChild
= NULL
;
78 // this style can be used to prevent a window from having the standard MDI
80 if ( style
& wxFRAME_NO_WINDOW_MENU
)
82 m_windowMenu
= (wxMenu
*)NULL
;
83 style
-= wxFRAME_NO_WINDOW_MENU
;
85 else // normal case: we have the window menu, so construct it
87 m_windowMenu
= new wxMenu
;
89 m_windowMenu
->Append(IDM_WINDOWCASCADE
, wxT("&Cascade"));
90 m_windowMenu
->Append(IDM_WINDOWTILEHOR
, wxT("Tile &Horizontally"));
91 m_windowMenu
->Append(IDM_WINDOWTILEVERT
, wxT("Tile &Vertically"));
92 m_windowMenu
->AppendSeparator();
93 m_windowMenu
->Append(IDM_WINDOWICONS
, wxT("&Arrange Icons"));
94 m_windowMenu
->Append(IDM_WINDOWNEXT
, wxT("&Next"));
97 wxFrame::Create( parent
, id
, title
, pos
, size
, style
, name
) ;
98 m_parentFrameActive
= TRUE
;
105 wxMDIParentFrame::~wxMDIParentFrame()
108 // already delete by DestroyChildren()
110 m_frameToolBar
= NULL
;
113 m_frameStatusBar
= NULL
;
115 m_clientWindow
= NULL
;
120 m_windowMenu
= (wxMenu
*) NULL
;
123 if ( m_clientWindow
)
125 delete m_clientWindow
;
126 m_clientWindow
= NULL
;
131 void wxMDIParentFrame::SetMenuBar(wxMenuBar
*menu_bar
)
133 wxFrame::SetMenuBar( menu_bar
) ;
136 void wxMDIParentFrame::MacActivate(long timestamp
, bool activating
)
138 wxLogDebug(wxT("MDI PARENT=%p MacActivate(0x%08lx,%s)"),this,timestamp
,activating
?wxT("ACTIV"):wxT("deact"));
141 if(s_macDeactivateWindow
&& s_macDeactivateWindow
->GetParent()==this)
143 wxLogDebug(wxT("child had been scheduled for deactivation, rehighlighting"));
144 UMAHighlightAndActivateWindow((WindowRef
)s_macDeactivateWindow
->MacGetWindowRef(), true);
145 wxLogDebug(wxT("done highliting child"));
146 s_macDeactivateWindow
= NULL
;
148 else if(s_macDeactivateWindow
== this)
150 wxLogDebug(wxT("Avoided deactivation/activation of this=%p"), this);
151 s_macDeactivateWindow
= NULL
;
153 else // window to deactivate is NULL or is not us or one of our kids
155 // activate kid instead
157 m_currentChild
->MacActivate(timestamp
,activating
);
159 wxFrame::MacActivate(timestamp
,activating
);
164 // We were scheduled for deactivation, and now we do it.
165 if(s_macDeactivateWindow
==this)
167 s_macDeactivateWindow
= NULL
;
169 m_currentChild
->MacActivate(timestamp
,activating
);
170 wxFrame::MacActivate(timestamp
,activating
);
172 else // schedule ourselves for deactivation
174 if(s_macDeactivateWindow
)
175 wxLogDebug(wxT("window=%p SHOULD have been deactivated, oh well!"),s_macDeactivateWindow
);
176 wxLogDebug(wxT("Scheduling delayed MDI Parent deactivation"));
177 s_macDeactivateWindow
= this;
182 void wxMDIParentFrame::OnActivate(wxActivateEvent
& event
)
187 // Returns the active MDI child window
188 wxMDIChildFrame
*wxMDIParentFrame::GetActiveChild() const
190 return m_currentChild
;
193 // Create the client window class (don't Create the window,
194 // just return a new class)
195 wxMDIClientWindow
*wxMDIParentFrame::OnCreateClient()
197 m_clientWindow
= new wxMDIClientWindow( this );
198 return m_clientWindow
;
201 // Responds to colour changes, and passes event on to children.
202 void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
206 // Propagate the event to the non-top-level children
207 wxFrame::OnSysColourChanged(event
);
211 void wxMDIParentFrame::Cascade()
216 void wxMDIParentFrame::Tile()
221 void wxMDIParentFrame::ArrangeIcons()
226 void wxMDIParentFrame::ActivateNext()
231 void wxMDIParentFrame::ActivatePrevious()
238 wxMDIChildFrame::wxMDIChildFrame()
242 void wxMDIChildFrame::Init()
246 bool wxMDIChildFrame::Create(wxMDIParentFrame
*parent
,
248 const wxString
& title
,
252 const wxString
& name
)
259 m_windowId
= (int)NewControlId();
261 if (parent
) parent
->AddChild(this);
263 MacCreateRealWindow( title
, pos
, size
, MacRemoveBordersFromStyle(style
) , name
) ;
265 m_macWindowBackgroundTheme
= kThemeBrushDocumentWindowBackground
;
266 SetThemeWindowBackground( (WindowRef
) m_macWindow
, m_macWindowBackgroundTheme
, false ) ;
268 wxModelessWindows
.Append(this);
272 wxMDIChildFrame::~wxMDIChildFrame()
274 wxMDIParentFrame
*mdiparent
= wxDynamicCast(m_parent
, wxMDIParentFrame
);
276 if(mdiparent
->m_currentChild
== this)
277 mdiparent
->m_currentChild
= NULL
;
279 // already delete by DestroyChildren()
281 m_frameToolBar
= NULL
;
284 m_frameStatusBar
= NULL
;
288 void wxMDIChildFrame::SetMenuBar(wxMenuBar
*menu_bar
)
290 return wxFrame::SetMenuBar( menu_bar
) ;
293 void wxMDIChildFrame::MacActivate(long timestamp
, bool activating
)
295 wxLogDebug(wxT("MDI child=%p MacActivate(0x%08lx,%s)"),this,timestamp
,activating
?wxT("ACTIV"):wxT("deact"));
296 wxMDIParentFrame
*mdiparent
= wxDynamicCast(m_parent
, wxMDIParentFrame
);
300 if(s_macDeactivateWindow
== m_parent
)
302 wxLogDebug(wxT("parent had been scheduled for deactivation, rehighlighting"));
303 UMAHighlightAndActivateWindow((WindowRef
)s_macDeactivateWindow
->MacGetWindowRef(), true);
304 wxLogDebug(wxT("done highliting parent"));
305 s_macDeactivateWindow
= NULL
;
307 else if((mdiparent
->m_currentChild
==this) || !s_macDeactivateWindow
)
308 mdiparent
->wxFrame::MacActivate(timestamp
,activating
);
310 if(mdiparent
->m_currentChild
&& mdiparent
->m_currentChild
!=this)
311 mdiparent
->m_currentChild
->wxFrame::MacActivate(timestamp
,false);
312 mdiparent
->m_currentChild
= this;
314 if(s_macDeactivateWindow
==this)
316 wxLogDebug(wxT("Avoided deactivation/activation of this=%p"),this);
317 s_macDeactivateWindow
=NULL
;
320 wxFrame::MacActivate(timestamp
, activating
);
324 // We were scheduled for deactivation, and now we do it.
325 if(s_macDeactivateWindow
==this)
327 s_macDeactivateWindow
= NULL
;
328 wxFrame::MacActivate(timestamp
,activating
);
329 if(mdiparent
->m_currentChild
==this)
330 mdiparent
->wxFrame::MacActivate(timestamp
,activating
);
332 else // schedule ourselves for deactivation
334 if(s_macDeactivateWindow
)
335 wxLogDebug(wxT("window=%p SHOULD have been deactivated, oh well!"),s_macDeactivateWindow
);
336 wxLogDebug(wxT("Scheduling delayed deactivation"));
337 s_macDeactivateWindow
= this;
343 void wxMDIChildFrame::Maximize()
345 wxFrame::Maximize() ;
348 void wxMDIChildFrame::Restore()
353 void wxMDIChildFrame::Activate()
357 //-----------------------------------------------------------------------------
359 //-----------------------------------------------------------------------------
361 wxMDIClientWindow::wxMDIClientWindow()
365 wxMDIClientWindow::~wxMDIClientWindow()
370 bool wxMDIClientWindow::CreateClient(wxMDIParentFrame
*parent
, long style
)
373 m_windowId
= (int)NewControlId();
377 parent
->AddChild(this);
379 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
381 wxModelessWindows
.Append(this);
385 // Get size *available for subwindows* i.e. excluding menu bar.
386 void wxMDIClientWindow::DoGetClientSize(int *x
, int *y
) const
388 wxDisplaySize( x
, y
) ;
391 // Explicitly call default scroll behaviour
392 void wxMDIClientWindow::OnScroll(wxScrollEvent
& event
)