redesign VCA control over gain (and theoretically other scalar controls)
[ardour.git] / libs / ardour / ardour / mac_vst_plugin.h
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  * Copyright (C) 2004 Paul Davis
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __ardour_mac_vst_plugin_h__
21 #define __ardour_mac_vst_plugin_h__
22
23 #include "ardour/vst_plugin.h"
24
25 struct LIBARDOUR_API _VSTHandle;
26 typedef struct _VSTHandle VSTHandle;
27
28 namespace ARDOUR {
29
30 class AudioEngine;
31 class Session;
32
33 class LIBARDOUR_API MacVSTPlugin : public VSTPlugin
34 {
35 public:
36         MacVSTPlugin (AudioEngine &, Session &, VSTHandle *, int unique_id);
37         MacVSTPlugin (const MacVSTPlugin &);
38         ~MacVSTPlugin ();
39
40         std::string state_node_name () const { return "mac-vst"; }
41 };
42
43 class LIBARDOUR_API MacVSTPluginInfo : public PluginInfo
44 {
45 public:
46         MacVSTPluginInfo ();
47         ~MacVSTPluginInfo () {}
48
49         PluginPtr load (Session& session);
50         std::vector<Plugin::PresetRecord> get_presets (bool user_only) const;
51 };
52
53 } // namespace ARDOUR
54
55 #endif /* __ardour_mac_vst_plugin_h__ */