1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/cocoa/dirdlg.mm
3 // Purpose: wxDirDialog
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
23 #if wxUSE_DIRDLG && !defined(__WXUNIVERSAL__)
25 #include "wx/dirdlg.h"
28 #include "wx/msgdlg.h"
29 #include "wx/filedlg.h"
33 #include "wx/filename.h"
34 #include "wx/evtloop.h"
35 #include "wx/testing.h"
37 #include "wx/osx/private.h"
39 IMPLEMENT_CLASS(wxDirDialog, wxDialog)
41 wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message,
42 const wxString& defaultPath, long style, const wxPoint& WXUNUSED(pos),
43 const wxSize& WXUNUSED(size), const wxString& WXUNUSED(name))
47 SetMessage( message );
48 SetWindowStyle(style);
50 m_sheetDelegate = [[ModalDialogDelegate alloc] init];
51 [(ModalDialogDelegate*)m_sheetDelegate setImplementation: this];
54 wxDirDialog::~wxDirDialog()
56 [m_sheetDelegate release];
59 WX_NSOpenPanel wxDirDialog::OSXCreatePanel() const
61 NSOpenPanel *oPanel = [NSOpenPanel openPanel];
62 [oPanel setCanChooseDirectories:YES];
63 [oPanel setResolvesAliases:YES];
64 [oPanel setCanChooseFiles:NO];
66 wxCFStringRef cf( m_message );
67 [oPanel setMessage:cf.AsNSString()];
69 if ( !HasFlag(wxDD_DIR_MUST_EXIST) )
70 [oPanel setCanCreateDirectories:YES];
75 void wxDirDialog::ShowWindowModal()
77 wxNonOwnedWindow* parentWindow = NULL;
80 parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent()));
82 wxCHECK_RET(parentWindow, "Window modal display requires parent.");
84 m_modality = wxDIALOG_MODALITY_WINDOW_MODAL;
86 NSOpenPanel *oPanel = OSXCreatePanel();
88 NSWindow* nativeParent = parentWindow->GetWXWindow();
89 wxCFStringRef dir( m_path );
90 [oPanel beginSheetForDirectory:dir.AsNSString() file:nil types: nil
91 modalForWindow: nativeParent modalDelegate: m_sheetDelegate
92 didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:)
96 int wxDirDialog::ShowModal()
98 WX_TESTING_SHOW_MODAL_HOOK();
100 wxCFEventLoopPauseIdleEvents pause;
102 NSOpenPanel *oPanel = OSXCreatePanel();
104 wxCFStringRef dir( m_path );
106 m_path = wxEmptyString;
110 returnCode = (NSInteger)[oPanel runModalForDirectory:dir.AsNSString() file:nil types:nil];
111 ModalFinishedCallback(oPanel, returnCode);
113 return GetReturnCode();
116 void wxDirDialog::ModalFinishedCallback(void* panel, int returnCode)
118 int result = wxID_CANCEL;
120 if (returnCode == NSOKButton )
122 NSOpenPanel* oPanel = (NSOpenPanel*)panel;
123 SetPath( wxCFStringRef::AsStringWithNormalizationFormC([[oPanel filenames] objectAtIndex:0]));
126 SetReturnCode(result);
128 if (GetModality() == wxDIALOG_MODALITY_WINDOW_MODAL)
129 SendWindowModalDialogEvent ( wxEVT_WINDOW_MODAL_DIALOG_CLOSED );
132 #endif // wxUSE_DIRDLG