add GUI elements to control 2in/2out panning. Probably not perfect. REQUIRES FULL...
[ardour.git] / gtk2_ardour / export_dialog.cc
index c9a92bd79f86f59baac7017d6117de591af25043..da9484cca7ecbcf7984c320e5e6b1622f3f9ed3e 100644 (file)
@@ -18,7 +18,6 @@
 
 */
 
-#include "export_dialog.h"
 
 #include <sigc++/signal.h>
 
 #include "ardour/export_status.h"
 #include "ardour/export_handler.h"
 
+#include "export_dialog.h"
+#include "gui_thread.h"
+
+#include "i18n.h"
+
 using namespace ARDOUR;
 using namespace PBD;
+using std::string;
 
-ExportDialog::ExportDialog (PublicEditor & editor, Glib::ustring title) :
+ExportDialog::ExportDialog (PublicEditor & editor, std::string title) :
   ArdourDialog (title),
   editor (editor),
 
@@ -45,22 +50,26 @@ ExportDialog::~ExportDialog ()
 void
 ExportDialog::set_session (ARDOUR::Session* s)
 {
-       session = s;
+       SessionHandlePtr::set_session (s);
+
+       if (!_session) {
+               return;
+       }
 
        /* Init handler and profile manager */
 
-       handler = session->get_export_handler ();
-       status = session->get_export_status ();
-       profile_manager.reset (new ExportProfileManager (*session));
+       handler = _session->get_export_handler ();
+       status = _session->get_export_status ();
+       profile_manager.reset (new ExportProfileManager (*_session));
 
        /* Possibly init stuff in derived classes */
 
        init ();
 
-       /* Rest of session related initialization */
+       /* Rest of _session related initialization */
 
        preset_selector->set_manager (profile_manager);
-       file_notebook->set_session_and_manager (session, profile_manager);
+       file_notebook->set_session_and_manager (_session, profile_manager);
 
        /* Hand on selection range to profile manager  */
 
@@ -82,7 +91,8 @@ ExportDialog::set_session (ARDOUR::Session* s)
        timespan_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
        channel_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
        file_notebook->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
-       status->Aborting.connect (sigc::mem_fun (*this, &ExportDialog::notify_errors));
+
+       status->Aborting.connect (abort_connection, invalidator (*this), boost::bind (&ExportDialog::notify_errors, this), gui_context());
 
        update_warnings ();
 }
@@ -115,13 +125,15 @@ ExportDialog::init ()
        /* Buttons */
 
        cancel_button = add_button (Gtk::Stock::CANCEL, RESPONSE_CANCEL);
-       rt_export_button = add_button (_("Realtime Export"), RESPONSE_RT);
-       fast_export_button = add_button (_("Fast Export"), RESPONSE_FAST);
+       // Realtime export is disabled for now, as it will most probably not work
+       //rt_export_button = add_button (_("Realtime Export"), RESPONSE_RT);
+       //fast_export_button = add_button (_("Fast Export"), RESPONSE_FAST);
+       fast_export_button = add_button (_("Export"), RESPONSE_FAST);
 
        list_files_button.set_name ("PaddedButton");
 
        cancel_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::close_dialog));
-       rt_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_rt));
+       //rt_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_rt));
        fast_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_fw));
 
        /* Done! */
@@ -177,8 +189,8 @@ void
 ExportDialog::init_components ()
 {
        preset_selector.reset (new ExportPresetSelector ());
-       timespan_selector.reset (new ExportTimespanSelectorMultiple (session, profile_manager));
-       channel_selector.reset (new PortExportChannelSelector (session, profile_manager));
+       timespan_selector.reset (new ExportTimespanSelectorMultiple (_session, profile_manager));
+       channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
        file_notebook.reset (new ExportFileNotebook ());
 }
 
