11454f8531e0228ae208cfc9ab00a0e4a4d4d14d
[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 (Gtk::Window*, 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         std::string disassociation_verb () const {
40                 return _("Disconnect");
41         }
42
43         std::string channel_noun () const {
44                 return _("port");
45         }
46
47         uint32_t n_io_ports () const;
48         boost::shared_ptr<ARDOUR::IO> const io () { return _io; }
49         void setup_ports (int);
50         bool list_is_global (int) const;
51
52         bool find_inputs_for_io_outputs () const {
53                 return _find_inputs_for_io_outputs;
54         }
55
56         int ours () const {
57                 return _ours;
58         }
59
60         int other () const {
61                 return _other;
62         }
63
64   private:
65
66         int _other;
67         int _ours;
68         boost::shared_ptr<ARDOUR::IO> _io;
69         boost::shared_ptr<PortGroup> _port_group;
70         bool _find_inputs_for_io_outputs;
71 };
72
73 class IOSelectorWindow : public Gtk::Window
74 {
75   public:
76         IOSelectorWindow (ARDOUR::Session *, boost::shared_ptr<ARDOUR::IO>, bool can_cancel = false);
77
78         IOSelector& selector() { return _selector; }
79
80   protected:
81         void on_map ();
82         void on_show ();
83
84   private:
85         IOSelector _selector;
86
87         void io_name_changed (void *src);
88         bool wm_delete (GdkEventAny*);
89 };
90
91
92 class PortInsertUI : public Gtk::HBox
93 {
94   public:
95         PortInsertUI (Gtk::Window*, ARDOUR::Session *, boost::shared_ptr<ARDOUR::PortInsert>);
96
97         void redisplay ();
98         void finished (IOSelector::Result);
99
100   private:
101         boost::shared_ptr<ARDOUR::PortInsert> _pi;
102         
103         Gtk::ToggleButton latency_button;
104         IOSelector input_selector;
105         IOSelector output_selector;
106         Gtk::Label latency_display;
107         Gtk::Frame latency_frame;
108         Gtk::HBox  latency_hbox;
109         sigc::connection latency_timeout;
110
111         bool check_latency_measurement ();
112         void latency_button_toggled ();
113 };
114
115 class PortInsertWindow : public ArdourDialog
116 {
117   public:
118         PortInsertWindow (ARDOUR::Session *, boost::shared_ptr<ARDOUR::PortInsert>, bool can_cancel = false);
119
120   protected:
121         void on_map ();
122
123   private:
124         PortInsertUI _portinsertui;
125         Gtk::VBox vbox;
126
127         Gtk::Button ok_button;
128         Gtk::Button cancel_button;
129         Gtk::Frame button_frame;
130
131         void cancel ();
132         void accept ();
133
134         void plugin_going_away ();
135         PBD::ScopedConnection going_away_connection;
136
137         bool wm_delete (GdkEventAny*);
138 };
139
140
141 #endif