Display length & check digit of entered EAN-13 in metadata dialogue
[ardour.git] / gtk2_ardour / export_file_notebook.cc
index ab9a22ee28d34b6a56de36d4f8feb27d4ca2bf6f..ae924c10e3d9ae754f9afc25c7582c30d2fe6161 100644 (file)
 
 #include "ardour/export_format_specification.h"
 
+#include "gui_thread.h"
 #include "utils.h"
 #include "i18n.h"
 
 using namespace ARDOUR;
+using namespace ARDOUR_UI_UTILS;
+using namespace PBD;
 
 ExportFileNotebook::ExportFileNotebook () :
   page_counter (1)
@@ -33,7 +36,7 @@ ExportFileNotebook::ExportFileNotebook () :
        /* Last page */
 
        new_file_button.set_image (*Gtk::manage (new Gtk::Image (::get_icon("add"))));
-       new_file_button.set_label (_(" Click here to add another format"));
+       new_file_button.set_label (_("Add another format"));
        new_file_button.set_alignment (0, 0.5);
        new_file_button.set_relief (Gtk::RELIEF_NONE);
 
@@ -49,7 +52,7 @@ ExportFileNotebook::ExportFileNotebook () :
 void
 ExportFileNotebook::set_session_and_manager (ARDOUR::Session * s, boost::shared_ptr<ARDOUR::ExportProfileManager> manager)
 {
-       session = s;
+       SessionHandlePtr::set_session (s);
        profile_manager = manager;
 
        sync_with_manager ();
@@ -84,17 +87,41 @@ ExportFileNotebook::sync_with_manager ()
        }
 
        set_current_page (0);
+       update_soundcloud_upload ();
        CriticalSelectionChanged ();
 }
 
