X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fexport_timespan_selector.cc;h=21273633832d3498117cf052d2f1489c367416bb;hb=0a3fc4a87fcdab7f7c1ed95d42ec7ac28c95c3e1;hp=61d813d2229cf4b751b651517657777d8904eb57;hpb=8c9749e42faf7808034ed8b7afce4a2fe6dc6f33;p=ardour.git diff --git a/gtk2_ardour/export_timespan_selector.cc b/gtk2_ardour/export_timespan_selector.cc index 61d813d222..2127363383 100644 --- a/gtk2_ardour/export_timespan_selector.cc +++ b/gtk2_ardour/export_timespan_selector.cc @@ -18,9 +18,11 @@ */ -#include "export_timespan_selector.h" +#include +#include -#include "ardour_ui.h" +#include "pbd/enumwriter.h" +#include "pbd/string_convert.h" #include "ardour/location.h" #include "ardour/types.h" @@ -28,43 +30,49 @@ #include "ardour/export_handler.h" #include "ardour/export_timespan.h" -#include "pbd/enumwriter.h" -#include "pbd/convert.h" - -#include -#include +#include "export_timespan_selector.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace Glib; using namespace ARDOUR; using namespace PBD; using std::string; -ExportTimespanSelector::ExportTimespanSelector (ARDOUR::Session * session, ProfileManagerPtr manager) : - manager (manager), - time_format_label (_("Show Times as:"), Gtk::ALIGN_LEFT) +ExportTimespanSelector::ExportTimespanSelector (ARDOUR::Session * session, ProfileManagerPtr manager, bool multi) + : manager (manager) + , _realtime_available (true) + , time_format_label (_("Show Times as:"), Gtk::ALIGN_LEFT) + , realtime_checkbutton (_("Realtime Export")) { set_session (session); option_hbox.pack_start (time_format_label, false, false, 0); option_hbox.pack_start (time_format_combo, false, false, 6); - Gtk::Button* b = Gtk::manage (new Gtk::Button (_("Select All"))); - b->signal_clicked().connect ( - sigc::bind ( - sigc::mem_fun (*this, &ExportTimespanSelector::set_selection_state_of_all_timespans), true - ) - ); - option_hbox.pack_start (*b, false, false, 6); - - b = Gtk::manage (new Gtk::Button (_("Deselect All"))); - b->signal_clicked().connect ( - sigc::bind ( - sigc::mem_fun (*this, &ExportTimespanSelector::set_selection_state_of_all_timespans), false - ) - ); - option_hbox.pack_start (*b, false, false, 6); + if (multi) { + Gtk::Button* b = Gtk::manage (new Gtk::Button (_("Select All"))); + b->signal_clicked().connect ( + sigc::bind ( + sigc::mem_fun (*this, &ExportTimespanSelector::set_selection_state_of_all_timespans), true + ) + ); + option_hbox.pack_start (*b, false, false, 6); + + b = Gtk::manage (new Gtk::Button (_("Deselect All"))); + b->signal_clicked().connect ( + sigc::bind ( + sigc::mem_fun (*this, &ExportTimespanSelector::set_selection_state_of_all_timespans), false + ) + ); + option_hbox.pack_start (*b, false, false, 6); + } + option_hbox.pack_start (realtime_checkbutton, false, false, 6); + realtime_checkbutton.set_active (session->config.get_realtime_export ()); + + realtime_checkbutton.signal_toggled ().connect ( + sigc::mem_fun (*this, &ExportTimespanSelector::toggle_realtime) + ); range_scroller.add (range_view); @@ -80,7 +88,6 @@ ExportTimespanSelector::ExportTimespanSelector (ARDOUR::Session * session, Profi time_format_list = Gtk::ListStore::create (time_format_cols); time_format_combo.set_model (time_format_list); - time_format_combo.set_name ("PaddedButton"); iter = time_format_list->append(); row = *iter; @@ -134,7 +141,7 @@ ExportTimespanSelector::location_sorter(Gtk::TreeModel::iterator a, Gtk::TreeMod } void -ExportTimespanSelector::add_range_to_selection (ARDOUR::Location const * loc) +ExportTimespanSelector::add_range_to_selection (ARDOUR::Location const * loc, bool rt) { ExportTimespanPtr span = _session->get_export_handler()->add_timespan(); @@ -148,6 +155,7 @@ ExportTimespanSelector::add_range_to_selection (ARDOUR::Location const * loc) span->set_range (loc->start(), loc->end()); span->set_name (loc->name()); span->set_range_id (id); + span->set_realtime (rt); state->timespans->push_back (span); } @@ -170,6 +178,30 @@ ExportTimespanSelector::sync_with_manager () CriticalSelectionChanged(); } +void +ExportTimespanSelector::allow_realtime_export (bool yn) +{ + if (_realtime_available == yn) { + return; + } + _realtime_available = yn; + realtime_checkbutton.set_sensitive (_realtime_available); + update_timespans (); +} + +void +ExportTimespanSelector::toggle_realtime () +{ + const bool realtime = !_session->config.get_realtime_export (); + _session->config.set_realtime_export (realtime); + realtime_checkbutton.set_inconsistent (false); + realtime_checkbutton.set_active (realtime); + + for (Gtk::TreeStore::Children::iterator it = range_list->children().begin(); it != range_list->children().end(); ++it) { + it->set_value (range_cols.realtime, realtime); + } +} + void ExportTimespanSelector::change_time_format () { @@ -189,28 +221,28 @@ ExportTimespanSelector::construct_label (ARDOUR::Location const * location) cons std::string start; std::string end; - framepos_t start_frame = location->start(); - framepos_t end_frame = location->end(); + samplepos_t start_sample = location->start(); + samplepos_t end_sample = location->end(); switch (state->time_format) { - case AudioClock::BBT: - start = bbt_str (start_frame); - end = bbt_str (end_frame); + case ExportProfileManager::BBT: + start = bbt_str (start_sample); + end = bbt_str (end_sample); break; - case AudioClock::Timecode: - start = timecode_str (start_frame); - end = timecode_str (end_frame); + case ExportProfileManager::Timecode: + start = timecode_str (start_sample); + end = timecode_str (end_sample); break; - case AudioClock::MinSec: - start = ms_str (start_frame); - end = ms_str (end_frame); + case ExportProfileManager::MinSec: + start = ms_str (start_sample); + end = ms_str (end_sample); break; - case AudioClock::Frames: - start = to_string (start_frame, std::dec); - end = to_string (end_frame, std::dec); + case ExportProfileManager::Samples: + start = to_string (start_sample); + end = to_string (end_sample); break; } @@ -239,11 +271,11 @@ ExportTimespanSelector::construct_length (ARDOUR::Location const * location) con std::stringstream s; switch (state->time_format) { - case AudioClock::BBT: + case ExportProfileManager::BBT: s << bbt_str (location->length ()); break; - case AudioClock::Timecode: + case ExportProfileManager::Timecode: { Timecode::Time tc; _session->timecode_duration (location->length(), tc); @@ -251,11 +283,11 @@ ExportTimespanSelector::construct_length (ARDOUR::Location const * location) con break; } - case AudioClock::MinSec: + case ExportProfileManager::MinSec: s << ms_str (location->length ()); break; - case AudioClock::Frames: + case ExportProfileManager::Samples: s << location->length (); break; } @@ -265,7 +297,7 @@ ExportTimespanSelector::construct_length (ARDOUR::Location const * location) con std::string -ExportTimespanSelector::bbt_str (framepos_t frames) const +ExportTimespanSelector::bbt_str (samplepos_t samples) const { if (!_session) { return "Error!"; @@ -273,14 +305,14 @@ ExportTimespanSelector::bbt_str (framepos_t frames) const std::ostringstream oss; Timecode::BBT_Time time; - _session->bbt_time (frames, time); + _session->bbt_time (samples, time); print_padded (oss, time); return oss.str (); } std::string -ExportTimespanSelector::timecode_str (framecnt_t frames) const +ExportTimespanSelector::timecode_str (samplecnt_t samples) const { if (!_session) { return "Error!"; @@ -289,7 +321,7 @@ ExportTimespanSelector::timecode_str (framecnt_t frames) const std::ostringstream oss; Timecode::Time time; - _session->timecode_time (frames, time); + _session->timecode_time (samples, time); oss << std::setfill('0') << std::right << std::setw(2) << @@ -305,27 +337,27 @@ ExportTimespanSelector::timecode_str (framecnt_t frames) const } std::string -ExportTimespanSelector::ms_str (framecnt_t frames) const +ExportTimespanSelector::ms_str (samplecnt_t samples) const { if (!_session) { return "Error!"; } std::ostringstream oss; - framecnt_t left; + samplecnt_t left; int hrs; int mins; int secs; int sec_promilles; - left = frames; - hrs = (int) floor (left / (_session->frame_rate() * 60.0f * 60.0f)); - left -= (framecnt_t) floor (hrs * _session->frame_rate() * 60.0f * 60.0f); - mins = (int) floor (left / (_session->frame_rate() * 60.0f)); - left -= (framecnt_t) floor (mins * _session->frame_rate() * 60.0f); - secs = (int) floor (left / (float) _session->frame_rate()); - left -= (framecnt_t) floor ((double)(secs * _session->frame_rate())); - sec_promilles = (int) (left * 1000 / (float) _session->frame_rate() + 0.5); + left = samples; + hrs = (int) floor (left / (_session->sample_rate() * 60.0f * 60.0f)); + left -= (samplecnt_t) floor (hrs * _session->sample_rate() * 60.0f * 60.0f); + mins = (int) floor (left / (_session->sample_rate() * 60.0f)); + left -= (samplecnt_t) floor (mins * _session->sample_rate() * 60.0f); + secs = (int) floor (left / (float) _session->sample_rate()); + left -= (samplecnt_t) floor ((double)(secs * _session->sample_rate())); + sec_promilles = (int) (left * 1000 / (float) _session->sample_rate() + 0.5); oss << std::setfill('0') << std::right << std::setw(2) << @@ -360,13 +392,18 @@ ExportTimespanSelector::set_selection_state_of_all_timespans (bool s) /*** ExportTimespanSelectorSingle ***/ ExportTimespanSelectorSingle::ExportTimespanSelectorSingle (ARDOUR::Session * session, ProfileManagerPtr manager, std::string range_id) : - ExportTimespanSelector (session, manager), + ExportTimespanSelector (session, manager, false), range_id (range_id) { range_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_NEVER); + range_view.append_column_editable (_("RT"), range_cols.realtime); range_view.append_column_editable (_("Range"), range_cols.name); - if (Gtk::CellRendererText * renderer = dynamic_cast (range_view.get_column_cell_renderer (0))) { + if (Gtk::CellRendererToggle * renderer = dynamic_cast (range_view.get_column_cell_renderer (0))) { + renderer->signal_toggled().connect (sigc::hide (sigc::mem_fun (*this, &ExportTimespanSelectorSingle::update_timespans))); + } + + if (Gtk::CellRendererText * renderer = dynamic_cast (range_view.get_column_cell_renderer (1))) { renderer->signal_edited().connect (sigc::mem_fun (*this, &ExportTimespanSelectorSingle::update_range_name)); } @@ -378,10 +415,18 @@ ExportTimespanSelectorSingle::ExportTimespanSelectorSingle (ARDOUR::Session * se range_view.append_column (_("Length"), range_cols.length); } +void +ExportTimespanSelectorSingle::allow_realtime_export (bool yn) +{ + ExportTimespanSelector::allow_realtime_export (yn); + range_view.get_column (0)->set_visible (_realtime_available); +} + void ExportTimespanSelectorSingle::fill_range_list () { if (!state) { return; } + const bool realtime = _session->config.get_realtime_export (); std::string id; if (!range_id.compare (X_("selection"))) { @@ -403,11 +448,12 @@ ExportTimespanSelectorSingle::fill_range_list () row[range_cols.location] = *it; row[range_cols.selected] = true; + row[range_cols.realtime] = realtime; row[range_cols.name] = (*it)->name(); row[range_cols.label] = construct_label (*it); row[range_cols.length] = construct_length (*it); - add_range_to_selection (*it); + add_range_to_selection (*it, false); break; } @@ -416,19 +462,39 @@ ExportTimespanSelectorSingle::fill_range_list () set_time_format_from_state(); } +void +ExportTimespanSelectorSingle::update_timespans () +{ + state->timespans->clear(); + const bool realtime = _session->config.get_realtime_export (); + bool inconsistent = false; + + for (Gtk::TreeStore::Children::iterator it = range_list->children().begin(); it != range_list->children().end(); ++it) { + add_range_to_selection (it->get_value (range_cols.location), it->get_value (range_cols.realtime) && _realtime_available); + if (it->get_value (range_cols.realtime) != realtime) { + inconsistent = true; + } + } + realtime_checkbutton.set_inconsistent (inconsistent); +} + /*** ExportTimespanSelectorMultiple ***/ ExportTimespanSelectorMultiple::ExportTimespanSelectorMultiple (ARDOUR::Session * session, ProfileManagerPtr manager) : - ExportTimespanSelector (session, manager) + ExportTimespanSelector (session, manager, true) { range_scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); range_view.append_column_editable ("", range_cols.selected); + range_view.append_column_editable (_("RT"), range_cols.realtime); range_view.append_column_editable (_("Range"), range_cols.name); if (Gtk::CellRendererToggle * renderer = dynamic_cast (range_view.get_column_cell_renderer (0))) { renderer->signal_toggled().connect (sigc::hide (sigc::mem_fun (*this, &ExportTimespanSelectorMultiple::update_selection))); } - if (Gtk::CellRendererText * renderer = dynamic_cast (range_view.get_column_cell_renderer (1))) { + if (Gtk::CellRendererToggle * renderer = dynamic_cast (range_view.get_column_cell_renderer (1))) { + renderer->signal_toggled().connect (sigc::hide (sigc::mem_fun (*this, &ExportTimespanSelectorMultiple::update_selection))); + } + if (Gtk::CellRendererText * renderer = dynamic_cast (range_view.get_column_cell_renderer (2))) { renderer->signal_edited().connect (sigc::mem_fun (*this, &ExportTimespanSelectorMultiple::update_range_name)); } @@ -440,10 +506,18 @@ ExportTimespanSelectorMultiple::ExportTimespanSelectorMultiple (ARDOUR::Session range_view.append_column (_("Length"), range_cols.length); } +void +ExportTimespanSelectorMultiple::allow_realtime_export (bool yn) +{ + ExportTimespanSelector::allow_realtime_export (yn); + range_view.get_column (1)->set_visible (_realtime_available); +} + void ExportTimespanSelectorMultiple::fill_range_list () { if (!state) { return; } + const bool realtime = _session->config.get_realtime_export (); range_list->clear(); @@ -456,6 +530,7 @@ ExportTimespanSelectorMultiple::fill_range_list () row[range_cols.location] = *it; row[range_cols.selected] = false; + row[range_cols.realtime] = realtime; row[range_cols.name] = (*it)->name(); row[range_cols.label] = construct_label (*it); row[range_cols.length] = construct_length (*it); @@ -477,6 +552,7 @@ ExportTimespanSelectorMultiple::set_selection_from_state () if ((id == "selection" && loc == state->selection_range.get()) || (id == loc->id().to_s())) { tree_it->set_value (range_cols.selected, true); + tree_it->set_value (range_cols.realtime, (*it)->realtime ()); } } } @@ -495,11 +571,17 @@ void ExportTimespanSelectorMultiple::update_timespans () { state->timespans->clear(); + const bool realtime = _session->config.get_realtime_export (); + bool inconsistent = false; for (Gtk::TreeStore::Children::iterator it = range_list->children().begin(); it != range_list->children().end(); ++it) { if (it->get_value (range_cols.selected)) { - add_range_to_selection (it->get_value (range_cols.location)); + add_range_to_selection (it->get_value (range_cols.location), it->get_value (range_cols.realtime) && _realtime_available); + } + if (it->get_value (range_cols.realtime) != realtime) { + inconsistent = true; } } + realtime_checkbutton.set_inconsistent (inconsistent); }