remove long-lived bug that tried to make a non-existent action insensitive
[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 "widgets/ardour_button.h"
26 #include "widgets/ardour_dropdown.h"
27
28 #include "ardour_dialog.h"
29
30 class PluginSetupDialog : public ArdourDialog
31 {
32 public:
33         PluginSetupDialog (boost::shared_ptr<ARDOUR::Route>, boost::shared_ptr<ARDOUR::PluginInsert>, ARDOUR::Route::PluginSetupOptions);
34
35         bool fan_out () const { return _fan_out.get_active () && _fan_out.get_sensitive (); }
36
37 private:
38         void setup_output_presets ();
39         void update_sensitivity (uint32_t);
40         bool io_match () const;
41
42         void select_output_preset (uint32_t n_audio);
43         void apply_mapping ();
44         void toggle_fan_out ();
45
46         std::string preset_label (uint32_t) const;
47
48         boost::shared_ptr<ARDOUR::Route> _route;
49         boost::shared_ptr<ARDOUR::PluginInsert> _pi;
50
51         ArdourWidgets::ArdourDropdown _out_presets;
52         ArdourWidgets::ArdourButton _keep_mapping;
53         ArdourWidgets::ArdourButton _fan_out;
54         ARDOUR::ChanCount _cur_inputs;
55         ARDOUR::ChanCount _cur_outputs;
56 };
57
58 #endif