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"
34 #include "wx/gtk/private.h"
36 #include <unistd.h> // chdir
38 #include "wx/filename.h" // wxFilename
39 #include "wx/tokenzr.h" // wxStringTokenizer
40 #include "wx/filefn.h" // ::wxGetCwd
41 #include "wx/msgdlg.h" // wxMessageDialog
43 //-----------------------------------------------------------------------------
45 //-----------------------------------------------------------------------------
47 extern void wxapp_install_idle_handler();
49 //-----------------------------------------------------------------------------
50 // "clicked" for OK-button
51 //-----------------------------------------------------------------------------
54 static void gtk_filedialog_ok_callback(GtkWidget
*widget
, wxDirDialog
*dialog
)
56 int style
= dialog
->GetStyle();
57 gchar
* filename
= gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget
));
59 // gtk version numbers must be identical with the one in ctor (that calls set_do_overwrite_confirmation)
60 #if GTK_CHECK_VERSION(2,7,3)
61 if(gtk_check_version(2,7,3) != NULL
)
63 if ((style
& wxSAVE
) && (style
& wxOVERWRITE_PROMPT
))
65 if ( g_file_test(filename
, G_FILE_TEST_EXISTS
) )
70 _("File '%s' already exists, do you really want to overwrite it?"),
71 wxString(wxConvFileName
->cMB2WX(filename
)).c_str());
73 wxMessageDialog
dlg(dialog
, msg
, _("Confirm"),
74 wxYES_NO
| wxICON_QUESTION
);
75 if (dlg
.ShowModal() != wxID_YES
)
83 // change to the directory where the user went if asked
84 if (style
& wxCHANGE_DIR
)
86 // Use chdir to not care about filename encodings
87 gchar
* folder
= g_path_get_dirname(filename
);
94 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
95 event
.SetEventObject(dialog
);
96 dialog
->GetEventHandler()->ProcessEvent(event
);
100 //-----------------------------------------------------------------------------
101 // "clicked" for Cancel-button
102 //-----------------------------------------------------------------------------
105 static void gtk_filedialog_cancel_callback(GtkWidget
*WXUNUSED(w
),
108 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
109 event
.SetEventObject(dialog
);
110 dialog
->GetEventHandler()->ProcessEvent(event
);
115 static void gtk_filedialog_response_callback(GtkWidget
*w
,
119 wxapp_install_idle_handler();
121 if (response
== GTK_RESPONSE_ACCEPT
)
122 gtk_filedialog_ok_callback(w
, dialog
);
123 else if (response
== GTK_RESPONSE_CANCEL
)
124 gtk_filedialog_cancel_callback(w
, dialog
);
127 gtk_filedialog_cancel_callback(w
, dialog
);
128 dialog
->m_destroyed_by_delete
= true;
133 #endif // __WXGTK24__
135 //-----------------------------------------------------------------------------
137 //-----------------------------------------------------------------------------
139 IMPLEMENT_DYNAMIC_CLASS(wxDirDialog
,wxGenericDirDialog
)
141 BEGIN_EVENT_TABLE(wxDirDialog
,wxGenericDirDialog
)
142 EVT_BUTTON(wxID_OK
, wxDirDialog::OnFakeOk
)
145 wxDirDialog::wxDirDialog(wxWindow
* parent
, const wxString
& title
,
146 const wxString
& defaultPath
, long style
,
147 const wxPoint
& pos
, const wxSize
& sz
,
148 const wxString
& name
)
151 if (!gtk_check_version(2,4,0))
154 m_needParent
= false;
155 m_destroyed_by_delete
= false;
157 if (!PreCreation(parent
, pos
, wxDefaultSize
) ||
158 !CreateBase(parent
, wxID_ANY
, pos
, wxDefaultSize
, style
,
159 wxDefaultValidator
, wxT("filedialog")))
161 wxFAIL_MSG( wxT("wxDirDialog creation failed") );
165 GtkFileChooserAction gtk_action
;
166 GtkWindow
* gtk_parent
= NULL
;
168 gtk_parent
= GTK_WINDOW( gtk_widget_get_toplevel(parent
->m_widget
) );
170 gtk_action
= GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
;
171 if (style
& wxDD_NEW_DIR_BUTTON
)
172 gtk_action
= GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
;
174 m_widget
= gtk_file_chooser_dialog_new(
175 wxGTK_CONV(m_message
),
178 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
179 GTK_STOCK_OPEN
, GTK_RESPONSE_ACCEPT
,
182 // local-only property could be set to false to allow non-local files to be loaded.
183 // In that case get/set_uri(s) should be used instead of get/set_filename(s) everywhere
184 // and the GtkFileChooserDialog should probably also be created with a backend,
185 // e.g "gnome-vfs", "default", ... (gtk_file_chooser_dialog_new_with_backend).
186 // Currently local-only is kept as the default - true:
187 // gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(m_widget), true);
189 g_signal_connect(G_OBJECT(m_widget
), "response",
190 GTK_SIGNAL_FUNC(gtk_filedialog_response_callback
), (gpointer
)this);
192 if ( !defaultPath
.empty() )
193 gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER(m_widget
),
194 wxConvFileName
->cWX2MB(defaultPath
) );
198 wxGenericDirDialog::Create(parent
, title
, defaultPath
, style
, pos
, sz
, name
);
201 wxDirDialog::~wxDirDialog()
204 if (!gtk_check_version(2,4,0))
206 if (m_destroyed_by_delete
)
212 void wxDirDialog::OnFakeOk( wxCommandEvent
&event
)
215 if (!gtk_check_version(2,4,0))
216 wxDialog::OnOK( event
);
219 wxGenericDirDialog::OnOK( event
);
222 int wxDirDialog::ShowModal()
225 if (!gtk_check_version(2,4,0))
226 return wxDialog::ShowModal();
229 return wxGenericDirDialog::ShowModal();
232 bool wxDirDialog::Show( bool show
)
235 if (!gtk_check_version(2,4,0))
236 return wxDialog::Show( show
);
239 return wxGenericDirDialog::Show( show
);
242 void wxDirDialog::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
247 wxGenericDirDialog::DoSetSize( x
, y
, width
, height
, sizeFlags
);
250 void wxDirDialog::SetPath(const wxString
& dir
)
253 if (!gtk_check_version(2,4,0))
255 if (wxDirExists(dir
))
257 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget
), wxConvFileName
->cWX2MB(dir
));
262 wxGenericDirDialog::SetPath( dir
);
265 wxString
wxDirDialog::GetPath() const
268 if (!gtk_check_version(2,4,0))
269 return wxConvFileName
->cMB2WX( gtk_file_chooser_get_filename( GTK_FILE_CHOOSER(m_widget
) ) );
272 return wxGenericDirDialog::GetPath();
275 #endif // wxUSE_DIRDLG