X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Foption_editor.cc;h=a8c35f250fb018808874ba7446086566b77baed0;hb=5e7c7e52bd482dbdf8629b284781543975672766;hp=ef09b2289877708a98d39dabf4e976f5abe25a59;hpb=538a569d0b5ec9ba6aa4dc92a2880334f2fcae50;p=ardour.git diff --git a/gtk2_ardour/option_editor.cc b/gtk2_ardour/option_editor.cc index ef09b22898..a8c35f250f 100644 --- a/gtk2_ardour/option_editor.cc +++ b/gtk2_ardour/option_editor.cc @@ -22,11 +22,14 @@ #include #include "gtkmm2ext/utils.h" -#include "ardour/configuration.h" -#include "ardour/rc_configuration.h" -#include "ardour/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" @@ -61,11 +64,11 @@ OptionEditorComponent::add_widgets_to_page (OptionEditorPage* p, Gtk::Widget* wa 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); } @@ -137,7 +140,9 @@ BoolOption::set_state_from_config () void BoolOption::toggled () { - _set (_button->get_active ()); + if (!_set (_button->get_active ())) { + _button->set_active (_get ()); + } } RouteDisplayBoolOption::RouteDisplayBoolOption (string const & i, string const & n, sigc::slot g, sigc::slot s) @@ -216,7 +221,7 @@ EntryOption::focus_out (GdkEventFocus*) * @param s Slot to set the variable's value. */ BoolComboOption::BoolComboOption ( - string const & i, string const & n, string const & t, string const & f, + string const & i, string const & n, string const & t, string const & f, sigc::slot g, sigc::slot s ) : Option (i, n) @@ -231,7 +236,7 @@ BoolComboOption::BoolComboOption ( _combo->append_text (f); /* and option 1 is the true */ _combo->append_text (t); - + _combo->signal_changed().connect (sigc::mem_fun (*this, &BoolComboOption::changed)); } @@ -258,16 +263,16 @@ 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, 115, 18)); + _db_slider = manage (new HSliderController (&_db_adjustment, boost::shared_ptr(), 115, 18)); _label.set_text (n + ":"); _label.set_alignment (0, 0.5); @@ -377,7 +382,7 @@ 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) +OptionEditor::OptionEditor (PBD::Configuration* c, std::string const & t) : ArdourWindow (t), _config (c) { using namespace Notebook_Helpers; @@ -445,6 +450,21 @@ OptionEditor::add_option (std::string const & pn, OptionEditorComponent* o) 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) { @@ -466,15 +486,14 @@ DirectoryOption::DirectoryOption (string const & i, string const & n, sigc::slot , _set (s) { _file_chooser.set_action (Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER); - _file_chooser.signal_file_set().connect (sigc::mem_fun (*this, &DirectoryOption::file_set)); - _file_chooser.signal_current_folder_changed().connect (sigc::mem_fun (*this, &DirectoryOption::current_folder_set)); + _file_chooser.signal_selection_changed().connect (sigc::mem_fun (*this, &DirectoryOption::selection_changed)); } void DirectoryOption::set_state_from_config () { - _file_chooser.set_current_folder (_get ()); + _file_chooser.set_current_folder (poor_mans_glob(_get ())); } void @@ -487,13 +506,7 @@ DirectoryOption::add_to_page (OptionEditorPage* p) } void -DirectoryOption::file_set () -{ - _set (_file_chooser.get_filename ()); -} - -void -DirectoryOption::current_folder_set () +DirectoryOption::selection_changed () { - _set (_file_chooser.get_current_folder ()); + _set (poor_mans_glob(_file_chooser.get_filename ())); }