X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Foption_editor.cc;h=d49f8a3be0372864ab8d52691baa7205956cb4a3;hb=b637c2223f0d2bbe5eff1f10ad7b1ba0c5ccc86a;hp=4072a362b02ede104643de82909486268daa2c5d;hpb=f4e6f8fec5c4ed705b2f0124666d632c392dbbc3;p=ardour.git diff --git a/gtk2_ardour/option_editor.cc b/gtk2_ardour/option_editor.cc index 4072a362b0..d49f8a3be0 100644 --- a/gtk2_ardour/option_editor.cc +++ b/gtk2_ardour/option_editor.cc @@ -1,4 +1,4 @@ - /* +/* Copyright (C) 2001-2009 Paul Davis This program is free software; you can redistribute it and/or modify @@ -16,42 +16,83 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include #include #include -#include "ardour/configuration.h" +#include "gtkmm2ext/utils.h" + +#include "ardour/dB.h" +#include "ardour/rc_configuration.h" +#include "ardour/session.h" +#include "ardour/types.h" +#include "ardour/utils.h" + +#include "pbd/configuration.h" +#include "pbd/replace_all.h" + +#include "public_editor.h" #include "option_editor.h" #include "gui_thread.h" #include "i18n.h" using namespace std; -using namespace sigc; using namespace Gtk; +using namespace Gtkmm2ext; using namespace ARDOUR; void OptionEditorComponent::add_widget_to_page (OptionEditorPage* p, Gtk::Widget* w) { int const n = p->table.property_n_rows(); - p->table.resize (n + 1, 3); + int m = n + 1; + if (!_note.empty ()) { + ++m; + } + + p->table.resize (m, 3); p->table.attach (*w, 1, 3, n, n + 1, FILL | EXPAND); + + maybe_add_note (p, n + 1); } void OptionEditorComponent::add_widgets_to_page (OptionEditorPage* p, Gtk::Widget* wa, Gtk::Widget* wb) { int const n = p->table.property_n_rows(); - p->table.resize (n + 1, 3); - p->table.attach (*wa, 1, 2, n, n + 1, FILL | EXPAND); + int m = n + 1; + if (!_note.empty ()) { + ++m; + } + + p->table.resize (m, 3); + p->table.attach (*wa, 1, 2, n, n + 1, FILL); p->table.attach (*wb, 2, 3, n, n + 1, FILL | EXPAND); + + maybe_add_note (p, n + 1); +} + +void +OptionEditorComponent::maybe_add_note (OptionEditorPage* p, int n) +{ + if (!_note.empty ()) { + Gtk::Label* l = manage (new Gtk::Label (string_compose (X_("%1"), _note))); + l->set_use_markup (true); + p->table.attach (*l, 1, 3, n, n + 1, FILL | EXPAND); + } +} + +void +OptionEditorComponent::set_note (string const & n) +{ + _note = n; } OptionEditorHeading::OptionEditorHeading (string const & h) { std::stringstream s; s << "" << h << ""; - _label = manage (new Label (s.str())); - _label->set_alignment (0, 0.5); + _label = manage (left_aligned_label (s.str())); _label->set_use_markup (true); } @@ -71,14 +112,17 @@ OptionEditorBox::add_to_page (OptionEditorPage* p) add_widget_to_page (p, _box); } -BoolOption::BoolOption (string const & i, string const & n, slot g, slot s) +BoolOption::BoolOption (string const & i, string const & n, sigc::slot g, sigc::slot s) : Option (i, n), _get (g), _set (s) { - _button = manage (new CheckButton (n)); + _button = manage (new CheckButton); + _label = manage (new Label); + _label->set_markup (n); + _button->add (*_label); _button->set_active (_get ()); - _button->signal_toggled().connect (mem_fun (*this, &BoolOption::toggled)); + _button->signal_toggled().connect (sigc::mem_fun (*this, &BoolOption::toggled)); } void @@ -99,6 +143,229 @@ BoolOption::toggled () _set (_button->get_active ()); } +RouteDisplayBoolOption::RouteDisplayBoolOption (string const & i, string const & n, sigc::slot g, sigc::slot s) + : BoolOption (i, n, g, s) +{ +} + +void +RouteDisplayBoolOption::toggled () +{ + DisplaySuspender ds; + BoolOption::toggled (); +} + +EntryOption::EntryOption (string const & i, string const & n, sigc::slot g, sigc::slot s) + : Option (i, n), + _get (g), + _set (s) +{ + _label = manage (left_aligned_label (n + ":")); + _entry = manage (new Entry); + _entry->signal_activate().connect (sigc::mem_fun (*this, &EntryOption::activated)); + _entry->signal_focus_out_event().connect (sigc::mem_fun (*this, &EntryOption::focus_out)); + _entry->signal_insert_text().connect (sigc::mem_fun (*this, &EntryOption::filter_text)); +} + +void +EntryOption::add_to_page (OptionEditorPage* p) +{ + add_widgets_to_page (p, _label, _entry); +} + +void +EntryOption::set_state_from_config () +{ + _entry->set_text (_get ()); +} + +void +EntryOption::set_sensitive (bool s) +{ + _entry->set_sensitive (s); +} + +void +EntryOption::filter_text (const Glib::ustring&, int*) +{ + std::string text = _entry->get_text (); + for (size_t i = 0; i < _invalid.length(); ++i) { + text.erase (std::remove(text.begin(), text.end(), _invalid.at(i)), text.end()); + } + if (text != _entry->get_text ()) { + _entry->set_text (text); + } +} + +void +EntryOption::activated () +{ + _set (_entry->get_text ()); +} + +bool +EntryOption::focus_out (GdkEventFocus*) +{ + _set (_entry->get_text ()); + return true; +} + +/** Construct a BoolComboOption. + * @param i id + * @param n User-visible name. + * @param t Text to give for the variable being true. + * @param f Text to give for the variable being false. + * @param g Slot to get the variable's value. + * @param s Slot to set the variable's value. + */ +BoolComboOption::BoolComboOption ( + string const & i, string const & n, string const & t, string const & f, + sigc::slot g, sigc::slot s + ) + : Option (i, n) + , _get (g) + , _set (s) +{ + _label = manage (new Label (n + ":")); + _label->set_alignment (0, 0.5); + _combo = manage (new ComboBoxText); + + /* option 0 is the false option */ + _combo->append_text (f); + /* and option 1 is the true */ + _combo->append_text (t); + + _combo->signal_changed().connect (sigc::mem_fun (*this, &BoolComboOption::changed)); +} + +void +BoolComboOption::set_state_from_config () +{ + _combo->set_active (_get() ? 1 : 0); +} + +void +BoolComboOption::add_to_page (OptionEditorPage* p) +{ + add_widgets_to_page (p, _label, _combo); +} + +void +BoolComboOption::changed () +{ + _set (_combo->get_active_row_number () == 0 ? false : true); +} + +void +BoolComboOption::set_sensitive (bool yn) +{ + _combo->set_sensitive (yn); +} + + + +FaderOption::FaderOption (string const & i, string const & n, sigc::slot g, sigc::slot s) + : Option (i, n) + , _db_adjustment (gain_to_slider_position_with_max (1.0, Config->get_max_gain()), 0, 1, 0.01, 0.1) + , _get (g) + , _set (s) +{ + _db_slider = manage (new HSliderController (&_db_adjustment, boost::shared_ptr(), 115, 18)); + + _label.set_text (n + ":"); + _label.set_alignment (0, 0.5); + _label.set_name (X_("OptionsLabel")); + + _fader_centering_box.pack_start (*_db_slider, true, false); + + _box.set_spacing (4); + _box.set_homogeneous (false); + _box.pack_start (_fader_centering_box, false, false); + _box.pack_start (_db_display, false, false); + _box.show_all (); + + set_size_request_to_display_given_text (_db_display, "-99.00", 12, 12); + + _db_adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &FaderOption::db_changed)); +} + +void +FaderOption::set_state_from_config () +{ + gain_t const val = _get (); + _db_adjustment.set_value (gain_to_slider_position_with_max (val, Config->get_max_gain ())); + + char buf[16]; + + if (val == 0.0) { + snprintf (buf, sizeof (buf), "-inf"); + } else { + snprintf (buf, sizeof (buf), "%.2f", accurate_coefficient_to_dB (val)); + } + + _db_display.set_text (buf); +} + +void +FaderOption::db_changed () +{ + _set (slider_position_to_gain_with_max (_db_adjustment.get_value (), Config->get_max_gain())); +} + +void +FaderOption::add_to_page (OptionEditorPage* p) +{ + add_widgets_to_page (p, &_label, &_box); +} + +ClockOption::ClockOption (string const & i, string const & n, sigc::slot g, sigc::slot s) + : Option (i, n) + , _clock (X_("timecode-offset"), true, X_(""), true, false, true, false) + , _get (g) + , _set (s) +{ + _label.set_text (n + ":"); + _label.set_alignment (0, 0.5); + _label.set_name (X_("OptionsLabel")); + _clock.ValueChanged.connect (sigc::mem_fun (*this, &ClockOption::save_clock_time)); +} + +void +ClockOption::set_state_from_config () +{ + Timecode::Time TC; + framepos_t when; + if (!Timecode::parse_timecode_format(_get(), TC)) { + _clock.set (0, true); + } + TC.rate = _session->frames_per_timecode_frame(); + TC.drop = _session->timecode_drop_frames(); + _session->timecode_to_sample(TC, when, false, false); + if (TC.negative) { when=-when; } + _clock.set (when, true); +} + +void +ClockOption::save_clock_time () +{ + Timecode::Time TC; + _session->sample_to_timecode(_clock.current_time(), TC, false, false); + _set (Timecode::timecode_format_time(TC)); +} + +void +ClockOption::add_to_page (OptionEditorPage* p) +{ + add_widgets_to_page (p, &_label, &_clock); +} + +void +ClockOption::set_session (Session* s) +{ + _session = s; + _clock.set_session (s); +} + OptionEditorPage::OptionEditorPage (Gtk::Notebook& n, std::string const & t) : table (1, 3) { @@ -113,21 +380,20 @@ OptionEditorPage::OptionEditorPage (Gtk::Notebook& n, std::string const & t) * @param o Configuration to edit. * @param t Title for the dialog. */ -OptionEditor::OptionEditor (Configuration* c, std::string const & t) - : ArdourDialog (t, false), _config (c) +OptionEditor::OptionEditor (PBD::Configuration* c, std::string const & t) + : ArdourWindow (t), _config (c) { using namespace Notebook_Helpers; set_default_size (300, 300); - set_wmclass (X_("ardour_preferences"), "Ardour"); + // set_wmclass (X_("ardour_preferences"), PROGRAM_NAME); set_name ("Preferences"); add_events (Gdk::KEY_PRESS_MASK | Gdk::KEY_RELEASE_MASK); set_border_width (4); - get_vbox()->set_spacing (4); - get_vbox()->pack_start (_notebook); + add (_notebook); _notebook.set_show_tabs (true); _notebook.set_show_border (true); @@ -136,7 +402,7 @@ OptionEditor::OptionEditor (Configuration* c, std::string const & t) show_all_children(); /* Watch out for changes to parameters */ - _config->ParameterChanged.connect (mem_fun (*this, &OptionEditor::parameter_changed)); + _config->ParameterChanged.connect (config_connection, invalidator (*this), boost::bind (&OptionEditor::parameter_changed, this, _1), gui_context()); } OptionEditor::~OptionEditor () @@ -155,7 +421,7 @@ OptionEditor::~OptionEditor () void OptionEditor::parameter_changed (std::string const & p) { - ENSURE_GUI_THREAD (bind (mem_fun (*this, &OptionEditor::parameter_changed), p)); + ENSURE_GUI_THREAD (*this, &OptionEditor::parameter_changed, p) for (std::map::iterator i = _pages.begin(); i != _pages.end(); ++i) { for (std::list::iterator j = i->second->components.begin(); j != i->second->components.end(); ++j) { @@ -181,3 +447,71 @@ OptionEditor::add_option (std::string const & pn, OptionEditorComponent* o) o->add_to_page (p); o->set_state_from_config (); } + +/** Add a new page + * @param pn Page name (will be created if it doesn't already exist) + * @param w widget that fills the page + */ +void +OptionEditor::add_page (std::string const & pn, Gtk::Widget& w) +{ + if (_pages.find (pn) == _pages.end()) { + _pages[pn] = new OptionEditorPage (_notebook, pn); + } + + OptionEditorPage* p = _pages[pn]; + p->box.pack_start (w, true, true); +} + +void +OptionEditor::set_current_page (string const & p) +{ + int i = 0; + while (i < _notebook.get_n_pages ()) { + if (_notebook.get_tab_label_text (*_notebook.get_nth_page (i)) == p) { + _notebook.set_current_page (i); + return; + } + + ++i; + } +} + + +DirectoryOption::DirectoryOption (string const & i, string const & n, sigc::slot g, sigc::slot s) + : Option (i, n) + , _get (g) + , _set (s) +{ + _file_chooser.set_action (Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER); + _file_chooser.signal_selection_changed().connect (sigc::mem_fun (*this, &DirectoryOption::selection_changed)); + _file_chooser.signal_current_folder_changed().connect (sigc::mem_fun (*this, &DirectoryOption::current_folder_set)); +} + + +void +DirectoryOption::set_state_from_config () +{ + _file_chooser.set_current_folder (poor_mans_glob(_get ())); +} + +void +DirectoryOption::add_to_page (OptionEditorPage* p) +{ + Gtk::Label *label = manage (new Label (_name)); + label->set_alignment (0, 0.5); + label->set_name (X_("OptionsLabel")); + add_widgets_to_page (p, label, &_file_chooser); +} + +void +DirectoryOption::selection_changed () +{ + _set (poor_mans_glob(_file_chooser.get_filename ())); +} + +void +DirectoryOption::current_folder_set () +{ + _set (poor_mans_glob(_file_chooser.get_current_folder ())); +}