1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/dialog.mm
3 // Purpose: wxDialog class
4 // Author: David Elliott
8 // Copyright: 2002 David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/dialog.h"
19 #include "wx/settings.h"
22 #include "wx/cocoa/autorelease.h"
23 #include "wx/cocoa/string.h"
25 #import <AppKit/NSPanel.h>
26 #import <AppKit/NSApplication.h>
27 #import <AppKit/NSEvent.h>
28 #import <Foundation/NSRunLoop.h>
30 // Lists to keep track of windows, so we can disable/enable them
32 static wxWindowList wxModalDialogs;
34 IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow)
36 WX_IMPLEMENT_COCOA_OWNER(wxDialog,NSPanel,NSWindow,NSWindow)
41 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
44 bool wxDialog::Create(wxWindow *parent, wxWindowID winid,
45 const wxString& title,
51 wxAutoNSAutoreleasePool pool;
52 wxTopLevelWindows.Append(this);
54 if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name))
58 parent->AddChild(this);
60 unsigned int cocoaStyle = NSWindowStyleForWxStyle(style);
62 NSRect cocoaRect = MakeInitialNSWindowContentRect(pos,size,cocoaStyle);
64 m_cocoaNSWindow = NULL;
65 SetNSPanel([[NSPanel alloc] initWithContentRect:cocoaRect styleMask:cocoaStyle backing:NSBackingStoreBuffered defer:NO]);
66 // NOTE: SetNSWindow has retained the Cocoa object for this object.
67 // Because we do not release on close, the following release matches the
68 // above alloc and thus the retain count will be 1.
69 [m_cocoaNSWindow release];
70 wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxDialog m_cocoaNSWindow retainCount=%d"),[m_cocoaNSWindow retainCount]);
71 [m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)];
72 [m_cocoaNSWindow setHidesOnDeactivate:NO];
79 DisassociateNSPanel(GetNSPanel());
82 void wxDialog::CocoaDelegate_windowWillClose(void)
85 /* Actually, this isn't true anymore */
86 wxLogTrace(wxTRACE_COCOA,wxT("Woah: Dialogs are not generally closed"));
89 void wxDialog::SetModal(bool flag)
91 wxFAIL_MSG( wxT("wxDialog:SetModal obsolete now") );
94 bool wxDialog::Show(bool show)
101 wxAutoNSAutoreleasePool pool;
104 { // ShowModal() will show the dialog
112 { // this doesn't hide the dialog, base class Show(false) does.
113 wxLogTrace(wxTRACE_COCOA,wxT("abortModal"));
114 [wxTheApp->GetNSApplication() abortModal];
115 wxModalDialogs.DeleteObject(this);
119 return wxTopLevelWindow::Show(show);
122 // Shows the dialog and begins a modal event loop. When the event loop
123 // is stopped (via EndModal()) it returns the exit code.
124 int wxDialog::ShowModal()
126 wxCHECK_MSG(!IsModal(),GetReturnCode(),wxT("wxDialog::ShowModal called within its own modal loop"));
128 // Show(true) will set m_isShown = true
131 wxModalDialogs.Append(this);
133 wxLogTrace(wxTRACE_COCOA,wxT("runModal"));
134 NSApplication *theNSApp = wxTheApp->GetNSApplication();
135 // If the app hasn't started, flush the event queue
136 // If we don't do this, the Dock doesn't get the message that
137 // the app has started so will refuse to activate it.
138 if(![theNSApp isRunning])
140 // We should only do a few iterations so one pool should be okay
141 wxAutoNSAutoreleasePool pool;
142 while(NSEvent *event = [theNSApp
143 nextEventMatchingMask:NSAnyEventMask
144 untilDate:[NSDate distantPast]
145 inMode:NSDefaultRunLoopMode
148 [theNSApp sendEvent: event];
154 wxAutoNSAutoreleasePool pool;
155 [wxTheApp->GetNSApplication() runModalForWindow:m_cocoaNSWindow];
157 wxLogTrace(wxTRACE_COCOA,wxT("runModal END"));
159 return GetReturnCode();
162 void wxDialog::EndModal(int retCode)
164 wxASSERT_MSG(IsModal(), wxT("EndModal() should only be used within ShowModal()"));
165 SetReturnCode(retCode);