2 Copyright (C) 2001-2006, William Joseph.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "filechooser.h"
24 #include "ifiletypes.h"
29 #include <uilib/uilib.h>
31 #include "string/string.h"
32 #include "stream/stringstream.h"
33 #include "container/array.h"
37 #include "messagebox.h"
40 struct filetype_pair_t
45 filetype_pair_t( const char* moduleName, filetype_t type )
46 : m_moduleName( moduleName ), m_type( type ){
48 const char* m_moduleName;
52 class FileTypeList : public IFileTypeList
54 struct filetype_copy_t
56 filetype_copy_t( const filetype_pair_t& other )
57 : m_moduleName( other.m_moduleName ), m_name( other.m_type.name ), m_pattern( other.m_type.pattern ){
59 CopiedString m_moduleName;
61 CopiedString m_pattern;
64 typedef std::list<filetype_copy_t> Types;
68 typedef Types::const_iterator const_iterator;
69 const_iterator begin() const {
70 return m_types.begin();
72 const_iterator end() const {
76 std::size_t size() const {
77 return m_types.size();
80 void addType( const char* moduleName, filetype_t type ){
81 m_types.push_back( filetype_pair_t( moduleName, type ) );
88 const FileTypeList& m_types;
90 std::vector<CopiedString> m_filters;
91 std::vector<CopiedString> m_masks;
93 GTKMasks( const FileTypeList& types ) : m_types( types ){
94 m_masks.reserve( m_types.size() );
95 for ( FileTypeList::const_iterator i = m_types.begin(); i != m_types.end(); ++i )
97 std::size_t len = strlen( ( *i ).m_name.c_str() ) + strlen( ( *i ).m_pattern.c_str() ) + 3;
98 StringOutputStream buffer( len + 1 ); // length + null char
100 buffer << ( *i ).m_name.c_str() << " <" << ( *i ).m_pattern.c_str() << ">";
102 m_masks.push_back( buffer.c_str() );
105 m_filters.reserve( m_types.size() );
106 for ( FileTypeList::const_iterator i = m_types.begin(); i != m_types.end(); ++i )
108 m_filters.push_back( ( *i ).m_pattern );
112 filetype_pair_t GetTypeForGTKMask( const char *mask ) const {
113 std::vector<CopiedString>::const_iterator j = m_masks.begin();
114 for ( FileTypeList::const_iterator i = m_types.begin(); i != m_types.end(); ++i, ++j )
116 if ( string_equal( ( *j ).c_str(), mask ) ) {
117 return filetype_pair_t( ( *i ).m_moduleName.c_str(), filetype_t( ( *i ).m_name.c_str(), ( *i ).m_pattern.c_str() ) );
120 return filetype_pair_t();
125 static char g_file_dialog_file[1024];
127 const char* file_dialog_show( ui::Window parent, bool open, const char* title, const char* path, const char* pattern, bool want_load, bool want_import, bool want_save ){
130 if ( pattern == 0 ) {
134 FileTypeList typelist;
135 GlobalFiletypes().getTypeList( pattern, &typelist, want_load, want_import, want_save );
137 GTKMasks masks( typelist );
140 title = open ? "Open File" : "Save File";
143 ui::Dialog dialog{ui::null};
145 dialog = ui::Dialog::from(gtk_file_chooser_dialog_new( title,
147 GTK_FILE_CHOOSER_ACTION_OPEN,
148 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
149 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
154 dialog = ui::Dialog::from(gtk_file_chooser_dialog_new( title,
156 GTK_FILE_CHOOSER_ACTION_SAVE,
157 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
158 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
160 gtk_file_chooser_set_current_name( GTK_FILE_CHOOSER( dialog ), "unnamed" );
163 gtk_window_set_modal( dialog, TRUE );
164 gtk_window_set_position( dialog, GTK_WIN_POS_CENTER_ON_PARENT );
166 // we expect an actual path below, if the path is 0 we might crash
167 if ( path != nullptr && !string_empty( path ) ) {
168 ASSERT_MESSAGE( path_is_absolute( path ), "file_dialog_show: path not absolute: " << makeQuoted( path ) );
170 std::string new_path( path );
172 // replacing dir separators as appropriate
173 for ( char &c : new_path ) {
178 // remove separator from end of path if required
179 if ( new_path.back() == G_DIR_SEPARATOR ) {
183 gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER( dialog ), new_path.c_str() );
186 // we should add all important paths as shortcut folder...
187 // gtk_file_chooser_add_shortcut_folder(GTK_FILE_CHOOSER(dialog), "/tmp/", NULL);
189 if ( open && masks.m_filters.size() > 1 ){
190 GtkFileFilter* filter = gtk_file_filter_new();
191 gtk_file_filter_set_name( filter, "Supported formats" );
192 for ( std::size_t i = 0; i < masks.m_filters.size(); ++i )
194 gtk_file_filter_add_pattern( filter, masks.m_filters[i].c_str() );
196 gtk_file_chooser_add_filter( GTK_FILE_CHOOSER( dialog ), filter );
199 for ( std::size_t i = 0; i < masks.m_filters.size(); ++i )
201 GtkFileFilter* filter = gtk_file_filter_new();
202 gtk_file_filter_add_pattern( filter, masks.m_filters[i].c_str() );
203 gtk_file_filter_set_name( filter, masks.m_masks[i].c_str() );
204 gtk_file_chooser_add_filter( GTK_FILE_CHOOSER( dialog ), filter );
207 if ( gtk_dialog_run( GTK_DIALOG( dialog ) ) == GTK_RESPONSE_ACCEPT ) {
208 strcpy( g_file_dialog_file, gtk_file_chooser_get_filename( GTK_FILE_CHOOSER( dialog ) ) );
210 if ( !string_equal( pattern, "*" ) ) {
211 GtkFileFilter* filter = gtk_file_chooser_get_filter( GTK_FILE_CHOOSER( dialog ) );
212 if ( filter != 0 && !string_equal( gtk_file_filter_get_name( filter ), "Supported formats" ) ) { // no filter set? some file-chooser implementations may allow the user to set no filter, which we treat as 'all files'
213 type = masks.GetTypeForGTKMask( gtk_file_filter_get_name( filter ) ).m_type;
214 // last ext separator
215 const char* extension = path_get_extension( g_file_dialog_file );
217 if ( string_empty( extension ) ) {
218 strcat( g_file_dialog_file, type.pattern + 1 );
222 strcpy( g_file_dialog_file + ( extension - g_file_dialog_file ), type.pattern + 2 );
227 // convert back to unix format
228 for ( char* w = g_file_dialog_file; *w != '\0'; w++ )
237 g_file_dialog_file[0] = '\0';
240 ui::Widget(dialog).destroy();
242 // don't return an empty filename
243 if ( g_file_dialog_file[0] == '\0' ) {
247 return g_file_dialog_file;
250 char* dir_dialog( ui::Window parent, const char* title, const char* path ){
251 auto dialog = ui::Dialog::from(gtk_file_chooser_dialog_new( title,
253 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
254 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
255 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
258 gtk_window_set_modal( dialog, TRUE );
259 gtk_window_set_position( dialog, GTK_WIN_POS_CENTER_ON_PARENT );
261 if ( !string_empty( path ) ) {
262 gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER( dialog ), path );
266 if ( gtk_dialog_run( GTK_DIALOG( dialog ) ) == GTK_RESPONSE_ACCEPT ) {
267 filename = gtk_file_chooser_get_filename( GTK_FILE_CHOOSER( dialog ) );
275 const char* file_dialog( ui::Window parent, bool open, const char* title, const char* path, const char* pattern, bool want_load, bool want_import, bool want_save ){
278 const char* file = file_dialog_show( parent, open, title, path, pattern, want_load, want_import, want_save );
282 || !file_exists( file )
283 || ui::alert(parent, "The file specified already exists.\nDo you want to replace it?", title, ui::alert_type::NOYES, ui::alert_icon::Question ) == ui::alert_response::YES ) {