Put the sidechain ports into a dedicated tab in PortMatrix
[ardour.git] / gtk2_ardour / panner_ui.h
index fb31607316efdd2b6d49006a97331c5ac081a196..f3986e24a94b3e067f3bff157c52049ddd1cb32d 100644 (file)
@@ -29,9 +29,6 @@
 #include <gtkmm/togglebutton.h>
 #include <gtkmm/button.h>
 
-#include <gtkmm2ext/click_box.h>
-#include <gtkmm2ext/slider_controller.h>
-
 #include "ardour/session_handle.h"
 
 #include "enums.h"
@@ -46,11 +43,7 @@ namespace ARDOUR {
        class Panner;
        class PannerShell;
        class Delivery;
-        class AutomationControl;
-}
-
-namespace Gtkmm2ext {
-       class FastMeter;
+       class AutomationControl;
 }
 
 namespace Gtk {
@@ -60,7 +53,7 @@ namespace Gtk {
 
 class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
 {
-  public:
+public:
        PannerUI (ARDOUR::Session*);
        ~PannerUI ();
 
@@ -73,18 +66,20 @@ class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
 
        void set_width (Width);
        void setup_pan ();
+       void set_available_panners(std::map<std::string,std::string>);
+       void set_send_drawing_mode (bool);
 
        void effective_pan_display ();
 
        void set_meter_strip_name (std::string name);
-       boost::shared_ptr<PBD::Controllable> get_controllable();
 
        void on_size_allocate (Gtk::Allocation &);
 
        static void setup_slider_pix ();
 
-  private:
+private:
        friend class MixerStrip;
+       friend class SendUI;
 
        boost::shared_ptr<ARDOUR::PannerShell> _panshell;
        boost::shared_ptr<ARDOUR::Panner> _panner;
@@ -95,33 +90,32 @@ class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
        bool in_pan_update;
        int _current_nouts;
        int _current_nins;
-
-       static const int pan_bar_height;
+       std::string _current_uri;
+       bool _send_mode;
 
        Panner2d*       twod_panner; ///< 2D panner, or 0
        Panner2dWindow* big_window;
 
        Gtk::VBox           pan_bar_packer;
        Gtk::VBox           pan_vbox;
-        Gtk::VBox           poswidth_box;
+       Gtk::VBox           poswidth_box;
        Width              _width;
 
-        StereoPanner*  _stereo_panner;
-        bool _ignore_width_change;
-        bool _ignore_position_change;
-        void width_adjusted ();
-        void show_width ();
-        void position_adjusted ();
-        void show_position ();
+       StereoPanner*  _stereo_panner;
+       MonoPanner*    _mono_panner;
+
+       bool _ignore_width_change;
+       bool _ignore_position_change;
+       void width_adjusted ();
+       void show_width ();
+       void position_adjusted ();
+       void show_position ();
 
        Gtk::Menu* pan_astate_menu;
        Gtk::Menu* pan_astyle_menu;
 
-       Gtk::Button pan_automation_style_button;
        Gtk::ToggleButton pan_automation_state_button;
 
-       std::vector<MonoPanner*> pan_bars;
-
        void pan_value_changed (uint32_t which);
        void build_astate_menu ();
        void build_astyle_menu ();
@@ -141,23 +135,21 @@ class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
        void build_pan_menu ();
        void pan_reset ();
        void pan_bypass_toggle ();
+       void pan_edit ();
+       void pan_set_custom_type (std::string type);
 
        void pan_automation_state_changed();
-       void pan_automation_style_changed();
-       gint pan_automation_style_button_event (GdkEventButton *);
        gint pan_automation_state_button_event (GdkEventButton *);
-       sigc::connection pan_watching;
 
        std::string astate_string (ARDOUR::AutoState);
        std::string short_astate_string (ARDOUR::AutoState);
        std::string _astate_string (ARDOUR::AutoState, bool);
 
-       std::string astyle_string (ARDOUR::AutoStyle);
-       std::string short_astyle_string (ARDOUR::AutoStyle);
-       std::string _astyle_string (ARDOUR::AutoStyle, bool);
+       void start_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
+       void stop_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
 
-        void start_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
-        void stop_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
+       std::map<std::string,std::string> _panner_list;
+       bool _suspend_menu_callbacks;
 };
 
 #endif /* __ardour_gtk_panner_ui_h__ */