ccd3bc929fca5918f905165f29c573c81bf1e550
[ardour.git] / gtk2_ardour / io_selector.h
1 /*
2     Copyright (C) 2002-2007 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 __ardour_ui_io_selector_h__
21 #define __ardour_ui_io_selector_h__
22
23 #include "ardour_dialog.h"
24 #include "port_matrix.h"
25
26 namespace ARDOUR {
27         class PortInsert;
28 }
29
30 class IOSelector : public PortMatrix
31 {
32   public:
33         IOSelector (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool);
34
35         void set_state (ARDOUR::BundleChannel c[2], bool);
36         PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const;
37
38         void add_channel (boost::shared_ptr<ARDOUR::Bundle>);
39         bool can_remove_channels (int d) const {
40                 return d == _ours;
41         }
42         void remove_channel (ARDOUR::BundleChannel);
43         bool can_rename_channels (int d) const {
44                 return false;
45         }
46         
47         uint32_t n_io_ports () const;
48         uint32_t maximum_io_ports () const;
49         uint32_t minimum_io_ports () const;
50         boost::shared_ptr<ARDOUR::IO> const io () { return _io; }
51         void setup_ports (int);
52         bool list_is_global (int) const;
53
54         bool find_inputs_for_io_outputs () const {
55                 return _find_inputs_for_io_outputs;
56         }
57
58         int ours () const {
59                 return _ours;
60         }
61
62         int other () const {
63                 return _other;
64         }
65
66
67   private:
68         
69         int _other;
70         int _ours;
71         boost::shared_ptr<ARDOUR::IO> _io;
72         boost::shared_ptr<PortGroup> _port_group;
73         bool _find_inputs_for_io_outputs;
74 };
75
76 class IOSelectorWindow : public ArdourDialog
77 {
78   public:
79         IOSelectorWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool for_input, bool can_cancel = false);
80
81         IOSelector& selector() { return _selector; }
82
83   protected:
84         void on_map ();
85         
86   private:
87         IOSelector _selector;
88
89         /* overall operation buttons */
90
91         Gtk::Button add_button;
92         Gtk::Button disconnect_button;
93         Gtk::Button ok_button;
94         Gtk::Button cancel_button;
95         Gtk::Button rescan_button;
96
97         void cancel ();
98         void accept ();
99         void rescan ();
100         
101         void ports_changed ();
102         void io_name_changed (void *src);
103 };
104
105
106 class PortInsertUI : public Gtk::VBox
107 {
108   public: 
109         PortInsertUI (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>);
110         
111         void redisplay ();
112         void finished (IOSelector::Result);
113
114   private:
115         IOSelector input_selector;
116         IOSelector output_selector;
117 };
118
119 class PortInsertWindow : public ArdourDialog
120 {
121   public: 
122         PortInsertWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>, bool can_cancel = false);
123         
124   protected:
125         void on_map ();
126         
127   private:
128         PortInsertUI _portinsertui;
129         Gtk::VBox vbox;
130         
131         Gtk::Button ok_button;
132         Gtk::Button cancel_button;
133         Gtk::Button rescan_button;
134         Gtk::Frame button_frame;
135         
136         void cancel ();
137         void accept ();
138
139         void plugin_going_away ();
140         sigc::connection going_away_connection;
141 };
142
143
144 #endif