X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Foption_editor.cc;h=207a262dd9d994da8f7b6653120f1cb16d03d549;hb=8bdf5cf1d0caa0c6e96c43d19dae756094eb4e2b;hp=bc3691dff41497df0c227c5176e109b78d9d0147;hpb=29e8fe16987548d44b6376a38c81da7737efde28;p=ardour.git diff --git a/gtk2_ardour/option_editor.cc b/gtk2_ardour/option_editor.cc index bc3691dff4..207a262dd9 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 @@ -19,14 +19,18 @@ #include #include +#include "gtkmm2ext/utils.h" #include "ardour/configuration.h" +#include "ardour/utils.h" +#include "ardour/dB.h" #include "option_editor.h" #include "gui_thread.h" +#include "utils.h" #include "i18n.h" using namespace std; -using namespace sigc; using namespace Gtk; +using namespace Gtkmm2ext; using namespace ARDOUR; void @@ -42,7 +46,7 @@ OptionEditorComponent::add_widgets_to_page (OptionEditorPage* p, Gtk::Widget* wa { 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); + p->table.attach (*wa, 1, 2, n, n + 1, FILL); p->table.attach (*wb, 2, 3, n, n + 1, FILL | EXPAND); } @@ -71,14 +75,14 @@ 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->set_active (_get ()); - _button->signal_toggled().connect (mem_fun (*this, &BoolOption::toggled)); + _button->signal_toggled().connect (sigc::mem_fun (*this, &BoolOption::toggled)); } void @@ -99,7 +103,7 @@ BoolOption::toggled () _set (_button->get_active ()); } -EntryOption::EntryOption (string const & i, string const & n, slot g, slot s) +EntryOption::EntryOption (string const & i, string const & n, sigc::slot g, sigc::slot s) : Option (i, n), _get (g), _set (s) @@ -107,7 +111,7 @@ EntryOption::EntryOption (string const & i, string const & n, slot g, sl _label = manage (new Label (n + ":")); _label->set_alignment (1, 0.5); _entry = manage (new Entry); - _entry->signal_activate().connect (mem_fun (*this, &EntryOption::activated)); + _entry->signal_activate().connect (sigc::mem_fun (*this, &EntryOption::activated)); } void @@ -128,6 +132,65 @@ EntryOption::activated () _set (_entry->get_text ()); } +FaderOption::FaderOption (string const & i, string const & n, sigc::slot g, sigc::slot s) + : Option (i, n) + // 0.781787 is the value needed for gain to be set to 0. + , _db_adjustment (0.781787, 0, 1, 0.01, 0.1) + , _get (g) + , _set (s) +{ + _pix = ::get_icon (X_("fader_belt_h")); + if (_pix == 0) { + throw failed_constructor (); + } + + _db_slider = manage (new HSliderController (_pix, + &_db_adjustment, + 115, + false)); + + _label.set_text (n + ":"); + _label.set_name (X_("OptionsLabel")); + + _box.set_spacing (4); + _box.pack_start (*_db_slider, false, false); + _box.pack_start (_db_display, false, false); + _box.show_all (); + + set_size_request_to_display_given_text (_db_display, "-99.0", 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 (val)); + + 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 (_db_adjustment.get_value ())); +} + +void +FaderOption::add_to_page (OptionEditorPage* p) +{ + add_widgets_to_page (p, &_label, &_box); +} + OptionEditorPage::OptionEditorPage (Gtk::Notebook& n, std::string const & t) : table (1, 3) { @@ -165,7 +228,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), ui_bind (&OptionEditor::parameter_changed, this, _1), gui_context()); } OptionEditor::~OptionEditor () @@ -184,7 +247,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) {