first pass at making the GUI for a VCA visible
[ardour.git] / libs / ardour / vca_manager.cc
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 #include "ardour/vca.h"
21 #include "ardour/vca_manager.h"
22
23 using namespace ARDOUR;
24 using namespace Glib::Threads;
25 using std::string;
26
27
28 VCAManager::VCAManager (Session& s)
29         : SessionHandleRef (s)
30 {
31 }
32
33 VCAManager::~VCAManager ()
34 {
35 }
36
37 VCAManager::VCAS
38 VCAManager::vcas () const
39 {
40         Mutex::Lock lm (lock);
41         return _vcas;
42 }
43
44 boost::shared_ptr<VCA>
45 VCAManager::create_vca (std::string const & name)
46 {
47         boost::shared_ptr<VCA> vca = boost::shared_ptr<VCA> (new VCA (_session, name));
48         {
49                 Mutex::Lock lm (lock);
50                 _vcas.push_back (vca);
51         }
52
53         VCAList vcal;
54         vcal.push_back (vca);
55
56         VCAAdded (vcal); /* EMIT SIGNAL */
57         return vca;
58
59 }
60
61
62 void
63 VCAManager::remove_vca (boost::shared_ptr<VCA> vca)
64 {
65         {
66                 Mutex::Lock lm (lock);
67                 _vcas.remove (vca);
68         }
69
70         VCAList vcal;
71         vcal.push_back (vca);
72
73         VCARemoved (vcal); /* EMIT SIGNAL */
74 }
75