Fix deletion of VCA with slaved controls.
[ardour.git] / gtk2_ardour / plugin_setup_dialog.h
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #ifndef __gtkardour_plugin_setup_dialog_h__
20 #define __gtkardour_plugin_setup_dialog_h__
21
22 #include "ardour/plugin_insert.h"
23 #include "ardour/route.h"
24
25 #include "ardour_dropdown.h"
26 #include "ardour_dialog.h"
27
28 class PluginSetupDialog : public ArdourDialog
29 {
30 public:
31         PluginSetupDialog (boost::shared_ptr<ARDOUR::Route>, boost::shared_ptr<ARDOUR::PluginInsert>, ARDOUR::Route::PluginSetupOptions);
32
33         bool fan_out () const { return _fan_out.get_active () && _fan_out.get_sensitive (); }
34
35 private:
36         void setup_output_presets ();
37         void update_sensitivity (uint32_t);
38         bool io_match () const;
39
40         void select_output_preset (uint32_t n_audio);
41         void apply_mapping ();
42         void toggle_fan_out ();
43
44         std::string preset_label (uint32_t) const;
45
46         boost::shared_ptr<ARDOUR::Route> _route;
47         boost::shared_ptr<ARDOUR::PluginInsert> _pi;
48
49         ArdourDropdown _out_presets;
50         ArdourButton _keep_mapping;
51         ArdourButton _fan_out;
52         ARDOUR::ChanCount _cur_inputs;
53         ARDOUR::ChanCount _cur_outputs;
54 };
55
56 #endif