enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / export_filename_selector.cc
index 186ff69a802c8923b3a1b9bb84dc0a168643da9c..e16f527a9ce553ccaa44be0302af9f616f77767c 100644 (file)
 
 */
 
-#include "export_filename_selector.h"
+#include <gtkmm/messagedialog.h>
 
-#include <ardour/export_handler.h>
-#include <ardour/session.h>
-#include <ardour/session_directory.h>
+#include "pbd/openuri.h"
+#include "export_filename_selector.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace ARDOUR;
 
 ExportFilenameSelector::ExportFilenameSelector () :
-  session (0),
+       include_label ("", Gtk::ALIGN_LEFT),
 
-  include_label (_("Include in Filename(s):"), Gtk::ALIGN_LEFT),
+       label_label (_("Label:"), Gtk::ALIGN_LEFT),
+       session_checkbox (_("Session Name")),
+       timespan_checkbox (_("Timespan Name")),
+       revision_checkbox (_("Revision:")),
 
-  label_label (_("Label:"), Gtk::ALIGN_LEFT),
-  session_checkbox (_("Session Name")),
-  revision_checkbox (_("Revision:")),
+       path_label (_("Folder:"), Gtk::ALIGN_LEFT),
+       browse_button (_("Browse")),
+       open_button (_("Open Folder")),
 
-  path_label (_("Folder:"), Gtk::ALIGN_LEFT),
-  browse_button (_("Browse"))
+       example_filename_label ("", Gtk::ALIGN_LEFT),
+       _require_timespan (false)
 {
+       include_label.set_markup (_("Build filename(s) from these components:"));
+
+       pack_start (path_hbox, false, false, 12);
        pack_start (include_label, false, false, 6);
        pack_start (include_hbox, false, false, 0);
-       pack_start (path_hbox, false, false, 12);
-       
+       pack_start (example_filename_label, false, false, 12);
+
+       include_hbox.pack_start (session_checkbox, false, false, 3);
        include_hbox.pack_start (label_label, false, false, 3);
        include_hbox.pack_start (label_entry, false, false, 3);
-       include_hbox.pack_start (session_checkbox, false, false, 3);
-       include_hbox.pack_start (date_format_combo, false, false, 3);
-       include_hbox.pack_start (time_format_combo, false, false, 3);
        include_hbox.pack_start (revision_checkbox, false, false, 3);
        include_hbox.pack_start (revision_spinbutton, false, false, 3);
-       
+       include_hbox.pack_start (timespan_checkbox, false, false, 3);
+       include_hbox.pack_start (date_format_combo, false, false, 3);
+       include_hbox.pack_start (time_format_combo, false, false, 3);
+
+       label_entry.set_activates_default ();
+
        path_hbox.pack_start (path_label, false, false, 3);
        path_hbox.pack_start (path_entry, true, true, 3);
        path_hbox.pack_start (browse_button, false, false, 3);
-       
+       path_hbox.pack_start (open_button, false, false, 3); // maybe Mixbus only ?
+
+       path_entry.set_activates_default ();
+
        label_sizegroup = Gtk::SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL);
        label_sizegroup->add_widget (label_label);
        label_sizegroup->add_widget (path_label);
-       
+
        /* Date */
-       
+
        date_format_list = Gtk::ListStore::create (date_format_cols);
        date_format_combo.set_model (date_format_list);
        date_format_combo.pack_start (date_format_cols.label);
-       
+
        date_format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_date_format));
-       
+
        /* Time */
-       
+
        time_format_list = Gtk::ListStore::create (time_format_cols);
        time_format_combo.set_model (time_format_list);
        time_format_combo.pack_start (time_format_cols.label);
-       
+
        time_format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_time_format));
-       
+
        /* Revision */
-       
+
        revision_spinbutton.set_digits (0);
        revision_spinbutton.set_increments (1, 10);
        revision_spinbutton.set_range (1, 1000);
        revision_spinbutton.set_sensitive (false);
-       
+
        /* Signals */
-       
+
        label_entry.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::update_label));
        path_entry.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::update_folder));
-       
+       path_entry.signal_activate().connect (sigc::mem_fun (*this, &ExportFilenameSelector::check_folder), false);
+
        session_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_session_selection));
-       
+       timespan_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_timespan_selection));
+
        revision_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_revision_selection));
        revision_spinbutton.signal_value_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_revision_value));
-       
-       browse_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFilenameSelector::open_browse_dialog));    
+
+       browse_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFilenameSelector::open_browse_dialog));
+       open_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFilenameSelector::open_folder));
 }
 
 ExportFilenameSelector::~ExportFilenameSelector ()
