1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/filepicker.cpp
3 // Purpose: implementation of wxFileButton and wxDirButton
4 // Author: Francesco Montorsi
8 // Copyright: (c) Francesco Montorsi
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 // ----------------------------------------------------------------------------
15 // ----------------------------------------------------------------------------
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
20 #if wxUSE_FILEPICKERCTRL
22 #include "wx/filepicker.h"
23 #include "wx/tooltip.h"
26 #include "wx/gtk/private.h"
28 // ============================================================================
30 // ============================================================================
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 IMPLEMENT_DYNAMIC_CLASS(wxFileButton
, wxButton
)
38 bool wxFileButton::Create( wxWindow
*parent
, wxWindowID id
,
39 const wxString
&label
, const wxString
&path
,
40 const wxString
&message
, const wxString
&wildcard
,
41 const wxPoint
&pos
, const wxSize
&size
,
42 long style
, const wxValidator
& validator
,
43 const wxString
&name
)
45 // we can't use the native button for wxFLP_SAVE pickers as it can only
46 // open existing files and there is no way to create a new file using it
47 if (!(style
& wxFLP_SAVE
) && !(style
& wxFLP_USE_TEXTCTRL
))
49 // VERY IMPORTANT: this code is identical to relative code in wxDirButton;
50 // if you find a problem here, fix it also in wxDirButton !
52 if (!PreCreation( parent
, pos
, size
) ||
53 !wxControl::CreateBase(parent
, id
, pos
, size
, style
& wxWINDOW_STYLE_MASK
,
56 wxFAIL_MSG( wxT("wxFileButton creation failed") );
60 // create the dialog associated with this button
61 // NB: unlike generic implementation, native GTK implementation needs to create
62 // the filedialog here as it needs to use gtk_file_chooser_button_new_with_dialog()
63 SetWindowStyle(style
);
66 m_wildcard
= wildcard
;
67 if ((m_dialog
= CreateDialog()) == NULL
)
70 // little trick used to avoid problems when there are other GTK windows 'grabbed':
71 // GtkFileChooserDialog won't be responsive to user events if there is another
72 // window which called gtk_grab_add (and this happens if e.g. a wxDialog is running
73 // in modal mode in the application - see wxDialogGTK::ShowModal).
74 // An idea could be to put the grab on the m_dialog->m_widget when the GtkFileChooserButton
75 // is clicked and then remove it as soon as the user closes the dialog itself.
76 // Unfortunately there's no way to hook in the 'clicked' event of the GtkFileChooserButton,
77 // thus we add grab on m_dialog->m_widget when it's shown and remove it when it's
78 // hidden simply using its "show" and "hide" events - clean & simple :)
79 g_signal_connect(m_dialog
->m_widget
, "show", G_CALLBACK(gtk_grab_add
), NULL
);
80 g_signal_connect(m_dialog
->m_widget
, "hide", G_CALLBACK(gtk_grab_remove
), NULL
);
82 // use as label the currently selected file
83 m_widget
= gtk_file_chooser_button_new_with_dialog( m_dialog
->m_widget
);
84 g_object_ref(m_widget
);
86 // we need to know when the dialog has been dismissed clicking OK...
87 // NOTE: the "clicked" signal is not available for a GtkFileChooserButton
88 // thus we are forced to use wxFileDialog's event
89 m_dialog
->Connect(wxEVT_COMMAND_BUTTON_CLICKED
,
90 wxCommandEventHandler(wxFileButton::OnDialogOK
),
93 m_parent
->DoAddChild( this );
99 return wxGenericFileButton::Create(parent
, id
, label
, path
, message
, wildcard
,
100 pos
, size
, style
, validator
, name
);
104 wxFileButton::~wxFileButton()
108 void wxFileButton::OnDialogOK(wxCommandEvent
& ev
)
110 // the wxFileDialog associated with the GtkFileChooserButton has been closed
111 // using the OK button, thus the selected file has changed...
112 if (ev
.GetId() == wxID_OK
)
114 // ...update our path
115 UpdatePathFromDialog(m_dialog
);
117 // ...and fire an event
118 wxFileDirPickerEvent
event(wxEVT_COMMAND_FILEPICKER_CHANGED
, this, GetId(), m_path
);
119 HandleWindowEvent(event
);
123 void wxFileButton::SetPath(const wxString
&str
)
128 UpdateDialogPath(m_dialog
);
131 void wxFileButton::SetInitialDirectory(const wxString
& dir
)
135 // Only change the directory if the default file name doesn't have any
136 // directory in it, otherwise it takes precedence.
137 if ( m_path
.find_first_of(wxFileName::GetPathSeparators()) ==
140 static_cast<wxFileDialog
*>(m_dialog
)->SetDirectory(dir
);
144 wxGenericFileButton::SetInitialDirectory(dir
);
147 #endif // wxUSE_FILEPICKERCTRL
149 #if wxUSE_DIRPICKERCTRL
152 #include <unistd.h> // chdir
155 //-----------------------------------------------------------------------------
156 // "current-folder-changed"
157 //-----------------------------------------------------------------------------
160 static void gtk_dirbutton_currentfolderchanged_callback(GtkFileChooserButton
*widget
,
163 // update the m_path member of the wxDirButtonGTK
164 // unless the path was changed by wxDirButton::SetPath()
165 if (p
->m_bIgnoreNextChange
)
167 p
->m_bIgnoreNextChange
=false;
172 // NB: it's important to use gtk_file_chooser_get_filename instead of
173 // gtk_file_chooser_get_current_folder (see GTK docs) !
174 wxGtkString
filename(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget
)));
175 p
->GTKUpdatePath(filename
);
177 // since GtkFileChooserButton when used to pick directories also uses a combobox,
178 // maybe that the current folder has been changed but not through the GtkFileChooserDialog
179 // and thus the 'gtk_filedialog_ok_callback' could have not been called...
180 // thus we need to make sure the current working directory is updated if wxDIRP_CHANGE_DIR
182 if (p
->HasFlag(wxDIRP_CHANGE_DIR
))
185 // ...and fire an event
186 wxFileDirPickerEvent
event(wxEVT_COMMAND_DIRPICKER_CHANGED
, p
, p
->GetId(), p
->GetPath());
187 p
->HandleWindowEvent(event
);
192 //-----------------------------------------------------------------------------
194 //-----------------------------------------------------------------------------
196 IMPLEMENT_DYNAMIC_CLASS(wxDirButton
, wxButton
)
198 bool wxDirButton::Create( wxWindow
*parent
, wxWindowID id
,
199 const wxString
&label
, const wxString
&path
,
200 const wxString
&message
, const wxString
&wildcard
,
201 const wxPoint
&pos
, const wxSize
&size
,
202 long style
, const wxValidator
& validator
,
203 const wxString
&name
)
205 if (!(style
& wxDIRP_USE_TEXTCTRL
))
207 // VERY IMPORTANT: this code is identic to relative code in wxFileButton;
208 // if you find a problem here, fix it also in wxFileButton !
210 if (!PreCreation( parent
, pos
, size
) ||
211 !wxControl::CreateBase(parent
, id
, pos
, size
, style
& wxWINDOW_STYLE_MASK
,
214 wxFAIL_MSG( wxT("wxDirButtonGTK creation failed") );
218 // create the dialog associated with this button
219 SetWindowStyle(style
);
221 m_wildcard
= wildcard
;
222 if ((m_dialog
= CreateDialog()) == NULL
)
226 // little trick used to avoid problems when there are other GTK windows 'grabbed':
227 // GtkFileChooserDialog won't be responsive to user events if there is another
228 // window which called gtk_grab_add (and this happens if e.g. a wxDialog is running
229 // in modal mode in the application - see wxDialogGTK::ShowModal).
230 // An idea could be to put the grab on the m_dialog->m_widget when the GtkFileChooserButton
231 // is clicked and then remove it as soon as the user closes the dialog itself.
232 // Unfortunately there's no way to hook in the 'clicked' event of the GtkFileChooserButton,
233 // thus we add grab on m_dialog->m_widget when it's shown and remove it when it's
234 // hidden simply using its "show" and "hide" events - clean & simple :)
235 g_signal_connect(m_dialog
->m_widget
, "show", G_CALLBACK(gtk_grab_add
), NULL
);
236 g_signal_connect(m_dialog
->m_widget
, "hide", G_CALLBACK(gtk_grab_remove
), NULL
);
239 // NOTE: we deliberately ignore the given label as GtkFileChooserButton
240 // use as label the currently selected file
241 m_widget
= gtk_file_chooser_button_new_with_dialog( m_dialog
->m_widget
);
242 g_object_ref(m_widget
);
244 // GtkFileChooserButton signals
245 g_signal_connect(m_widget
, "current-folder-changed",
246 G_CALLBACK(gtk_dirbutton_currentfolderchanged_callback
), this);
248 m_parent
->DoAddChild( this );
251 SetInitialSize(size
);
254 return wxGenericDirButton::Create(parent
, id
, label
, path
, message
, wildcard
,
255 pos
, size
, style
, validator
, name
);
259 wxDirButton::~wxDirButton()
263 void wxDirButton::GTKUpdatePath(const char *gtkpath
)
265 m_path
= wxString::FromUTF8(gtkpath
);
267 void wxDirButton::SetPath(const wxString
& str
)
271 // don't do anything and especially don't set m_bIgnoreNextChange
277 // wxDirButton uses the "current-folder-changed" signal which is triggered also
278 // when we set the path on the dialog associated with this button; thus we need
279 // to set the following flag to avoid sending a wxFileDirPickerEvent from this
280 // function (which would be inconsistent with wxFileButton's behaviour and in
281 // general with all wxWidgets control-manipulation functions which do not send events).
282 m_bIgnoreNextChange
= true;
285 UpdateDialogPath(m_dialog
);
288 void wxDirButton::SetInitialDirectory(const wxString
& dir
)
293 static_cast<wxDirDialog
*>(m_dialog
)->SetPath(dir
);
296 wxGenericDirButton::SetInitialDirectory(dir
);
299 #endif // wxUSE_DIRPICKERCTRL