wxString wxDirDialog::GetPath() const
{
wxGtkString str(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(m_widget)));
- return wxString(str, *wxConvFileName);
+ return wxString::FromUTF8(str);
}
#endif // wxUSE_DIRDLG
wxString string;
if (str.c_str() != NULL)
- string = wxConvFileName->cMB2WX(str);
+ string = wxString::FromUTF8(str);
return string;
}
GSList *gpaths = gpathsi;
while ( gpathsi )
{
- wxString file( wxConvFileName->cMB2WX( ( gchar* ) gpathsi->data ) );
+ wxString file(wxString::FromUTF8(static_cast<gchar *>(gpathsi->data)));
paths.Add( file );
g_free( gpathsi->data );
gpathsi = gpathsi->next;
bool wxGtkFileChooser::SetPath( const wxString& path )
{
- if ( path.empty() ) return true;
+ if ( path.empty() )
+ return true;
- return gtk_file_chooser_set_filename( m_widget,
- wxConvFileName->cWX2MB( path.c_str() ) );
+ return gtk_file_chooser_set_filename( m_widget, path.utf8_str() );
}
bool wxGtkFileChooser::SetDirectory( const wxString& dir )
{
- const gboolean b =
- gtk_file_chooser_set_current_folder( m_widget,
- wxConvFileName->cWX2MB( dir.c_str() ) );
- return b != 0;
+ return gtk_file_chooser_set_current_folder( m_widget, dir.utf8_str() ) != 0;
}
wxString wxGtkFileChooser::GetDirectory() const
{
const wxGtkString str( gtk_file_chooser_get_current_folder( m_widget ) );
- return wxString( str, *wxConvFileName );
+ return wxString::FromUTF8(str);
}
wxString wxGtkFileChooser::GetFilename() const
msg.Printf(
_("File '%s' already exists, do you really want to overwrite it?"),
- wxString(filename, *wxConvFileName));
+ wxString::FromUTF8(filename));
wxMessageDialog dlg(dialog, msg, _("Confirm"),
wxYES_NO | wxICON_QUESTION);
if ( UseNative() )
{
const gchar *str = gtk_link_button_get_uri(GTK_LINK_BUTTON(m_widget));
- return wxString(str, *wxConvFileName);
+ return wxString::FromUTF8(str);
}
return wxGenericHyperlinkCtrl::GetURL();