@@ -110,18 +124,19 @@ ExportFilenameSelector::load_state ()
 
        label_entry.set_text (filename->include_label ? filename->get_label() : "");
        session_checkbox.set_active (filename->include_session);
+       timespan_checkbox.set_active (filename->include_timespan);
        revision_checkbox.set_active (filename->include_revision);
        revision_spinbutton.set_value (filename->get_revision());
        path_entry.set_text (filename->get_folder());
-       
+
        Gtk::TreeModel::Children::iterator it;
-       
+
        for (it = date_format_list->children().begin(); it != date_format_list->children().end(); ++it) {
                if (it->get_value (date_format_cols.format) == filename->get_date_format()) {
                        date_format_combo.set_active (it);
                }
        }
-       
+
        for (it = time_format_list->children().begin(); it != time_format_list->children().end(); ++it) {
                if (it->get_value (time_format_cols.format) == filename->get_time_format()) {
                        time_format_combo.set_active (it);
@@ -132,58 +147,58 @@ ExportFilenameSelector::load_state ()
 void
 ExportFilenameSelector::set_state (ARDOUR::ExportProfileManager::FilenameStatePtr state_, ARDOUR::Session * session_)
 {
-       session = session_;
-       
+       SessionHandlePtr::set_session (session_);
+
        filename = state_->filename;
-       
+
        /* Fill combo boxes */
-       
+
        Gtk::TreeModel::iterator iter;
        Gtk::TreeModel::Row row;
-       
+
        /* Dates */
-       
+
        date_format_list->clear();
-       
+
        iter = date_format_list->append();
        row = *iter;
        row[date_format_cols.format] = ExportFilename::D_None;
        row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_None);
-       
+
        iter = date_format_list->append();
        row = *iter;
        row[date_format_cols.format] = ExportFilename::D_ISO;
        row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_ISO);
-       
+
        iter = date_format_list->append();
        row = *iter;
        row[date_format_cols.format] = ExportFilename::D_ISOShortY;
        row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_ISOShortY);
-       
+
        iter = date_format_list->append();
        row = *iter;
        row[date_format_cols.format] = ExportFilename::D_BE;
        row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_BE);
-       
+
        iter = date_format_list->append();
        row = *iter;
        row[date_format_cols.format] = ExportFilename::D_BEShortY;
        row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_BEShortY);
-       
+
        /* Times */
-       
+
        time_format_list->clear();
-       
+
        iter = time_format_list->append();
        row = *iter;
        row[time_format_cols.format] = ExportFilename::T_None;
        row[time_format_cols.label] = filename->get_time_format_str (ExportFilename::T_None);
-       
+
        iter = time_format_list->append();
        row = *iter;
        row[time_format_cols.format] = ExportFilename::T_NoDelim;
        row[time_format_cols.label] = filename->get_time_format_str (ExportFilename::T_NoDelim);
-       
+
        iter = time_format_list->append();
        row = *iter;
        row[time_format_cols.format] = ExportFilename::T_Delim;
@@ -195,15 +210,25 @@ ExportFilenameSelector::set_state (ARDOUR::ExportProfileManager::FilenameStatePt
 
 }
 
+void
+ExportFilenameSelector::set_example_filename (std::string filename)
+{
+       if (filename == "") {
+               example_filename_label.set_markup (_("<small><i>Sorry, no example filename can be shown at the moment</i></small>"));
+       } else {
+               example_filename_label.set_markup (string_compose(_("<i>Current (approximate) filename</i>: \"%1\""), filename));
+       }
+}
+
 void
 ExportFilenameSelector::update_label ()
 {
        if (!filename) {
                return;
        }
-       
+
        filename->set_label (label_entry.get_text());
-       
+
        filename->include_label = !label_entry.get_text().empty();
        CriticalSelectionChanged();
 }
@@ -214,18 +239,35 @@ ExportFilenameSelector::update_folder ()
        if (!filename) {
                return;
        }
-       
+
        filename->set_folder (path_entry.get_text());
        CriticalSelectionChanged();
 }
 