@@ -186,7 +198,7 @@ void
 ExportDialog::notify_errors ()
 {
        if (status->errors()) {
-               Glib::ustring txt = _("Export has been aborted due to an error!\nSee the Log for details.");
+               std::string txt = _("Export has been aborted due to an error!\nSee the Log for details.");
                Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
                msg.run();
        }
@@ -226,24 +238,24 @@ ExportDialog::update_warnings ()
        list_files_string = "";
 
        fast_export_button->set_sensitive (true);
-       rt_export_button->set_sensitive (true);
+       //rt_export_button->set_sensitive (true);
 
        /* Add new warnings */
 
        boost::shared_ptr<ExportProfileManager::Warnings> warnings = profile_manager->get_warnings();
 
-       for (std::list<Glib::ustring>::iterator it = warnings->errors.begin(); it != warnings->errors.end(); ++it) {
+       for (std::list<string>::iterator it = warnings->errors.begin(); it != warnings->errors.end(); ++it) {
                add_error (*it);
        }
 
-       for (std::list<Glib::ustring>::iterator it = warnings->warnings.begin(); it != warnings->warnings.end(); ++it) {
+       for (std::list<string>::iterator it = warnings->warnings.begin(); it != warnings->warnings.end(); ++it) {
                add_warning (*it);
        }
 
        if (!warnings->conflicting_filenames.empty()) {
                list_files_hbox.show ();
-               for (std::list<Glib::ustring>::iterator it = warnings->conflicting_filenames.begin(); it != warnings->conflicting_filenames.end(); ++it) {
-                       Glib::ustring::size_type pos = it->find_last_of ("/");
+               for (std::list<string>::iterator it = warnings->conflicting_filenames.begin(); it != warnings->conflicting_filenames.end(); ++it) {
+                       string::size_type pos = it->find_last_of ("/");
                        list_files_string += "\n" + it->substr (0, pos + 1) + "<b>" + it->substr (pos + 1) + "</b>";
                }
        }
@@ -287,14 +299,14 @@ ExportDialog::show_progress ()
        status->running = true;
 
        cancel_button->set_label (_("Stop Export"));
-       rt_export_button->set_sensitive (false);
+       //rt_export_button->set_sensitive (false);
        fast_export_button->set_sensitive (false);
 
        progress_bar.set_fraction (0.0);
        warning_widget.hide_all();
        progress_widget.show ();
        progress_widget.show_all_children ();
-       progress_connection = Glib::signal_timeout().connect (mem_fun(*this, &ExportDialog::progress_timeout), 100);
+       progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &ExportDialog::progress_timeout), 100);
 
        gtk_main_iteration ();
        while (status->running) {
@@ -304,6 +316,10 @@ ExportDialog::show_progress ()
                        usleep (10000);
                }
        }
+       
+       if (!status->aborted()) {
+               status->finish ();
+       }
 }
 
 gint
@@ -335,10 +351,10 @@ ExportDialog::progress_timeout ()
 }
 
 void
-ExportDialog::add_error (Glib::ustring const & text)
+ExportDialog::add_error (string const & text)
 {
        fast_export_button->set_sensitive (false);
-       rt_export_button->set_sensitive (false);
+       //rt_export_button->set_sensitive (false);
 
        if (warn_string.empty()) {
                warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>";
@@ -350,7 +366,7 @@ ExportDialog::add_error (Glib::ustring const & text)
 }
 
 void
-ExportDialog::add_warning (Glib::ustring const & text)
+ExportDialog::add_warning (string const & text)
 {
        if (warn_string.empty()) {
                warn_string = _("<span color=\"#ffa755\">Warning: ") + text + "</span>";
@@ -363,7 +379,7 @@ ExportDialog::add_warning (Glib::ustring const & text)
 
 /*** Dialog specializations ***/
 
-ExportRangeDialog::ExportRangeDialog (PublicEditor & editor, Glib::ustring range_id) :
+ExportRangeDialog::ExportRangeDialog (PublicEditor & editor, string range_id) :
   ExportDialog (editor, _("Export Range")),
   range_id (range_id)
 {}
@@ -372,8 +388,8 @@ void
 ExportRangeDialog::init_components ()
 {
        preset_selector.reset (new ExportPresetSelector ());
-       timespan_selector.reset (new ExportTimespanSelectorSingle (session, profile_manager, range_id));
-       channel_selector.reset (new PortExportChannelSelector (session, profile_manager));
+       timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, range_id));
+       channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
        file_notebook.reset (new ExportFileNotebook ());
 }
 
@@ -385,8 +401,8 @@ void
 ExportSelectionDialog::init_components ()
 {
        preset_selector.reset (new ExportPresetSelector ());
-       timespan_selector.reset (new ExportTimespanSelectorSingle (session, profile_manager, X_("selection")));
-       channel_selector.reset (new PortExportChannelSelector (session, profile_manager));
+       timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, X_("selection")));
+       channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
        file_notebook.reset (new ExportFileNotebook ());
 }
 
@@ -407,10 +423,10 @@ ExportRegionDialog::init_gui ()
 void
 ExportRegionDialog::init_components ()
 {
-       Glib::ustring loc_id = profile_manager->set_single_range (region.position(), region.position() + region.length(), region.name());
+       string loc_id = profile_manager->set_single_range (region.position(), region.position() + region.length(), region.name());
 
        preset_selector.reset (new ExportPresetSelector ());
-       timespan_selector.reset (new ExportTimespanSelectorSingle (session, profile_manager, loc_id));
-       channel_selector.reset (new RegionExportChannelSelector (session, profile_manager, region, track));
+       timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, loc_id));
+       channel_selector.reset (new RegionExportChannelSelector (_session, profile_manager, region, track));
        file_notebook.reset (new ExportFileNotebook ());
 }