fix import/embed with "sequence files" option
[ardour2.git] / gtk2_ardour / route_params_ui.h
blobc0b70cbdb1669c25a5c74b86cd47e9810be009c3
1 /*
2 Copyright (C) 2000 Paul Davis
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.
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.
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.
20 #ifndef __ardour_route_params_ui_h__
21 #define __ardour_route_params_ui_h__
23 #include <list>
25 #include <gtkmm/box.h>
26 #include <gtkmm/button.h>
27 #include <gtkmm/eventbox.h>
28 #include <gtkmm/frame.h>
29 #include <gtkmm/label.h>
30 #include <gtkmm/paned.h>
31 #include <gtkmm/scrolledwindow.h>
32 #include <gtkmm/togglebutton.h>
33 #include <gtkmm/treeview.h>
35 #include <pbd/stateful.h>
37 #include <ardour/ardour.h>
38 #include <ardour/io.h>
39 #include <ardour/redirect.h>
41 #include "io_selector.h"
42 #include "ardour_dialog.h"
43 #include "redirect_box.h"
44 #include "route_redirect_selection.h"
46 namespace ARDOUR {
47 class Route;
48 class Send;
49 class Insert;
50 class Session;
51 class PortInsert;
52 class Connection;
53 class Plugin;
56 class PluginSelector;
58 class RouteParams_UI : public ArdourDialog
60 public:
61 RouteParams_UI ();
62 ~RouteParams_UI();
64 void set_session (ARDOUR::Session *);
65 void session_gone ();
66 PluginSelector& plugin_selector() { return *_plugin_selector; }
68 private:
69 Gtk::HBox global_hpacker;
70 Gtk::VBox global_vpacker;
71 Gtk::ScrolledWindow scroller;
72 Gtk::EventBox scroller_base;
73 Gtk::HBox scroller_hpacker;
74 Gtk::VBox mixer_scroller_vpacker;
76 Gtk::VBox list_vpacker;
77 Gtk::Label route_list_button_label;
78 Gtk::Button route_list_button;
79 Gtk::ScrolledWindow route_select_scroller;
81 Gtk::Notebook notebook;
82 Gtk::Frame input_frame;
83 Gtk::Frame output_frame;
84 Gtk::HPaned pre_redir_hpane;
85 Gtk::HPaned post_redir_hpane;
87 Gtk::Frame route_select_frame;
89 Gtk::HBox route_hpacker;
90 Gtk::VBox route_vpacker;
92 RedirectBox * pre_redirect_box;
93 RedirectBox * post_redirect_box;
95 Gtk::HPaned list_hpane;
97 Gtk::HPaned right_hpane;
99 Gtk::Frame route_choice_frame;
101 Gtk::Frame route_param_frame;
103 Gtk::VBox choice_vpacker;
106 Gtk::ToggleButton input_button;
107 Gtk::ToggleButton output_button;
108 Gtk::Label track_input_label;
110 Gtk::Label title_label;
112 Gtk::Container * _active_pre_view;
113 Gtk::Container * _active_post_view;
114 IOSelector * _input_iosel;
115 IOSelector * _output_iosel;
117 PluginSelector *_plugin_selector;
118 RouteRedirectSelection _rr_selection;
120 boost::shared_ptr<ARDOUR::Route> _route;
121 sigc::connection _route_conn;
122 sigc::connection _route_ds_conn;
124 boost::shared_ptr<ARDOUR::Redirect> _pre_redirect;
125 sigc::connection _pre_plugin_conn;
127 boost::shared_ptr<ARDOUR::Redirect> _post_redirect;
128 sigc::connection _post_plugin_conn;
131 enum ConfigView {
132 NO_CONFIG_VIEW = 0,
133 INPUT_CONFIG_VIEW,
134 OUTPUT_CONFIG_VIEW,
135 PLUGIN_CONFIG_VIEW,
136 PORTINSERT_CONFIG_VIEW,
137 SEND_CONFIG_VIEW
140 ConfigView _current_view;
143 /* treeview */
144 struct RouteDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
145 RouteDisplayModelColumns() {
146 add(text);
147 add(route);
149 Gtk::TreeModelColumn<Glib::ustring> text;
150 Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> > route;
153 RouteDisplayModelColumns route_display_columns ;
154 Gtk::TreeView route_display;
155 Glib::RefPtr<Gtk::ListStore> route_display_model;
158 void add_routes (ARDOUR::Session::RouteList&);
160 void route_name_changed (void *src, boost::shared_ptr<ARDOUR::Route> route);
161 void route_removed (boost::shared_ptr<ARDOUR::Route> route);
164 void route_selected();
165 //void route_unselected (gint row, gint col, GdkEvent *ev);
167 void setup_io_frames();
168 void cleanup_io_frames();
169 void cleanup_pre_view(bool stopupdate = true);
170 void cleanup_post_view(bool stopupdate = true);
174 void redirects_changed (void *src);
176 void setup_redirect_boxes();
177 void cleanup_redirect_boxes();
179 void redirect_selected (boost::shared_ptr<ARDOUR::Redirect>, ARDOUR::Placement);
181 void plugin_going_away (ARDOUR::Placement);
182 void redirect_going_away (boost::shared_ptr<ARDOUR::Redirect>);
184 gint edit_input_configuration (GdkEventButton *ev);
185 gint edit_output_configuration (GdkEventButton *ev);
187 void update_routeinfo (ARDOUR::Route * route);
189 Gtk::Menu *track_menu;
190 void show_track_menu();
192 void update_title ();
193 //void unselect_all_redirects ();
195 sigc::connection update_connection;
196 void update_views ();
198 void start_updating ();
199 void stop_updating ();
203 #endif /* __ardour_route_params_ui_h__ */