+void
+ExportFilenameSelector::check_folder ()
+{
+       if (!filename) {
+               return;
+       }
+
+       if (!Glib::file_test (path_entry.get_text(), Glib::FILE_TEST_IS_DIR|Glib::FILE_TEST_EXISTS)) {
+               Gtk::MessageDialog msg (string_compose (_("%1: this is only the directory/folder name, not the filename.\n\
+The filename will be chosen from the information just above the folder selector."), path_entry.get_text()));
+               msg.run ();
+               path_entry.set_text (Glib::path_get_dirname (path_entry.get_text()));
+               filename->set_folder (path_entry.get_text());
+               CriticalSelectionChanged();
+       }
+}
+
 void
 ExportFilenameSelector::change_date_format ()
 {
        if (!filename) {
                return;
        }
-       
+
        DateFormat format = date_format_combo.get_active()->get_value (date_format_cols.format);
        filename->set_date_format (format);
        CriticalSelectionChanged();
@@ -237,19 +279,68 @@ ExportFilenameSelector::change_time_format ()
        if (!filename) {
                return;
        }
-       
+
        TimeFormat format = time_format_combo.get_active()->get_value (time_format_cols.format);
        filename->set_time_format (format);
        CriticalSelectionChanged();
 }
 
+void
+ExportFilenameSelector::require_timespan (bool r)
+{
+       _require_timespan = r;
+       update_timespan_sensitivity ();
+}
+
+void
+ExportFilenameSelector::update_timespan_sensitivity ()
+{
+       bool implicit = _require_timespan;
+
+       if (!implicit
+                       && !filename->include_session
+                       && !filename->include_label
+                       && !filename->include_revision
+                       && !filename->include_channel_config
+                       && !filename->include_channel
+                       && !filename->include_date
+                       && !filename->include_format_name) {
+               implicit = true;
+       }
+
+       // remember prev state, force enable if implicit active.
+       if (implicit && !timespan_checkbox.get_inconsistent()) {
+               timespan_checkbox.set_inconsistent (true);
+               filename->include_timespan = true;
+       }
+       else if (!implicit && timespan_checkbox.get_inconsistent()) {
+               filename->include_timespan = timespan_checkbox.get_active();
+               timespan_checkbox.set_inconsistent (false);
+       }
+
+}
+
+void
+ExportFilenameSelector::change_timespan_selection ()
+{
+       if (!filename) {
+               return;
+       }
+       if (timespan_checkbox.get_inconsistent()) {
+               return;
+       }
+
+       filename->include_timespan = timespan_checkbox.get_active();
+       CriticalSelectionChanged();
+}
+
 void
 ExportFilenameSelector::change_session_selection ()
 {
        if (!filename) {
                return;
        }
-       
+
        filename->include_session = session_checkbox.get_active();
        CriticalSelectionChanged();
 }
@@ -260,10 +351,10 @@ ExportFilenameSelector::change_revision_selection ()
        if (!filename) {
                return;
        }
-       
+
        bool selected = revision_checkbox.get_active();
        filename->include_revision = selected;
-       
+
        revision_spinbutton.set_sensitive (selected);
        CriticalSelectionChanged();
 }
@@ -274,11 +365,23 @@ ExportFilenameSelector::change_revision_value ()
        if (!filename) {
                return;
        }
-       
+
        filename->set_revision ((uint32_t) revision_spinbutton.get_value_as_int());
        CriticalSelectionChanged();
 }
 
+void
+ExportFilenameSelector::open_folder ()
+{
+       const std::string& dir (path_entry.get_text());
+       if (!Glib::file_test (dir, Glib::FILE_TEST_IS_DIR|Glib::FILE_TEST_EXISTS)) {
+               Gtk::MessageDialog msg (string_compose (_("%1: this is not a valid directory/folder."), dir));
+               msg.run ();
+               return;
+       }
+       PBD::open_folder (dir);
+}
+
 void
 ExportFilenameSelector::open_browse_dialog ()
 {
@@ -289,15 +392,26 @@ ExportFilenameSelector::open_browse_dialog ()
        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
        dialog.add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK);
 
-       int result = dialog.run();
+       while (true) {
+               int result = dialog.run();
 
-       if (result == Gtk::RESPONSE_OK) {
-               Glib::ustring filename = dialog.get_filename();
-       
-               if (filename.length()) {
-                       path_entry.set_text (filename);
+               if (result == Gtk::RESPONSE_OK) {
+                       std::string filename = dialog.get_filename();
+
+                       if (!Glib::file_test (filename, Glib::FILE_TEST_IS_DIR|Glib::FILE_TEST_EXISTS)) {
+                               Gtk::MessageDialog msg (string_compose (_("%1: this is only the directory/folder name, not the filename.\n\
+The filename will be chosen from the information just above the folder selector."), filename));
+                               msg.run ();
+                               continue;
+                       }
+
+                       if (filename.length()) {
+                               path_entry.set_text (filename);
+                               break;
+                       }
                }
+               break;
        }
-       
+
        CriticalSelectionChanged();
 }