Ardour  8.7-14-g57a6773833
solo_isolate_control.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Paul Davis <paul@linuxaudiosystems.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License 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  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef __ardour_solo_isolate_control_h__
20 #define __ardour_solo_isolate_control_h__
21 
22 #include <memory>
23 #include <string>
24 
27 
28 class XMLNode;
29 
30 namespace ARDOUR {
31 
32 class Session;
33 class Soloable;
34 class Muteable;
35 
37 {
38  public:
39  SoloIsolateControl (Session& session, std::string const & name, Soloable& soloable, Temporal::TimeDomainProvider const &);
40 
41  double get_value () const;
42 
43  /* Export additional API so that objects that only get access
44  * to a Controllable/AutomationControl can do more fine-grained
45  * operations with respect to solo isolate. Obviously, they would need
46  * to dynamic_cast<SoloControl> first.
47  *
48  * Solo Isolate state is not representable by a single scalar value,
49  * so set_value() and get_value() is not enough.
50  *
51  * This means that the Controllable is technically
52  * asymmetric. It is possible to call ::set_value (0.0) to
53  * disable (self)solo, and then call ::get_value() and get a
54  * return of 1.0 because the control is isolated by
55  * upstream/downstream or a master.
56  */
57 
58  void mod_solo_isolated_by_upstream (int32_t delta);
59 
60  /* API to check different aspects of solo isolate substate
61  */
62 
63  uint32_t solo_isolated_by_upstream () const {
64  return _solo_isolated_by_upstream;
65  }
66  bool self_solo_isolated () const {
67  return _solo_isolated;
68  }
69  bool solo_isolated() const { return self_solo_isolated() || solo_isolated_by_upstream(); }
70 
71  int set_state (XMLNode const&, int);
72  XMLNode& get_state () const;
73 
74  protected:
75  void master_changed (bool from_self, PBD::Controllable::GroupControlDisposition gcd, std::weak_ptr<AutomationControl>);
77 
78  private:
82 
83  void set_solo_isolated (bool yn, Controllable::GroupControlDisposition group_override);
84 
85 };
86 
87 } /* namespace */
88 
89 #endif /* __libardour_solo_isolate_control_h__ */
void mod_solo_isolated_by_upstream(int32_t delta)
void master_changed(bool from_self, PBD::Controllable::GroupControlDisposition gcd, std::weak_ptr< AutomationControl >)
SoloIsolateControl(Session &session, std::string const &name, Soloable &soloable, Temporal::TimeDomainProvider const &)
XMLNode & get_state() const
void actually_set_value(double, PBD::Controllable::GroupControlDisposition group_override)
uint32_t solo_isolated_by_upstream() const
int set_state(XMLNode const &, int)
void set_solo_isolated(bool yn, Controllable::GroupControlDisposition group_override)
Definition: xml++.h:114
GtkImageIconNameData name
Definition: gtkimage.h:6
#define LIBARDOUR_API
void session(lua_State *L)