57c6e6db86c3238804248af0571385860d527f22
[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 class IOSelector : public PortMatrix {
27   public:
28         IOSelector (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool);
29
30         void set_state (int, std::string const &, bool, uint32_t);
31         bool get_state (int, std::string const &) const;
32         uint32_t n_rows () const;
33         uint32_t maximum_rows () const;
34         uint32_t minimum_rows () const;
35         std::string row_name (int) const;
36         void add_row ();
37         void remove_row (int);
38         std::string row_descriptor () const;
39         boost::shared_ptr<ARDOUR::IO> const io() { return _io; }
40
41   private:
42         boost::shared_ptr<ARDOUR::IO> _io;
43         
44         void ports_changed (ARDOUR::IOChange, void*);
45 };
46
47 class IOSelectorWindow : public ArdourDialog
48 {
49   public:
50         IOSelectorWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool for_input, bool can_cancel = false);
51         ~IOSelectorWindow ();
52
53         IOSelector& selector() { return _selector; }
54
55   protected:
56         void on_map ();
57         
58   private:
59         IOSelector _selector;
60
61         /* overall operation buttons */
62
63         Gtk::Button add_button;
64         Gtk::Button disconnect_button;
65         Gtk::Button ok_button;
66         Gtk::Button cancel_button;
67         Gtk::Button rescan_button;
68
69         Gtk::HBox  suggestion_box;
70         Gtk::Label suggestion;
71
72         void rescan ();
73         void cancel ();
74         void accept ();
75
76         void ports_changed (ARDOUR::IOChange change, void *src);
77         void io_name_changed (void *src);
78         bool enter_scroller (GdkEventCrossing*);
79         bool leave_scroller (GdkEventCrossing*);
80 };
81
82
83 class PortInsertUI : public Gtk::VBox
84 {
85   public: 
86         PortInsertUI (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>);
87         
88         void redisplay ();
89         void finished (IOSelector::Result);
90
91   private:
92         Gtk::HBox hbox;
93         IOSelector input_selector;
94         IOSelector output_selector;
95 };
96
97 class PortInsertWindow : public ArdourDialog
98 {
99   public: 
100         PortInsertWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>, bool can_cancel = false);
101         
102   protected:
103         void on_map ();
104         
105   private:
106         PortInsertUI _portinsertui;
107         Gtk::VBox vbox;
108         
109         Gtk::Button ok_button;
110         Gtk::Button cancel_button;
111         Gtk::Button rescan_button;
112         Gtk::Frame button_frame;
113         
114         void rescan ();
115         void cancel ();
116         void accept ();
117
118         void plugin_going_away ();
119         sigc::connection going_away_connection;
120 };
121
122
123 #endif