X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d5027818a42043052ac375b1a0ba30fac491ddc4..9bc3af3e642709425476f6232a19fe4f1bbb42b8:/src/gtk/filectrl.cpp diff --git a/src/gtk/filectrl.cpp b/src/gtk/filectrl.cpp index 70cd51acbd..b6c642fcab 100644 --- a/src/gtk/filectrl.cpp +++ b/src/gtk/filectrl.cpp @@ -14,17 +14,11 @@ #pragma hdrstop #endif -#include "wx/filectrl.h" - #if wxUSE_FILECTRL && !defined(__WXUNIVERSAL__) -#ifndef WX_PRECOMP -# include "wx/sizer.h" -# include "wx/debug.h" -#endif +#include "wx/filectrl.h" #include "wx/gtk/private.h" -#include "wx/filedlg.h" #include "wx/filename.h" #include "wx/scopeguard.h" #include "wx/tokenzr.h" @@ -88,7 +82,32 @@ bool wxGtkFileChooser::SetPath( const wxString& path ) if ( path.empty() ) return true; - return gtk_file_chooser_set_filename( m_widget, path.utf8_str() ) != 0; + switch ( gtk_file_chooser_get_action( m_widget ) ) + { + case GTK_FILE_CHOOSER_ACTION_SAVE: + { + wxFileName fn(path); + + const wxString fname = fn.GetFullName(); + gtk_file_chooser_set_current_name( m_widget, fname.utf8_str() ); + + // set the initial file name and/or directory + const wxString dir = fn.GetPath(); + return gtk_file_chooser_set_current_folder( m_widget, + dir.utf8_str() ) != 0; + } + + case GTK_FILE_CHOOSER_ACTION_OPEN: + return gtk_file_chooser_set_filename( m_widget, path.utf8_str() ) != 0; + + case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER: + case GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER: + break; + } + + wxFAIL_MSG( "Unexpected file chooser type" ); + + return false; } bool wxGtkFileChooser::SetDirectory( const wxString& dir ) @@ -285,6 +304,12 @@ extern "C" IMPLEMENT_DYNAMIC_CLASS( wxGtkFileCtrl, wxControl ) +wxGtkFileCtrl::~wxGtkFileCtrl() +{ + if (m_fcWidget) + GTKDisconnect(m_fcWidget); +} + void wxGtkFileCtrl::Init() { m_checkNextSelEvent = false; @@ -450,8 +475,7 @@ void wxGtkFileCtrl::GetFilenames( wxArrayString& files ) const void wxGtkFileCtrl::ShowHidden(bool show) { - // gtk_file_chooser_set_show_hidden() is new in 2.6 - g_object_set (G_OBJECT (m_fcWidget), "show-hidden", show, NULL); + gtk_file_chooser_set_show_hidden(m_fcWidget, show); } #endif // wxUSE_FILECTRL