]> git.saurik.com Git - wxWidgets.git/blame - src/osx/carbon/mdi.cpp
guaranteeing autorelease pools for overridden OnRun on OSX
[wxWidgets.git] / src / osx / carbon / mdi.cpp
CommitLineData
489468fe 1/////////////////////////////////////////////////////////////////////////////
524c47aa 2// Name: src/osx/carbon/mdi.cpp
489468fe
SC
3// Purpose: MDI classes
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
14#if wxUSE_MDI
15
16#include "wx/mdi.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/log.h"
20 #include "wx/menu.h"
21 #include "wx/settings.h"
22 #include "wx/statusbr.h"
23#endif
24
1f0c8f31
SC
25#include "wx/osx/private.h"
26#include "wx/osx/uma.h"
489468fe
SC
27
28IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame, wxFrame)
29IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame, wxFrame)
30IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow, wxWindow)
31
32BEGIN_EVENT_TABLE(wxMDIParentFrame, wxFrame)
33 EVT_ACTIVATE(wxMDIParentFrame::OnActivate)
34 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged)
35END_EVENT_TABLE()
36
489468fe
SC
37#define TRACE_MDI "mdi"
38
39static const int IDM_WINDOWTILEHOR = 4001;
40static const int IDM_WINDOWCASCADE = 4002;
41static const int IDM_WINDOWICONS = 4003;
42static const int IDM_WINDOWNEXT = 4004;
43static const int IDM_WINDOWTILEVERT = 4005;
44
45// others
46
47void UMAHighlightAndActivateWindow( WindowRef inWindowRef , bool inActivate )
48{
cfea8e61 49#if wxOSX_USE_CARBON // TODO REMOVE
489468fe
SC
50 if ( inWindowRef )
51 {
52// bool isHighlighted = IsWindowHighlited( inWindowRef ) ;
53// if ( inActivate != isHighlighted )
54#ifndef __LP64__
55 GrafPtr port ;
56 GetPort( &port ) ;
57 SetPortWindowPort( inWindowRef ) ;
58#endif
59 HiliteWindow( inWindowRef , inActivate ) ;
60 ControlRef control = NULL ;
61 ::GetRootControl( inWindowRef , &control ) ;
62 if ( control )
63 {
64 if ( inActivate )
65 ::ActivateControl( control ) ;
66 else
67 ::DeactivateControl( control ) ;
68 }
69#ifndef __LP64__
70 SetPort( port ) ;
71#endif
72 }
cfea8e61 73#elif defined(wxOSX_USE_COCOA)
de0d2095
SC
74 wxUnusedVar(inActivate);
75 wxUnusedVar(inWindowRef);
cfea8e61 76// TODO: implement me!
489468fe
SC
77#endif
78}
79
80// ----------------------------------------------------------------------------
81// Parent frame
82// ----------------------------------------------------------------------------
83
84void wxMDIParentFrame::Init()
85{
489468fe
SC
86 m_parentFrameActive = true;
87 m_shouldBeShown = false;
88}
89
90bool wxMDIParentFrame::Create(wxWindow *parent,
91 wxWindowID id,
92 const wxString& title,
93 const wxPoint& pos,
94 const wxSize& size,
95 long style,
96 const wxString& name)
97{
98 // this style can be used to prevent a window from having the standard MDI
99 // "Window" menu
100 if ( style & wxFRAME_NO_WINDOW_MENU )
101 {
d2824cdb 102 m_windowMenu = NULL;
489468fe
SC
103 style -= wxFRAME_NO_WINDOW_MENU ;
104 }
105 else // normal case: we have the window menu, so construct it
106 {
107 m_windowMenu = new wxMenu;
108
109 m_windowMenu->Append(IDM_WINDOWCASCADE, wxT("&Cascade"));
110 m_windowMenu->Append(IDM_WINDOWTILEHOR, wxT("Tile &Horizontally"));
111 m_windowMenu->Append(IDM_WINDOWTILEVERT, wxT("Tile &Vertically"));
112 m_windowMenu->AppendSeparator();
113 m_windowMenu->Append(IDM_WINDOWICONS, wxT("&Arrange Icons"));
114 m_windowMenu->Append(IDM_WINDOWNEXT, wxT("&Next"));
115 }
116
117 if ( !wxFrame::Create( parent , id , title , pos , size , style , name ) )
118 return false;
119
120 m_parentFrameActive = true;
121
122 m_clientWindow = OnCreateClient();
daa9c577
VZ
123 if ( !m_clientWindow || !m_clientWindow->CreateClient(this, style) )
124 return false;
489468fe 125
daa9c577 126 return true;
489468fe
SC
127}
128
129wxMDIParentFrame::~wxMDIParentFrame()
130{
131 DestroyChildren();
132
133 // already deleted by DestroyChildren()
134 m_clientWindow = NULL ;
489468fe
SC
135}
136
137void wxMDIParentFrame::SetMenuBar(wxMenuBar *menu_bar)
138{
139 wxFrame::SetMenuBar( menu_bar ) ;
140}
141
142void wxMDIParentFrame::GetRectForTopLevelChildren(int *x, int *y, int *w, int *h)
143{
144 if (x)
145 *x = 0;
146 if (y)
147 *y = 0;
148
149 wxDisplaySize(w, h);
150}
151
152void wxMDIParentFrame::AddChild(wxWindowBase *child)
153{
154 // moved this to front, so that we don't run into unset m_parent problems later
155 wxFrame::AddChild(child);
156
157 if ( !m_currentChild )
158 {
159 m_currentChild = wxDynamicCast(child, wxMDIChildFrame);
160
161 if ( m_currentChild && IsShown() && !ShouldBeVisible() )
162 {
163 // we shouldn't remain visible any more
164 wxFrame::Show(false);
165 m_shouldBeShown = true;
166 }
167 }
168}
169
170void wxMDIParentFrame::RemoveChild(wxWindowBase *child)
171{
172 if ( child == m_currentChild )
173 {
174 // the current child isn't active any more, try to find another one
175 m_currentChild = NULL;
176
177 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
178 node;
179 node = node->GetNext() )
180 {
181 wxMDIChildFrame *
182 childCur = wxDynamicCast(node->GetData(), wxMDIChildFrame);
183 if ( childCur != child )
184 {
185 m_currentChild = childCur;
186 break;
187 }
188 }
189 }
190
191 wxFrame::RemoveChild(child);
192
193 // if there are no more children left we need to show the frame if we
194 // hadn't shown it before because there were active children and it was
195 // useless (note that we have to do it after fully removing the child, i.e.
196 // after calling the base class RemoveChild() as otherwise we risk to touch
197 // pointer to the child being deleted)
198 if ( !m_currentChild && m_shouldBeShown && !IsShown() )
199 {
200 // we have to show it, but at least move it out of sight and make it of
201 // smallest possible size (unfortunately (0, 0) doesn't work so that it
202 // doesn't appear in expose
203 SetSize(-10000, -10000, 1, 1);
204 Show();
205 }
206}
207
208void wxMDIParentFrame::MacActivate(long timestamp, bool activating)
209{
210 wxLogTrace(TRACE_MDI, wxT("MDI PARENT=%p MacActivate(0x%08lx,%s)"), this, timestamp, activating ? wxT("ACTIV") : wxT("deact"));
211
212 if (activating)
213 {
214 if (s_macDeactivateWindow && s_macDeactivateWindow->GetParent() == this)
215 {
216 wxLogTrace(TRACE_MDI, wxT("child had been scheduled for deactivation, rehighlighting"));
217
b2680ced 218 UMAHighlightAndActivateWindow((WindowRef)s_macDeactivateWindow->GetWXWindow(), true);
489468fe
SC
219
220 wxLogTrace(TRACE_MDI, wxT("finished highliting child"));
221
222 s_macDeactivateWindow = NULL;
223 }
224 else if (s_macDeactivateWindow == this)
225 {
226 wxLogTrace(TRACE_MDI, wxT("Avoided deactivation/activation of this=%p"), this);
227
228 s_macDeactivateWindow = NULL;
229 }
230 else // window to deactivate is NULL or is not us or one of our kids
231 {
232 // activate kid instead
233 if (m_currentChild)
234 m_currentChild->MacActivate(timestamp, activating);
235 else
236 wxFrame::MacActivate(timestamp, activating);
237 }
238 }
239 else
240 {
241 // We were scheduled for deactivation, and now we do it.
242 if (s_macDeactivateWindow == this)
243 {
244 s_macDeactivateWindow = NULL;
245 if (m_currentChild)
246 m_currentChild->MacActivate(timestamp, activating);
247 wxFrame::MacActivate(timestamp, activating);
248 }
249 else // schedule ourselves for deactivation
250 {
251 if (s_macDeactivateWindow)
252 wxLogTrace(TRACE_MDI, wxT("window=%p SHOULD have been deactivated, oh well!"), s_macDeactivateWindow);
253 wxLogTrace(TRACE_MDI, wxT("Scheduling delayed MDI Parent deactivation"));
254
255 s_macDeactivateWindow = this;
256 }
257 }
258}
259
260void wxMDIParentFrame::OnActivate(wxActivateEvent& event)
261{
262 event.Skip();
263}
264
489468fe
SC
265// Responds to colour changes, and passes event on to children.
266void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
267{
268 // TODO
269
270 // Propagate the event to the non-top-level children
271 wxFrame::OnSysColourChanged(event);
272}
273
489468fe
SC
274bool wxMDIParentFrame::ShouldBeVisible() const
275{
276 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
277 node;
278 node = node->GetNext() )
279 {
280 wxWindow *win = node->GetData();
281
282 if ( win->IsShown()
283 && !wxDynamicCast(win, wxMDIChildFrame)
284#if wxUSE_STATUSBAR
285 && win != (wxWindow*) GetStatusBar()
286#endif
287 && win != GetClientWindow() )
288 {
289 // if we have a non-MDI child, do remain visible so that it could
290 // be used
291 return true;
292 }
293 }
294
295 return false;
296}
297
298bool wxMDIParentFrame::Show( bool show )
299{
300 m_shouldBeShown = false;
301
302 // don't really show the MDI frame unless it has any children other than
303 // MDI children as it is pretty useless in this case
304
305 if ( show )
306 {
307 if ( !ShouldBeVisible() && m_currentChild )
308 {
309 // don't make the window visible now but remember that we should
310 // have had done it
311 m_shouldBeShown = true;
312
313 return false;
314 }
315 }
316
317 return wxFrame::Show(show);
318}
319
320// ----------------------------------------------------------------------------
321// Child frame
322// ----------------------------------------------------------------------------
323
489468fe
SC
324void wxMDIChildFrame::Init()
325{
326}
327
328bool wxMDIChildFrame::Create(wxMDIParentFrame *parent,
329 wxWindowID id,
330 const wxString& title,
331 const wxPoint& pos,
332 const wxSize& size,
333 long style,
334 const wxString& name)
335{
d2824cdb
VZ
336 m_mdiParent = parent;
337
489468fe
SC
338 SetName(name);
339
340 if ( id == wxID_ANY )
b2680ced 341 id = (int)NewControlId();
489468fe 342
b2680ced 343 wxNonOwnedWindow::Create( parent, id, pos , size , MacRemoveBordersFromStyle(style) , name ) ;
d2824cdb 344
489468fe
SC
345 SetTitle( title );
346
347 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
348
349 return true;
350}
351
352wxMDIChildFrame::~wxMDIChildFrame()
353{
354 DestroyChildren();
355}
356
489468fe
SC
357void wxMDIChildFrame::MacActivate(long timestamp, bool activating)
358{
359 wxLogTrace(TRACE_MDI, wxT("MDI child=%p MacActivate(0x%08lx,%s)"),this, timestamp, activating ? wxT("ACTIV") : wxT("deact"));
360
361 wxMDIParentFrame *mdiparent = wxDynamicCast(m_parent, wxMDIParentFrame);
362 wxASSERT(mdiparent);
363
364 if (activating)
365 {
366 if (s_macDeactivateWindow == m_parent)
367 {
368 wxLogTrace(TRACE_MDI, wxT("parent had been scheduled for deactivation, rehighlighting"));
369
b2680ced 370 UMAHighlightAndActivateWindow((WindowRef)s_macDeactivateWindow->GetWXWindow(), true);
489468fe
SC
371
372 wxLogTrace(TRACE_MDI, wxT("finished highliting parent"));
373
374 s_macDeactivateWindow = NULL;
375 }
376 else if ((mdiparent->m_currentChild == this) || !s_macDeactivateWindow)
377 mdiparent->wxFrame::MacActivate(timestamp, activating);
378
379 if (mdiparent->m_currentChild && mdiparent->m_currentChild != this)
380 mdiparent->m_currentChild->wxFrame::MacActivate(timestamp, false);
381 mdiparent->m_currentChild = this;
382
383 if (s_macDeactivateWindow == this)
384 {
385 wxLogTrace(TRACE_MDI, wxT("Avoided deactivation/activation of this=%p"), this);
386
387 s_macDeactivateWindow = NULL;
388 }
389 else
390 wxFrame::MacActivate(timestamp, activating);
391 }
392 else
393 {
394 // We were scheduled for deactivation, and now we do it.
395 if (s_macDeactivateWindow == this)
396 {
397 s_macDeactivateWindow = NULL;
398 wxFrame::MacActivate(timestamp, activating);
399 if (mdiparent->m_currentChild == this)
400 mdiparent->wxFrame::MacActivate(timestamp, activating);
401 }
402 else // schedule ourselves for deactivation
403 {
404 if (s_macDeactivateWindow)
405 wxLogTrace(TRACE_MDI, wxT("window=%p SHOULD have been deactivated, oh well!"), s_macDeactivateWindow);
406 wxLogTrace(TRACE_MDI, wxT("Scheduling delayed deactivation"));
407
408 s_macDeactivateWindow = this;
409 }
410 }
411}
412
413// MDI operations
489468fe
SC
414void wxMDIChildFrame::Activate()
415{
416 Raise ();
417}
418
419//-----------------------------------------------------------------------------
420// wxMDIClientWindow
421//-----------------------------------------------------------------------------
422
489468fe
SC
423wxMDIClientWindow::~wxMDIClientWindow()
424{
425 DestroyChildren();
426}
427
428bool wxMDIClientWindow::CreateClient(wxMDIParentFrame *parent, long style)
429{
430 if ( !wxWindow::Create(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, style) )
431 return false;
432
433 return true;
434}
435
489468fe
SC
436void wxMDIClientWindow::DoGetClientSize(int *x, int *y) const
437{
438 wxDisplaySize( x , y ) ;
439}
440
489468fe 441#endif // wxUSE_MDI