33aa44aaa2614dd74fcb22dfe45edb3823a27759
[ardour.git] / gtk2_ardour / route_redirect_selection.h
1 /*
2     Copyright (C) 2004 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_gtk_route_redirect_selection_h__
22 #define __ardour_gtk_route_redirect_selection_h__
23
24 #include <vector>
25 #include <sigc++/signal_system.h>
26
27 #include "redirect_selection.h"
28 #include "route_selection.h"
29
30 class RouteRedirectSelection : public SigC::Object 
31 {
32   public:
33         RedirectSelection    redirects;
34         RouteSelection       routes;
35
36         RouteRedirectSelection() {}
37
38         RouteRedirectSelection& operator= (const RouteRedirectSelection& other);
39
40         SigC::Signal0<void> RedirectsChanged;
41         SigC::Signal0<void> RoutesChanged;
42
43         void clear ();
44         bool empty();
45
46         void set (ARDOUR::Redirect*);
47         void set (const std::vector<ARDOUR::Redirect*>&);
48         void add (ARDOUR::Redirect*);
49         void add (const std::vector<ARDOUR::Redirect*>&);
50         void remove (ARDOUR::Redirect*);
51
52         void set (ARDOUR::Route*);
53         void add (ARDOUR::Route*);
54         void remove (ARDOUR::Route*);
55
56         void clear_redirects ();
57         void clear_routes ();
58
59         bool selected (ARDOUR::Route*);
60 };
61
62 bool operator==(const RouteRedirectSelection& a, const RouteRedirectSelection& b);
63
64 #endif /* __ardour_gtk_route_redirect_selection_h__ */