]> git.saurik.com Git - wxWidgets.git/blame - src/osx/carbon/dirdlg.cpp
Fix file paths in the header comments.
[wxWidgets.git] / src / osx / carbon / dirdlg.cpp
CommitLineData
489468fe 1/////////////////////////////////////////////////////////////////////////////
524c47aa 2// Name: src/osx/carbon/dirdlg.cpp
489468fe
SC
3// Purpose: wxDirDialog
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
b2680ced 14#if wxUSE_DIRDLG && !defined(__WXUNIVERSAL__)
489468fe
SC
15
16#include "wx/dirdlg.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/utils.h"
20 #include "wx/dialog.h"
21 #include "wx/cmndata.h"
22#endif // WX_PRECOMP
23
24#include "wx/filename.h"
25
1f0c8f31 26#include "wx/osx/private.h"
489468fe 27
489468fe
SC
28IMPLEMENT_CLASS(wxDirDialog, wxDialog)
29
30static pascal void NavEventProc(
31 NavEventCallbackMessage inSelector,
32 NavCBRecPtr ioParams,
33 NavCallBackUserData ioUserData );
34
35static NavEventUPP sStandardNavEventFilter = NewNavEventUPP(NavEventProc);
36
37static pascal void NavEventProc(
38 NavEventCallbackMessage inSelector,
39 NavCBRecPtr ioParams,
40 NavCallBackUserData ioUserData )
41{
42 wxDirDialog * data = ( wxDirDialog *) ioUserData ;
43 if ( inSelector == kNavCBStart )
44 {
45 if (data && !data->GetPath().empty() )
46 {
47 // Set default location for the modern Navigation APIs
48 // Apple Technical Q&A 1151
49 FSRef theFile;
50 wxMacPathToFSRef(data->GetPath(), &theFile);
51 AEDesc theLocation = { typeNull, NULL };
52 if (noErr == ::AECreateDesc(typeFSRef, &theFile, sizeof(FSRef), &theLocation))
53 ::NavCustomControl(ioParams->context, kNavCtlSetLocation, (void *) &theLocation);
54 }
55 }
56}
57
58wxDirDialog::wxDirDialog(wxWindow *parent,
59 const wxString& message,
60 const wxString& defaultPath,
524c47aa 61 long style,
489468fe
SC
62 const wxPoint& WXUNUSED(pos),
63 const wxSize& WXUNUSED(size),
64 const wxString& WXUNUSED(name))
65{
66 wxASSERT_MSG( NavServicesAvailable() , wxT("Navigation Services are not running") ) ;
489468fe 67 m_parent = parent;
524c47aa
SC
68
69 SetMessage( message );
70 SetWindowStyle(style);
71 SetPath(defaultPath);
489468fe
SC
72}
73
74int wxDirDialog::ShowModal()
75{
76 NavDialogRef dialog = NULL;
77 NavDialogCreationOptions options;
78 NavReplyRecord reply ;
79 bool disposeReply = false ;
80 OSStatus err = noErr;
81
82 err = NavGetDefaultDialogCreationOptions(&options);
83 options.optionFlags &= ~kNavAllowMultipleFiles;
84 if (err == noErr)
85 {
86 wxCFStringRef message(m_message, GetFont().GetEncoding());
87 options.message = message;
88 err = NavCreateChooseFolderDialog(&options, sStandardNavEventFilter , NULL, this , &dialog);
89 if (err == noErr)
90 {
445e564f 91 wxDialog::OSXBeginModalDialog();
489468fe 92 err = NavDialogRun(dialog);
445e564f 93 wxDialog::OSXEndModalDialog();
489468fe
SC
94 if ( err == noErr )
95 {
96 err = NavDialogGetReply(dialog, &reply);
97 disposeReply = true ;
98 }
99 }
100 }
101
102 if ( err == noErr )
103 {
104 if ( reply.validRecord )
105 {
106 FSRef folderInfo;
107 AEDesc specDesc ;
108
109 OSErr err = ::AECoerceDesc( &reply.selection , typeFSRef, &specDesc);
110 if ( err != noErr )
111 {
112 m_path = wxEmptyString ;
113 }
114 else
115 {
116 folderInfo = **(FSRef**) specDesc.dataHandle;
117 m_path = wxMacFSRefToPath( &folderInfo ) ;
118 if (specDesc.dataHandle != nil)
119 {
120 ::AEDisposeDesc(&specDesc);
121 }
122 }
123 }
124 else
125 {
126 err = paramErr ; // could be any error, only used for giving back wxID_CANCEL
127 }
128 }
129
130 if ( disposeReply )
131 ::NavDisposeReply(&reply);
132
133 // apparently cancelling shouldn't change m_path
134 if ( err != noErr && err != userCanceledErr )
135 m_path = wxEmptyString ;
136
03647350
VZ
137 if ( dialog )
138 ::NavDialogDispose(dialog);
489468fe
SC
139
140 return (err == noErr) ? wxID_OK : wxID_CANCEL ;
141}
142
143#endif