first compiling, mostly working version of group controls changes
[ardour.git] / libs / ardour / ardour / gain_control.h
1 /*
2     Copyright (C) 2006-2016 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_gain_control_h__
20 #define __ardour_gain_control_h__
21
22 #include <string>
23 #include <boost/shared_ptr.hpp>
24
25 #include "pbd/controllable.h"
26
27 #include "evoral/Parameter.hpp"
28
29 #include "ardour/automation_control.h"
30 #include "ardour/libardour_visibility.h"
31
32 namespace ARDOUR {
33
34 class Session;
35
36 class LIBARDOUR_API GainControl : public AutomationControl {
37   public:
38         GainControl (Session& session, const Evoral::Parameter &param,
39                      boost::shared_ptr<AutomationList> al = boost::shared_ptr<AutomationList>());
40
41         void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
42         void set_value_unchecked (double);
43
44         double internal_to_interface (double) const;
45         double interface_to_internal (double) const;
46         double internal_to_user (double) const;
47         double user_to_internal (double) const;
48         std::string get_user_string () const;
49
50         double lower_db;
51         double range_db;
52   private:
53         void _set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
54 };
55
56 } /* namespace */
57
58 #endif /* __ardour_gain_control_h__ */