Zoom session when the mouse pointer is moved up and down during a playhead drag.
[ardour2.git] / gtk2_ardour / volume_controller.cc
blobdfb517ebddbae668e8df2986de72554787e61590
1 /*
2 Copyright (C) 1998-2007 Paul Davis
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2 of the License, or
6 (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 $Id: volume_controller.cc,v 1.4 2000/05/03 15:54:21 pbd Exp $
20 #include <string.h>
21 #include <limits.h>
23 #include "pbd/controllable.h"
25 #include "gtkmm2ext/gui_thread.h"
26 #include "ardour/utils.h"
28 #include "volume_controller.h"
30 using namespace Gtk;
32 VolumeController::VolumeController (Glib::RefPtr<Gdk::Pixbuf> p,
33 Gtk::Adjustment *adj,
34 bool with_numeric,
35 int subw, int subh)
37 : MotionFeedback (p, MotionFeedback::Rotary, "", adj, with_numeric, subw, subh)
39 get_adjustment()->signal_value_changed().connect (mem_fun (*this,&VolumeController::adjustment_value_changed));
42 void
43 VolumeController::set_controllable (boost::shared_ptr<PBD::Controllable> c)
45 MotionFeedback::set_controllable (c);
47 controllable_connection.disconnect ();
49 if (c) {
50 c->Changed.connect (controllable_connection, MISSING_INVALIDATOR, boost::bind (&VolumeController::controllable_value_changed, this), gui_context());
53 controllable_value_changed ();
56 void
57 VolumeController::controllable_value_changed ()
59 boost::shared_ptr<PBD::Controllable> c = controllable();
60 if (c) {
61 get_adjustment()->set_value (gain_to_slider_position (c->get_value ()));
65 void
66 VolumeController::adjustment_value_changed ()
68 boost::shared_ptr<PBD::Controllable> c = controllable();
69 if (c) {
70 c->set_value (slider_position_to_gain (get_adjustment()->get_value()));