Port matrix tweaks: scroll wheel support; use the correct verb for disassociation...
[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 #include "i18n.h"
26
27 namespace ARDOUR {
28         class PortInsert;
29 }
30
31 class IOSelector : public PortMatrix
32 {
33   public:
34         IOSelector (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>);
35
36         void set_state (ARDOUR::BundleChannel c[2], bool);
37         PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const;
38
39         void add_channel (boost::shared_ptr<ARDOUR::Bundle>);
40         bool can_remove_channels (int d) const {
41                 return d == _ours;
42         }
43         void remove_channel (ARDOUR::BundleChannel);
44         bool can_rename_channels (int d) const {
45                 return false;
46         }
47
48         std::string disassociation_verb () const {
49                 return _("Disconnect");
50         }
51         
52         uint32_t n_io_ports () const;
53         boost::shared_ptr<ARDOUR::IO> const io () { return _io; }
54         void setup_ports (int);
55         bool list_is_global (int) const;
56
57         bool find_inputs_for_io_outputs () const {
58                 return _find_inputs_for_io_outputs;
59         }
60
61         int ours () const {
62                 return _ours;
63         }
64
65         int other () const {
66                 return _other;
67         }
68
69   private:
70         
71         int _other;
72         int _ours;
73         boost::shared_ptr<ARDOUR::IO> _io;
74         boost::shared_ptr<PortGroup> _port_group;
75         bool _find_inputs_for_io_outputs;
76 };
77
78 class IOSelectorWindow : public Gtk::Window
79 {
80   public:
81         IOSelectorWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool can_cancel = false);
82
83         IOSelector& selector() { return _selector; }
84
85   protected:
86         void on_map ();
87         void on_realize ();
88         
89   private:
90         IOSelector _selector;
91         
92         void io_name_changed (void *src);
93 };
94
95
96 class PortInsertUI : public Gtk::VBox
97 {
98   public: 
99         PortInsertUI (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>);
100         
101         void redisplay ();
102         void finished (IOSelector::Result);
103
104   private:
105         IOSelector input_selector;
106         IOSelector output_selector;
107 };
108
109 class PortInsertWindow : public ArdourDialog
110 {
111   public: 
112         PortInsertWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>, bool can_cancel = false);
113         
114   protected:
115         void on_map ();
116         
117   private:
118         PortInsertUI _portinsertui;
119         Gtk::VBox vbox;
120         
121         Gtk::Button ok_button;
122         Gtk::Button cancel_button;
123         Gtk::Frame button_frame;
124         
125         void cancel ();
126         void accept ();
127
128         void plugin_going_away ();
129         sigc::connection going_away_connection;
130 };
131
132
133 #endif