Update to latest LV2 atom extension.
[ardour.git] / libs / ardour / ardour / route_group.h
1 /*
2     Copyright (C) 2000 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_route_group_h__
21 #define __ardour_route_group_h__
22
23 #include <list>
24 #include <set>
25 #include <string>
26 #include <stdint.h>
27
28 #include "pbd/signals.h"
29 #include "pbd/stateful.h"
30 #include "pbd/signals.h"
31
32 #include "ardour/types.h"
33 #include "ardour/session_object.h"
34
35 namespace ARDOUR {
36
37 namespace Properties {
38         extern PBD::PropertyDescriptor<bool> relative;
39         extern PBD::PropertyDescriptor<bool> active;
40         extern PBD::PropertyDescriptor<bool> gain;
41         extern PBD::PropertyDescriptor<bool> mute;
42         extern PBD::PropertyDescriptor<bool> solo;
43         extern PBD::PropertyDescriptor<bool> recenable;
44         extern PBD::PropertyDescriptor<bool> select;
45         extern PBD::PropertyDescriptor<bool> edit;
46         extern PBD::PropertyDescriptor<bool> route_active;
47         extern PBD::PropertyDescriptor<bool> color;
48         extern PBD::PropertyDescriptor<bool> monitoring;
49         /* we use this, but its declared in region.cc */
50         extern PBD::PropertyDescriptor<bool> hidden;
51 };
52
53 class Route;
54 class Track;
55 class AudioTrack;
56 class Session;
57
58 class RouteGroup : public SessionObject
59 {
60   public:
61         static void make_property_quarks();
62
63         RouteGroup (Session& s, const std::string &n);
64         ~RouteGroup ();
65
66         bool is_active () const { return _active.val(); }
67         bool is_relative () const { return _relative.val(); }
68         bool is_hidden () const { return _hidden.val(); }
69         bool is_gain () const { return _gain.val(); }
70         bool is_mute () const { return _mute.val(); }
71         bool is_solo () const { return _solo.val(); }
72         bool is_recenable () const { return _recenable.val(); }
73         bool is_select () const { return _select.val(); }
74         bool is_edit () const { return _edit.val(); }
75         bool is_route_active () const { return _route_active.val(); }
76         bool is_color () const { return _color.val(); }
77         bool is_monitoring() const { return _monitoring.val(); }
78
79         bool empty() const {return routes->empty();}
80         size_t size() const { return routes->size();}
81
82         gain_t get_max_factor(gain_t factor);
83         gain_t get_min_factor(gain_t factor);
84
85         void set_active (bool yn, void *src);
86         void set_relative (bool yn, void *src);
87         void set_hidden (bool yn, void *src);
88
89         void set_gain (bool yn);
90         void set_mute (bool yn);
91         void set_solo (bool yn);
92         void set_recenable (bool yn);
93         void set_select (bool yn);
94         void set_edit (bool yn);
95         void set_route_active (bool yn);
96         void set_color (bool yn);
97         void set_monitoring (bool yn);
98
99         bool enabled_property (PBD::PropertyID);
100
101         int add (boost::shared_ptr<Route>);
102         int remove (boost::shared_ptr<Route>);
103
104         template<typename Function>
105         void foreach_route (Function f) {
106                 for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
107                         f (i->get());
108                 }
109         }
110
111         /* to use these, #include "ardour/route_group_specialized.h" */
112
113         template<class T> void apply (void (Track::*func)(T, void *), T val, void *src);
114
115         /* fills at_set with all members of the group that are AudioTracks */
116
117         void audio_track_group (std::set<boost::shared_ptr<AudioTrack> >& at_set);
118
119         void clear () {
120                 routes->clear ();
121                 changed();
122         }
123
124         void make_subgroup (bool, Placement);
125         void destroy_subgroup ();
126
127         boost::shared_ptr<RouteList> route_list() { return routes; }
128
129         /** Emitted when a route has been added to this group */
130         PBD::Signal2<void, RouteGroup *, boost::weak_ptr<ARDOUR::Route> > RouteAdded;
131         /** Emitted when a route has been removed from this group */
132         PBD::Signal2<void, RouteGroup *, boost::weak_ptr<ARDOUR::Route> > RouteRemoved;
133
134         XMLNode& get_state ();
135
136         int set_state (const XMLNode&, int version);
137
138 private:
139         boost::shared_ptr<RouteList> routes;
140         boost::shared_ptr<Route> subgroup_bus;
141
142         PBD::Property<bool> _relative;
143         PBD::Property<bool> _active;
144         PBD::Property<bool> _hidden;
145         PBD::Property<bool> _gain;
146         PBD::Property<bool> _mute;
147         PBD::Property<bool> _solo;
148         PBD::Property<bool> _recenable;
149         PBD::Property<bool> _select;
150         PBD::Property<bool> _edit;
151         PBD::Property<bool> _route_active;
152         PBD::Property<bool> _color;
153         PBD::Property<bool> _monitoring;
154
155         void remove_when_going_away (boost::weak_ptr<Route>);
156         int set_state_2X (const XMLNode&, int);
157 };
158
159 } /* namespace */
160
161 #endif /* __ardour_route_group_h__ */