Removed unused midicontrollable.cc
[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     $Id$
19 */
20
21 #ifndef __ardour_route_group_h__
22 #define __ardour_route_group_h__
23
24 #include <list>
25 #include <set>
26 #include <string>
27 #include <stdint.h>
28 #include <sigc++/signal.h>
29 #include <pbd/stateful.h> 
30 #include <ardour/types.h>
31
32 using std::string;
33 using std::list;
34
35 namespace ARDOUR {
36
37 class Route;
38 class AudioTrack;
39 class Session;
40
41 class RouteGroup : public Stateful, public sigc::trackable {
42   public:
43     enum Flag {
44             Relative = 0x1,
45             Active = 0x2,
46             Hidden = 0x4
47     };
48
49     RouteGroup (Session& s, const string &n, Flag f = Flag(0));
50
51     const string& name() { return _name; }
52     void set_name (std::string str);
53
54     bool is_active () const { return _flags & Active; }
55     bool is_relative () const { return _flags & Relative; }
56     bool is_hidden () const { return _flags & Hidden; }
57     bool empty() const {return routes.empty();}
58
59     gain_t get_max_factor(gain_t factor);
60     gain_t get_min_factor(gain_t factor);
61     
62     int size() { return routes.size();}
63     ARDOUR::Route * first () const { return *routes.begin();}
64
65     void set_active (bool yn, void *src);
66     void set_relative (bool yn, void *src);
67     void set_hidden (bool yn, void *src);
68
69     int add (Route *);
70
71     int remove (Route *);
72
73     void apply (void (Route::*func)(void *), void *src) {
74             for (list<Route *>::iterator i = routes.begin(); i != routes.end(); i++) {
75                     ((*i)->*func)(src);
76             }
77     }
78
79     template<class T> void apply (void (Route::*func)(T, void *), T val, void *src) {
80             for (list<Route *>::iterator i = routes.begin(); i != routes.end(); i++) {
81                     ((*i)->*func)(val, src);
82             }
83     }
84
85     template<class T> void foreach_route (T *obj, void (T::*func)(Route&)) {
86             for (list<Route *>::iterator i = routes.begin(); i != routes.end(); i++) {
87                     (obj->*func)(**i);
88             }
89     }
90
91     /* to use these, #include <ardour/route_group_specialized.h> */
92
93     template<class T> void apply (void (AudioTrack::*func)(T, void *), T val, void *src);
94
95     /* fills at_set with all members of the group that are AudioTracks */
96
97     void audio_track_group (std::set<AudioTrack*>& at_set);
98
99     void clear () {
100             routes.clear ();
101             changed();
102     }
103
104     const list<Route*>& route_list() { return routes; }
105     
106     sigc::signal<void> changed;
107     sigc::signal<void,void*> FlagsChanged;
108
109     XMLNode& get_state (void);
110
111     int set_state (const XMLNode&);
112
113  private:
114     Session& _session;
115     list<Route *> routes;
116     string _name;
117     uint32_t _flags;
118
119     void remove_when_going_away (Route*);
120 };
121
122 } /* namespace */
123
124 #endif /* __ardour_route_group_h__ */