Make Dropdown menus at least as wide as the button
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index c886885dd23849fd6fa5652620bd0e6316748c69..c1def2ba29451970933ef17c0a31d3dd207a42a9 100644 (file)
@@ -53,7 +53,7 @@
 #include "time_axis_view.h"
 #include "utils.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
@@ -104,6 +104,30 @@ Editor::export_range ()
        }
 }
 
+bool
+Editor::process_midi_export_dialog (MidiExportDialog& dialog, boost::shared_ptr<MidiRegion> midi_region)
+{
+       string path = dialog.get_path ();
+
+       if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
+               bool overwrite = ARDOUR_UI_UTILS::overwrite_file_dialog (dialog,
+                                                                        _("Confirm MIDI File Overwrite"),
+                                                                        _("A file with the same name already exists. Do you want to overwrite it?"));
+
+               if (!overwrite) {
+                       return false;
+               }
+
+               /* force ::g_unlink because the backend code will
+                  go wrong if it tries to open an existing
+                  file for writing.
+               */
+               ::g_unlink (path.c_str());
+       }
+
+       return midi_region->do_export (path);
+}
+
 /** Export the first selected region */
 void
 Editor::export_region ()
@@ -129,34 +153,18 @@ Editor::export_region ()
 
                MidiExportDialog dialog (*this, midi_region);
                dialog.set_session (_session);
-               int ret = dialog.run ();
-               switch (ret) {
-               case Gtk::RESPONSE_ACCEPT:
-                       break;
-               default:
-                       return;
-               }
-
-               dialog.hide ();
-
-               string path = dialog.get_path ();
 
-               if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
-                       bool overwrite = ARDOUR_UI_UTILS::overwrite_file_dialog (_("Confirm MIDI File Overwrite"),
-                                                                                _("A file with the same name already exists. Do you want to overwrite it?"));
-
-                       if (!overwrite) {
+               bool finished = false;
+               while (!finished) {
+                       switch (dialog.run ()) {
+                       case Gtk::RESPONSE_ACCEPT:
+                               finished = process_midi_export_dialog (dialog, midi_region);
+                               break;
+                       default:
+                               finished = true;
                                return;
                        }
-
-                       /* force ::g_unlink because the backend code will
-                          go wrong if it tries to open an existing
-                          file for writing.
-                       */
-                       ::g_unlink (path.c_str());
                }
-
-               (void) midi_region->clone (path);
        }
 }