ardour
mute_master.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2009 Paul Davis
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
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 
18 */
19 
20 #ifndef __ardour_mute_master_h__
21 #define __ardour_mute_master_h__
22 
23 #include "evoral/Parameter.hpp"
24 #include "pbd/signals.h"
25 #include "pbd/stateful.h"
26 #include <string>
27 
28 #include "ardour/session_handle.h"
29 
30 namespace ARDOUR {
31 
32 class Session;
33 
35 {
36  public:
38  enum MutePoint {
39  PreFader = 0x1,
40  PostFader = 0x2,
41  Listen = 0x4,
42  Main = 0x8
43  };
44 
45  static const MutePoint AllPoints;
46 
47  MuteMaster (Session& s, const std::string& name);
49 
50  bool muted_by_self () const { return _muted_by_self && (_mute_point != MutePoint (0)); }
51  bool muted_by_self_at (MutePoint mp) const { return _muted_by_self && (_mute_point & mp); }
52  bool muted_by_others_at (MutePoint mp) const;
53 
54  gain_t mute_gain_at (MutePoint) const;
55 
56  void set_muted_by_self (bool yn) { _muted_by_self = yn; }
57 
58  void mute_at (MutePoint);
59  void unmute_at (MutePoint);
60 
61  void set_mute_points (const std::string& mute_point);
62  void set_mute_points (MutePoint);
63  MutePoint mute_points() const { return _mute_point; }
64 
65  void set_soloed (bool);
66  void set_solo_ignore (bool yn) { _solo_ignore = yn; }
67 
68  PBD::Signal0<void> MutePointChanged;
69 
70  XMLNode& get_state();
71  int set_state(const XMLNode&, int version);
72 
73  private:
75  volatile bool _muted_by_self;
76  volatile bool _soloed;
77  volatile bool _solo_ignore;
78 };
79 
80 } // namespace ARDOUR
81 
82 #endif /*__ardour_mute_master_h__ */
void set_muted_by_self(bool yn)
Definition: mute_master.h:56
PBD::Signal0< void > MutePointChanged
Definition: mute_master.h:68
static const MutePoint AllPoints
Definition: mute_master.h:45
volatile bool _solo_ignore
Definition: mute_master.h:77
volatile bool _soloed
Definition: mute_master.h:76
float gain_t
Definition: types.h:58
bool muted_by_self() const
Definition: mute_master.h:50
void set_solo_ignore(bool yn)
Definition: mute_master.h:66
Definition: amp.h:29
bool muted_by_self_at(MutePoint mp) const
Definition: mute_master.h:51
MutePoint mute_points() const
Definition: mute_master.h:63
#define LIBARDOUR_API
const char * name
Definition: xml++.h:95
volatile bool _muted_by_self
Definition: mute_master.h:75
volatile MutePoint _mute_point
Definition: mute_master.h:74