Fix ExportFormatSpecification copy-c'tor
[ardour.git] / gtk2_ardour / route_params_ui.h
index 394383de6bbdf92cc12be23963f7c67244bdea11..850c56af7c358447262edaf19eb4d8f44a8edae9 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000 Paul Davis 
+    Copyright (C) 2000 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_route_params_ui_h__
 #include <gtkmm/eventbox.h>
 #include <gtkmm/frame.h>
 #include <gtkmm/label.h>
-#include <gtkmm/paned.h>
 #include <gtkmm/scrolledwindow.h>
 #include <gtkmm/togglebutton.h>
 #include <gtkmm/treeview.h>
 
-#include <pbd/stateful.h>
+#include "pbd/stateful.h"
+#include "pbd/signals.h"
 
-#include <ardour/ardour.h>
-#include <ardour/io.h>
-#include <ardour/redirect.h>
+#include "ardour/ardour.h"
 
-#include "io_selector.h"
-#include "ardour_dialog.h"
-#include "keyboard_target.h"
-#include "redirect_box.h"
-#include "route_redirect_selection.h"
+#include <widgets/pane.h>
+
+#include "ardour_window.h"
+#include "processor_box.h"
+#include "processor_selection.h"
+#include "latency_gui.h"
 
 namespace ARDOUR {
        class Route;
        class Send;
-       class Insert;
+       class Processor;
        class Session;
        class PortInsert;
        class Connection;
@@ -56,101 +54,94 @@ namespace ARDOUR {
 }
 
 class PluginSelector;
+class IOSelector;
 
-class RouteParams_UI : public ArdourDialog
+class RouteParams_UI : public ArdourWindow, public PBD::ScopedConnectionList
 {
-  public:
-       RouteParams_UI (ARDOUR::AudioEngine&);
+public:
+       RouteParams_UI ();
        ~RouteParams_UI();
 
-       void set_session (ARDOUR::Session *);
-       void session_gone ();
-       PluginSelector&  plugin_selector() { return *_plugin_selector; }
-
-  private:
-       ARDOUR::AudioEngine&     engine;
-
-       Gtk::HBox                global_hpacker;
-       Gtk::VBox                global_vpacker;
-       Gtk::ScrolledWindow      scroller;
-       Gtk::EventBox            scroller_base;
-       Gtk::HBox                scroller_hpacker;
-       Gtk::VBox                mixer_scroller_vpacker;
+       void set_session (ARDOUR::Session*);
+       void session_going_away ();
+       PluginSelector* plugin_selector() { return _plugin_selector; }
 
+private:
        Gtk::VBox                list_vpacker;
-       Gtk::Label               route_list_button_label;
-       Gtk::Button              route_list_button;
        Gtk::ScrolledWindow      route_select_scroller;
 
        Gtk::Notebook            notebook;
-       Gtk::Frame               input_frame;
-       Gtk::Frame               output_frame;
-       Gtk::HPaned              pre_redir_hpane;
-       Gtk::HPaned              post_redir_hpane;
-       
-       Gtk::Frame               route_select_frame;
+       Gtk::Frame               input_frame;
+       Gtk::Frame               output_frame;
+       ArdourWidgets::HPane     redir_hpane;
+
+       Gtk::Frame               route_select_frame;
 
        Gtk::HBox                route_hpacker;
        Gtk::VBox                route_vpacker;
 
-       RedirectBox              * pre_redirect_box;
-       RedirectBox              * post_redirect_box;
-       
-       Gtk::HPaned              list_hpane;
+       ProcessorBox*            insert_box;
+
+       ArdourWidgets::HPane     list_hpane;
 
-       Gtk::HPaned              right_hpane;
-       
-       Gtk::Frame               route_choice_frame;
+       ArdourWidgets::HPane     right_hpane;
 
-       Gtk::Frame               route_param_frame;
+       Gtk::Frame               route_param_frame;
 
        Gtk::VBox                choice_vpacker;
-       
+
+       Gtk::Frame               latency_frame;
+       Gtk::VBox                latency_packer;
+       Gtk::HButtonBox          latency_button_box;
+       Gtk::Button              latency_apply_button;
+       LatencyGUI*              latency_widget;
+       Gtk::Label               delay_label;
+
+       PBD::ScopedConnectionList latency_connections;
+       sigc::connection          latency_click_connection;
+
+       void refresh_latency ();
 
        Gtk::ToggleButton input_button;
        Gtk::ToggleButton output_button;
        Gtk::Label  track_input_label;
-       
+
        Gtk::Label  title_label;
-       
-       Gtk::Container * _active_pre_view;
-       Gtk::Container * _active_post_view;
+
+       Gtk::Container * _active_view;
        IOSelector     * _input_iosel;
        IOSelector     * _output_iosel;
-       
+
        PluginSelector    *_plugin_selector;
-       RouteRedirectSelection  _rr_selection;
+       ProcessorSelection  _p_selection;
 
        boost::shared_ptr<ARDOUR::Route> _route;
-       sigc::connection            _route_conn;
-       sigc::connection            _route_ds_conn;
+       PBD::ScopedConnection _route_processors_connection;
+       PBD::ScopedConnectionList route_connections;
+
+       boost::shared_ptr<ARDOUR::Processor> _processor;
+       PBD::ScopedConnection _processor_going_away_connection;
 
-       boost::shared_ptr<ARDOUR::Redirect> _pre_redirect;
-       sigc::connection            _pre_plugin_conn;
 
-       boost::shared_ptr<ARDOUR::Redirect> _post_redirect;
-       sigc::connection            _post_plugin_conn;
-       
-       
        enum ConfigView {
                NO_CONFIG_VIEW = 0,
                INPUT_CONFIG_VIEW,
                OUTPUT_CONFIG_VIEW,
-               PLUGIN_CONFIG_VIEW,             
+               PLUGIN_CONFIG_VIEW,
                PORTINSERT_CONFIG_VIEW,
                SEND_CONFIG_VIEW
        };
-       
+
        ConfigView _current_view;
 
 
        /* treeview */
-       struct RouteDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
+       struct RouteDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
                RouteDisplayModelColumns() {
                        add(text);
                        add(route);
                }
-               Gtk::TreeModelColumn<Glib::ustring> text;
+               Gtk::TreeModelColumn<std::string> text;
                Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> > route;
        };
 
@@ -158,41 +149,41 @@ class RouteParams_UI : public ArdourDialog
        Gtk::TreeView route_display;
        Glib::RefPtr<Gtk::ListStore> route_display_model;
 
-       
-       void add_routes (ARDOUR::Session::RouteList&);
 
-       void route_name_changed (void *src, boost::shared_ptr<ARDOUR::Route> route);
-       void route_removed (boost::shared_ptr<ARDOUR::Route> route);
+       void add_routes (ARDOUR::RouteList&);
+
+       void route_property_changed (const PBD::PropertyChange&, boost::weak_ptr<ARDOUR::Route> route);
+       void route_removed (boost::weak_ptr<ARDOUR::Route> route);
+       void map_frozen ();
 
 
        void route_selected();
        //void route_unselected (gint row, gint col, GdkEvent *ev);
 
-       void setup_io_frames();
-       void cleanup_io_frames();
-       void cleanup_pre_view(bool stopupdate = true);
-       void cleanup_post_view(bool stopupdate = true);
+       void setup_io_samples();
+       void cleanup_io_samples();
+       void cleanup_view(bool stopupdate = true);
+       void cleanup_latency_frame ();
+       void setup_latency_frame ();
+
+       void processors_changed (ARDOUR::RouteProcessorChange);
 
-       
-       
-       void redirects_changed (void *src);
-       
-       void setup_redirect_boxes();
-       void cleanup_redirect_boxes();
+       void setup_processor_boxes();
+       void cleanup_processor_boxes();
+
+       void redirect_selected (boost::shared_ptr<ARDOUR::Processor>);
 
-       void redirect_selected (boost::shared_ptr<ARDOUR::Redirect>, ARDOUR::Placement);
-       
        void plugin_going_away (ARDOUR::Placement);
-       void redirect_going_away (boost::shared_ptr<ARDOUR::Redirect>);
+       void processor_going_away (boost::weak_ptr<ARDOUR::Processor>);
 
        gint edit_input_configuration (GdkEventButton *ev);
        gint edit_output_configuration (GdkEventButton *ev);
-       
+
        void update_routeinfo (ARDOUR::Route * route);
-       
+
        Gtk::Menu *track_menu;
        void show_track_menu();
-       
+
        void update_title ();
        //void unselect_all_redirects ();