-Glib::ustring
-ExportFileNotebook::get_nth_format_name (uint32_t n)
+void
+ExportFileNotebook::update_soundcloud_upload ()
+{
+       int i;
+       bool show_credentials_entry = false;
+       ExportProfileManager::FormatStateList const & formats = profile_manager->get_formats ();
+       ExportProfileManager::FormatStateList::const_iterator format_it;
+
+       for (i = 0, format_it = formats.begin(); format_it != formats.end(); ++i, ++format_it) {
+               FilePage * page;
+               if ((page = dynamic_cast<FilePage *> (get_nth_page (i)))) {
+                       bool this_soundcloud_upload = page->get_soundcloud_upload ();
+                       (*format_it)->format->set_soundcloud_upload (this_soundcloud_upload);
+                       if (this_soundcloud_upload) {
+                               show_credentials_entry  = true;
+                       }
+               }
+       }
+
+       soundcloud_export_selector->set_visible (show_credentials_entry);
+
+}
+
+void
+ExportFileNotebook::update_example_filenames ()
 {
+       int i = 0;
        FilePage * page;
-       if ((page = dynamic_cast<FilePage *> (get_nth_page (n - 1)))) {
-               return page->get_format_name();
+       while ((page = dynamic_cast<FilePage *> (get_nth_page (i++)))) {
+               page->update_example_filename();
        }
-       return "";
 }
 
 void
@@ -110,7 +137,7 @@ ExportFileNotebook::add_new_file_page ()
 void
 ExportFileNotebook::add_file_page (ARDOUR::ExportProfileManager::FormatStatePtr format_state, ARDOUR::ExportProfileManager::FilenameStatePtr filename_state)
 {
-       FilePage * page = Gtk::manage (new FilePage (session, profile_manager, this, page_counter, format_state, filename_state));
+       FilePage * page = Gtk::manage (new FilePage (_session, profile_manager, this, page_counter, format_state, filename_state));
        page->CriticalSelectionChanged.connect (CriticalSelectionChanged.make_slot());
        insert_page (*page, page->get_tab_widget(), get_n_pages() - 1);
 
@@ -165,6 +192,7 @@ ExportFileNotebook::FilePage::FilePage (Session * s, ManagerPtr profile_manager,
 
   format_label (_("Format"), Gtk::ALIGN_LEFT),
   filename_label (_("Location"), Gtk::ALIGN_LEFT),
+  soundcloud_upload_button (_("Upload to Soundcloud")),
   tab_number (number)
 {
        set_border_width (12);
@@ -173,6 +201,7 @@ ExportFileNotebook::FilePage::FilePage (Session * s, ManagerPtr profile_manager,
        pack_start (format_align, false, false, 0);
        pack_start (filename_label, false, false, 0);
        pack_start (filename_align, false, false, 0);
+       pack_start (soundcloud_upload_button, false, false, 0);
 
        format_align.add (format_selector);
        format_align.set_padding (6, 12, 18, 0);
@@ -196,15 +225,18 @@ ExportFileNotebook::FilePage::FilePage (Session * s, ManagerPtr profile_manager,
 
        tab_close_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*parent, &ExportFileNotebook::remove_file_page), this));
 
-       profile_manager->FormatListChanged.connect (sigc::mem_fun (format_selector, &ExportFormatSelector::update_format_list));
+       profile_manager->FormatListChanged.connect (format_connection, invalidator (*this), boost::bind (&ExportFormatSelector::update_format_list, &format_selector), gui_context());
 
        format_selector.FormatEdited.connect (sigc::mem_fun (*this, &ExportFileNotebook::FilePage::save_format_to_manager));
        format_selector.FormatRemoved.connect (sigc::mem_fun (*profile_manager, &ExportProfileManager::remove_format_profile));
        format_selector.NewFormat.connect (sigc::mem_fun (*profile_manager, &ExportProfileManager::get_new_format));
 
-       format_selector.CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportFileNotebook::FilePage::update_tab_label));
-       filename_selector.CriticalSelectionChanged.connect (CriticalSelectionChanged.make_slot());
+       format_selector.CriticalSelectionChanged.connect (
+               sigc::mem_fun (*this, &ExportFileNotebook::FilePage::critical_selection_changed));
+       filename_selector.CriticalSelectionChanged.connect (
+               sigc::mem_fun (*this, &ExportFileNotebook::FilePage::critical_selection_changed));
 
+       soundcloud_upload_button.signal_toggled().connect (sigc::mem_fun (*parent, &ExportFileNotebook::update_soundcloud_upload));
        /* Tab widget */
 
        tab_close_button.add (*Gtk::manage (new Gtk::Image (::get_icon("close"))));
@@ -215,6 +247,7 @@ ExportFileNotebook::FilePage::FilePage (Session * s, ManagerPtr profile_manager,
        tab_widget.pack_end (tab_close_alignment, false, false, 0);
        tab_widget.show_all_children ();
        update_tab_label ();
+       update_example_filename();
 
        /* Done */
 
@@ -231,13 +264,19 @@ ExportFileNotebook::FilePage::set_remove_sensitive (bool value)
        tab_close_button.set_sensitive (value);
 }
 
-Glib::ustring
+std::string
 ExportFileNotebook::FilePage::get_format_name () const
 {
        if (format_state && format_state->format) {
                return format_state->format->name();
        }
-       return "No format!";
+       return _("No format!");
+}
+
+bool
+ExportFileNotebook::FilePage::get_soundcloud_upload () const
+{
+       return soundcloud_upload_button.get_active ();
 }
 
 void
@@ -249,6 +288,32 @@ ExportFileNotebook::FilePage::save_format_to_manager (FormatPtr format)
 void
 ExportFileNotebook::FilePage::update_tab_label ()
 {
-       tab_label.set_text (string_compose ("Format %1: %2", tab_number, get_format_name()));
+       tab_label.set_text (string_compose (_("Format %1: %2"), tab_number, get_format_name()));
+}
+
+void
+ExportFileNotebook::FilePage::update_example_filename()
+{
+       if (profile_manager) {
+
+               std::string example;
+               if (format_state->format) {
+                       example = profile_manager->get_sample_filename_for_format (
+                               filename_state->filename, format_state->format);
+               }
+               
+               if (example != "") {
+                       filename_selector.set_example_filename(Glib::path_get_basename (example));
+               } else {
+                       filename_selector.set_example_filename("");
+               }
+       }
+}
+
+void
+ExportFileNotebook::FilePage::critical_selection_changed ()
+{
+       update_tab_label();
+       update_example_filename();
        CriticalSelectionChanged();
 }