mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
tweak appearance of a FaderOption in the option editor(s)
git-svn-id: svn://localhost/ardour2/branches/3.0@11371 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
19ebdba1cb
commit
66cd3d365c
2 changed files with 6 additions and 2 deletions
|
|
@ -184,12 +184,15 @@ FaderOption::FaderOption (string const & i, string const & n, sigc::slot<gain_t>
|
||||||
_label.set_text (n + ":");
|
_label.set_text (n + ":");
|
||||||
_label.set_name (X_("OptionsLabel"));
|
_label.set_name (X_("OptionsLabel"));
|
||||||
|
|
||||||
|
_fader_centering_box.pack_start (*_db_slider, true, false);
|
||||||
|
|
||||||
_box.set_spacing (4);
|
_box.set_spacing (4);
|
||||||
_box.pack_start (*_db_slider, false, false);
|
_box.set_homogeneous (false);
|
||||||
|
_box.pack_start (_fader_centering_box, false, false);
|
||||||
_box.pack_start (_db_display, false, false);
|
_box.pack_start (_db_display, false, false);
|
||||||
_box.show_all ();
|
_box.show_all ();
|
||||||
|
|
||||||
set_size_request_to_display_given_text (_db_display, "-99.0", 12, 12);
|
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));
|
_db_adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &FaderOption::db_changed));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -365,6 +365,7 @@ private:
|
||||||
Gtk::Entry _db_display;
|
Gtk::Entry _db_display;
|
||||||
Gtk::Label _label;
|
Gtk::Label _label;
|
||||||
Gtk::HBox _box;
|
Gtk::HBox _box;
|
||||||
|
Gtk::VBox _fader_centering_box;
|
||||||
sigc::slot<ARDOUR::gain_t> _get;
|
sigc::slot<ARDOUR::gain_t> _get;
|
||||||
sigc::slot<bool, ARDOUR::gain_t> _set;
|
sigc::slot<bool, ARDOUR::gain_t> _set;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue