1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/dirdlg.cpp
3 // Purpose: native implementation of wxDirDialog
4 // Author: Robert Roebling, Zbigniew Zagorski, Mart Raudsepp, Francesco Montorsi
6 // Copyright: (c) 1998 Robert Roebling, 2004 Zbigniew Zagorski, 2005 Mart Raudsepp
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
16 NOTE: the GtkFileChooser interface can be used both for wxFileDialog and for wxDirDialog.
17 Thus following code is very similar (even if not identic) to src/gtk/filedlg.cpp
18 If you find a problem in this code, remember to check also that file !
25 #include "wx/dirdlg.h"
29 #include "wx/filedlg.h"
35 #include "wx/gtk/private.h"
37 #include <unistd.h> // chdir
39 #include "wx/filename.h" // wxFilename
40 #include "wx/tokenzr.h" // wxStringTokenizer
41 #include "wx/filefn.h" // ::wxGetCwd
42 #include "wx/msgdlg.h" // wxMessageDialog
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 extern void wxapp_install_idle_handler();
50 //-----------------------------------------------------------------------------
51 // "clicked" for OK-button
52 //-----------------------------------------------------------------------------
55 static void gtk_filedialog_ok_callback(GtkWidget
*widget
, wxDirDialog
*dialog
)
57 int style
= dialog
->GetStyle();
58 gchar
* filename
= gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget
));
60 // gtk version numbers must be identical with the one in ctor (that calls set_do_overwrite_confirmation)
61 #if GTK_CHECK_VERSION(2,7,3)
62 if(gtk_check_version(2,7,3) != NULL
)
64 if ((style
& wxSAVE
) && (style
& wxOVERWRITE_PROMPT
))
66 if ( g_file_test(filename
, G_FILE_TEST_EXISTS
) )
71 _("File '%s' already exists, do you really want to overwrite it?"),
72 wxString(wxConvFileName
->cMB2WX(filename
)).c_str());
74 wxMessageDialog
dlg(dialog
, msg
, _("Confirm"),
75 wxYES_NO
| wxICON_QUESTION
);
76 if (dlg
.ShowModal() != wxID_YES
)
84 // change to the directory where the user went if asked
85 if (style
& wxCHANGE_DIR
)
87 // Use chdir to not care about filename encodings
88 gchar
* folder
= g_path_get_dirname(filename
);
95 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
96 event
.SetEventObject(dialog
);
97 dialog
->GetEventHandler()->ProcessEvent(event
);
101 //-----------------------------------------------------------------------------
102 // "clicked" for Cancel-button
103 //-----------------------------------------------------------------------------
106 static void gtk_filedialog_cancel_callback(GtkWidget
*WXUNUSED(w
),
109 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
110 event
.SetEventObject(dialog
);
111 dialog
->GetEventHandler()->ProcessEvent(event
);
116 static void gtk_filedialog_response_callback(GtkWidget
*w
,
120 wxapp_install_idle_handler();
122 if (response
== GTK_RESPONSE_ACCEPT
)
123 gtk_filedialog_ok_callback(w
, dialog
);
124 else if (response
== GTK_RESPONSE_CANCEL
)
125 gtk_filedialog_cancel_callback(w
, dialog
);
128 gtk_filedialog_cancel_callback(w
, dialog
);
129 dialog
->m_destroyed_by_delete
= true;
134 #endif // __WXGTK24__
136 //-----------------------------------------------------------------------------
138 //-----------------------------------------------------------------------------
140 IMPLEMENT_DYNAMIC_CLASS(wxDirDialog
,wxGenericDirDialog
)
142 BEGIN_EVENT_TABLE(wxDirDialog
,wxGenericDirDialog
)
143 EVT_BUTTON(wxID_OK
, wxDirDialog::OnFakeOk
)
146 wxDirDialog::wxDirDialog(wxWindow
* parent
, const wxString
& title
,
147 const wxString
& defaultPath
, long style
,
148 const wxPoint
& pos
, const wxSize
& sz
,
149 const wxString
& name
)
152 if (!gtk_check_version(2,4,0))
155 m_needParent
= false;
156 m_destroyed_by_delete
= false;
158 if (!PreCreation(parent
, pos
, wxDefaultSize
) ||
159 !CreateBase(parent
, wxID_ANY
, pos
, wxDefaultSize
, style
,
160 wxDefaultValidator
, wxT("filedialog")))
162 wxFAIL_MSG( wxT("wxDirDialog creation failed") );
166 GtkFileChooserAction gtk_action
;
167 GtkWindow
* gtk_parent
= NULL
;
169 gtk_parent
= GTK_WINDOW( gtk_widget_get_toplevel(parent
->m_widget
) );
171 gtk_action
= GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
;
172 if (style
& wxDD_NEW_DIR_BUTTON
)
173 gtk_action
= GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
;
175 m_widget
= gtk_file_chooser_dialog_new(
176 wxGTK_CONV(m_message
),
179 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
180 GTK_STOCK_OPEN
, GTK_RESPONSE_ACCEPT
,
183 // local-only property could be set to false to allow non-local files to be loaded.
184 // In that case get/set_uri(s) should be used instead of get/set_filename(s) everywhere
185 // and the GtkFileChooserDialog should probably also be created with a backend,
186 // e.g "gnome-vfs", "default", ... (gtk_file_chooser_dialog_new_with_backend).
187 // Currently local-only is kept as the default - true:
188 // gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(m_widget), true);
190 g_signal_connect(G_OBJECT(m_widget
), "response",
191 GTK_SIGNAL_FUNC(gtk_filedialog_response_callback
), (gpointer
)this);
193 if ( !defaultPath
.empty() )
194 gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER(m_widget
),
195 wxConvFileName
->cWX2MB(defaultPath
) );
199 wxGenericDirDialog::Create(parent
, title
, defaultPath
, style
, pos
, sz
, name
);
202 wxDirDialog::~wxDirDialog()
205 if (!gtk_check_version(2,4,0))
207 if (m_destroyed_by_delete
)
213 void wxDirDialog::OnFakeOk( wxCommandEvent
&event
)
216 if (!gtk_check_version(2,4,0))
217 wxDialog::OnOK( event
);
220 wxGenericDirDialog::OnOK( event
);
223 int wxDirDialog::ShowModal()
226 if (!gtk_check_version(2,4,0))
227 return wxDialog::ShowModal();
230 return wxGenericDirDialog::ShowModal();
233 bool wxDirDialog::Show( bool show
)
236 if (!gtk_check_version(2,4,0))
237 return wxDialog::Show( show
);
240 return wxGenericDirDialog::Show( show
);
243 void wxDirDialog::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
248 wxGenericDirDialog::DoSetSize( x
, y
, width
, height
, sizeFlags
);
251 void wxDirDialog::SetPath(const wxString
& dir
)
254 if (!gtk_check_version(2,4,0))
256 if (wxDirExists(dir
))
258 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget
), wxConvFileName
->cWX2MB(dir
));
263 wxGenericDirDialog::SetPath( dir
);
266 wxString
wxDirDialog::GetPath() const
269 if (!gtk_check_version(2,4,0))
270 return wxConvFileName
->cMB2WX( gtk_file_chooser_get_filename( GTK_FILE_CHOOSER(m_widget
) ) );
273 return wxGenericDirDialog::GetPath();
276 #endif // wxUSE_DIRDLG