put the issue of using a monitor section into ~/.config/ardour.rc, not the session...
[ardour2.git] / gtk2_ardour / volume_controller.cc
blob8c5e9bcb1b708440b23c37d055a19a641b87079e
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 "volume_controller.h"
25 using namespace Gtk;
27 VolumeController::VolumeController (Glib::RefPtr<Gdk::Pixbuf> p,
28 Gtk::Adjustment *adj,
29 bool with_numeric,
30 int subw, int subh)
32 : MotionFeedback (p, MotionFeedback::Rotary, "", adj, with_numeric, subw, subh)
33 , adjustment (adj)
36 adjustment = get_adjustment(); // in case null was passed in
37 adjustment->signal_value_changed().connect(mem_fun (*this,&VolumeController::adjustment_value_changed));
40 void
41 VolumeController::adjustment_value_changed ()