Only show user-presets in favorite sidebar
[ardour.git] / libs / ardour / ardour / vca_manager.h
1 /*
2   Copyright (C) 2016 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 __libardour_vca_manager_h__
21 #define __libardour_vca_manager_h__
22
23 #include <string>
24 #include <list>
25
26 #include <boost/shared_ptr.hpp>
27
28 #include <glibmm/threads.h>
29
30 #include "pbd/signals.h"
31 #include "pbd/statefuldestructible.h"
32
33 #include "ardour/session_handle.h"
34 #include "ardour/types.h"
35 #include "ardour/libardour_visibility.h"
36
37 namespace ARDOUR {
38
39 class VCA;
40
41 class LIBARDOUR_API VCAManager : public SessionHandleRef, public PBD::StatefulDestructible
42 {
43 public:
44         VCAManager (ARDOUR::Session&);
45         ~VCAManager ();
46
47         VCAList create_vca (uint32_t how_many, std::string const & name = std::string());
48         void remove_vca (boost::shared_ptr<VCA>);
49
50         boost::shared_ptr<VCA> vca_by_number(int32_t) const;
51         boost::shared_ptr<VCA> vca_by_name (std::string const&) const;
52
53         VCAList vcas() const;
54         VCAList::size_type n_vcas() const { return _vcas.size(); }
55
56         PBD::Signal1<void,VCAList&> VCAAdded;
57
58         XMLNode& get_state();
59         int set_state (XMLNode const&, int version);
60
61         bool vcas_loaded() const { return _vcas_loaded; }
62         void clear_all_solo_state ();
63
64         static std::string xml_node_name;
65
66 private:
67         mutable Glib::Threads::Mutex lock;
68         VCAList _vcas;
69         bool _vcas_loaded;
70
71         void clear ();
72 };
73
74 } // namespace
75
76 #endif /* __libardour_vca_manager_h__ */