5332fd4fa714a2cf4b05cdb5c0c202fca755c24e
[ardour.git] / libs / ardour / ardour / mute_control.h
1 /*
2     Copyright (C) 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_mute_control_h__
20 #define __ardour_mute_control_h__
21
22 #include <string>
23
24 #include <boost/shared_ptr.hpp>
25
26 #include "ardour/slavable_automation_control.h"
27
28 #include "ardour/libardour_visibility.h"
29
30 namespace ARDOUR {
31
32 class Session;
33 class Muteable;
34
35 class LIBARDOUR_API MuteControl : public SlavableAutomationControl
36 {
37   public:
38         MuteControl (Session& session, std::string const& name, Muteable&);
39
40         double get_value () const;
41
42         /* Export additional API so that objects that only get access
43          * to a Controllable/AutomationControl can do more fine-grained
44          * operations with respect to mute. Obviously, they would need
45          * to dynamic_cast<MuteControl> first.
46          *
47          * Mute state is not representable by a single scalar value,
48          * so set_value() and get_value() is not enough.
49          *
50          * This means that the Controllable is technically
51          * asymmetric. It is possible to call ::set_value (0.0) to
52          * turn off mute, and then call ::get_value() and get a
53          * return of 1.0 because the control is affected by
54          * upstream/downstream or a master.
55          */
56
57         bool muted () const;
58         bool muted_by_self () const;
59         bool muted_by_masters () const;
60         bool muted_by_self_or_masters () const {
61                 return muted_by_self() || muted_by_masters ();
62         }
63
64         bool muted_by_others_soloing () const;
65
66         void set_mute_points (MuteMaster::MutePoint);
67         MuteMaster::MutePoint mute_points () const;
68
69   protected:
70         void master_changed (bool, PBD::Controllable::GroupControlDisposition, boost::shared_ptr<AutomationControl>);
71         void actually_set_value (double, PBD::Controllable::GroupControlDisposition group_override);
72
73         void pre_remove_master (boost::shared_ptr<AutomationControl>);
74         void post_add_master (boost::shared_ptr<AutomationControl>);
75
76   private:
77         Muteable& _muteable;
78 };
79
80 } /* namespace */
81
82 #endif /* __libardour_mute_control_h__ */