summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/processor_box.cc')
-rw-r--r--gtk2_ardour/processor_box.cc22
1 files changed, 3 insertions, 19 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index 016379493c..2cf051baf2 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -90,8 +90,6 @@ RefPtr<Action> ProcessorBox::cut_action;
RefPtr<Action> ProcessorBox::rename_action;
RefPtr<Action> ProcessorBox::edit_action;
RefPtr<Action> ProcessorBox::edit_generic_action;
-Glib::RefPtr<Gdk::Pixbuf> ProcessorEntry::_slider_pixbuf;
-Glib::RefPtr<Gdk::Pixbuf> ProcessorEntry::_slider_pixbuf_desensitised;
ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processor> p, Width w)
: _button (ArdourButton::led_default_elements)
@@ -122,12 +120,7 @@ ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processo
set<Evoral::Parameter> p = _processor->what_can_be_automated ();
for (set<Evoral::Parameter>::iterator i = p.begin(); i != p.end(); ++i) {
- Control* c = new Control (
- _slider_pixbuf,
- _slider_pixbuf_desensitised,
- _processor->automation_control (*i),
- _processor->describe_parameter (*i)
- );
+ Control* c = new Control (_processor->automation_control (*i), _processor->describe_parameter (*i));
_controls.push_back (c);
@@ -304,15 +297,6 @@ ProcessorEntry::name (Width w) const
}
void
-ProcessorEntry::setup_slider_pix ()
-{
- _slider_pixbuf = ::get_icon ("fader_belt_h_thin");
- assert (_slider_pixbuf);
- _slider_pixbuf_desensitised = ::get_icon ("fader_belt_h_thin_desensitised");
- assert (_slider_pixbuf_desensitised);
-}
-
-void
ProcessorEntry::set_pixel_width (int p)
{
for (list<Control*>::iterator i = _controls.begin(); i != _controls.end(); ++i) {
@@ -407,10 +391,10 @@ ProcessorEntry::toggle_control_visibility (Control* c)
_parent->update_gui_object_state (this);
}
-ProcessorEntry::Control::Control (Glib::RefPtr<Gdk::Pixbuf> s, Glib::RefPtr<Gdk::Pixbuf> sd, boost::shared_ptr<AutomationControl> c, string const & n)
+ProcessorEntry::Control::Control (boost::shared_ptr<AutomationControl> c, string const & n)
: _control (c)
, _adjustment (gain_to_slider_position_with_max (1.0, Config->get_max_gain()), 0, 1, 0.01, 0.1)
- , _slider (s, sd, &_adjustment, 0, false)
+ , _slider (&_adjustment, 0, false)
, _slider_persistant_tooltip (&_slider)
, _button (ArdourButton::Element (ArdourButton::Text | ArdourButton::Indicator))
, _ignore_ui_adjustment (false)