Can't select multiple files in file open dialog: Multiple File Open.

Hello !
Theres a bug listed in SF. BUG ID [1194728].
<BUG> Can't select multiple files in file open dialog I'd like to open (and work on/compare) some documents, which all are in the same directory. I can't just select them using control/shift-clicking, but it's necessary to open files singly. </BUG>
I have a patch, that makes it work on the CVS head. It modifies src/file.cpp & src/dialog/filedialog.[h|cpp].
There are 3 patch files, one for each, Im wondering what to do. Please try the patches from https://sourceforge.net/tracker/index.php?func=detail&aid=1223534&gr...
[Note: The patch is a text file only, but SF says its a binary file etc, just save it and view via a standard editor, firefox doesnt show it].
Thanks. Muthu
____________________________________________________ Yahoo! Sports Rekindle the Rivalries. Sign up for Fantasy Football http://football.fantasysports.yahoo.com

Thanks, I haven't tested it yet, but:
- your working version of files is old, so the patch removes some recent changes from CVS files (such as my name from file.cpp). Please make all these changes to your files, or remove them from the patch, so that it does not revert them.
- the patch has a lot of debug output and #if 0 sections, which need to be cleared/resolved in some way.
Can you please submit a second version with these problems fixed?

Hello! --- bulia byak <buliabyak@...400...> wrote:
Thanks, I haven't tested it yet, but:
I found a bug due to g_free() of a const pointer, and fixed it with a g_strdup().
Can you please submit a second version with these problems fixed?
Here it is! I got the Inkscape code from CVS today, and its the latest version Ive patched.
Hope it helps, and makes to the CVS.
Thanks Muthu --------------------------------------------------------- Patch -------------- --- /sources/inkscape/src/file.cpp 2005-06-11 12:26:31.000000000 +0530 +++ ./inkscape/src/file.cpp 2005-06-20 10:53:34.000000000 +0530 @@ -333,6 +333,7 @@ static Inkscape::UI::Dialogs::FileOpenDi
/** * Display an file Open selector. Open a document if OK is pressed. + * Can also select open single or multiple files. */ void sp_file_open_dialog(gpointer object, gpointer data) @@ -367,6 +368,66 @@ sp_file_open_dialog(gpointer object, gpo g_free(open_path);
if (!success) return; + + // Code to check & open iff multiple files. + Glib::SListHandleGlib::ustring flist=openDialogInstance->getFilenames(); + GSList *list=flist.data(); + + if(g_slist_length(list)>1) + { + gchar *fileName=NULL; + + while(list!=NULL) + { + +#ifdef INK_DUMP_FILENAME_CONV + g_message(" FileName: %s",(const char *)list->data); +#endif + + fileName=(gchar *)g_strdup((gchar *)list->data); + + if (fileName && !g_file_test(fileName,G_FILE_TEST_IS_DIR)) { + gsize bytesRead = 0; + gsize bytesWritten = 0; + GError *error = NULL; +#ifdef INK_DUMP_FILENAME_CONV + dump_str( fileName, "A file pre is " ); +#endif + gchar *newFileName = g_filename_to_utf8(fileName, + -1, + &bytesRead, + &bytesWritten, + &error); + if ( newFileName != NULL ) { + g_free(fileName); + fileName = newFileName; +#ifdef INK_DUMP_FILENAME_CONV + dump_str( fileName, "A file post is " ); +#endif + } else { + // TODO: bulia, please look over + g_warning( "ERROR CONVERTING OPEN FILENAME TO UTF-8" ); + } + +#ifdef INK_DUMP_FILENAME_CONV + g_message("Opening File %s\n",fileName); +#endif + + sp_file_open(fileName, selection); + g_free(fileName); + } + else + { + g_message("Cannot Open Directory %s\n",fileName); + } + + list=list->next; + } + + return; + } + + if (fileName) { gsize bytesRead = 0; gsize bytesWritten = 0; --- /sources/inkscape/src/dialogs/filedialog.cpp 2005-04-03 02:54:51.000000000 +0530 +++ ./inkscape/src/dialogs/filedialog.cpp 2005-06-20 09:08:10.000000000 +0530 @@ -616,7 +616,7 @@ public:
gchar *getFilename();
- + Glib::SListHandleGlib::ustring getFilenames (); protected:
@@ -818,7 +818,8 @@ FileOpenDialogImpl::FileOpenDialogImpl(c
/* One file at a time */ - set_select_multiple(false); + /* And also Multiple Files */ + set_select_multiple(true);
/* Initalize to Autodetect */ extension = NULL; @@ -947,7 +948,13 @@ FileOpenDialogImpl::getFilename (void) }
- +/** + * To GetMultiple filenames selected at-once. + */ +Glib::SListHandleGlib::ustringFileOpenDialogImpl::getFilenames() +{ + return get_filenames(); +}
--- /sources/inkscape/src/dialogs/filedialog.h 2004-12-25 06:00:27.000000000 +0530 +++ ./inkscape/src/dialogs/filedialog.h 2005-06-20 09:04:16.000000000 +0530 @@ -89,6 +89,8 @@ public:
virtual gchar * getFilename () =0;
+ virtual Glib::SListHandleGlib::ustring getFilenames () = 0; + }; //FileOpenDialog
__________________________________ Yahoo! Mail Stay connected, organized, and protected. Take the tour: http://tour.mail.yahoo.com/mailtour.html

Thank you - the patch works fine for me, so I committed it. Keep up the good work! :)
participants (2)
-
bulia byak
-
Muthiah Annamalai