fix crash when copy'ing latent plugins
[ardour.git] / gtk2_ardour / mono_panner.h
index 4e20e10902079e9be9edf5552088712b03baacd0..c5843f756c5aadb541552181324db485c52b1a00 100644 (file)
 
 #include "panner_interface.h"
 
+namespace ARDOUR {
+       class PannerShell;
+}
+
 namespace PBD {
         class Controllable;
 }
@@ -35,7 +39,7 @@ namespace PBD {
 class MonoPanner : public PannerInterface
 {
   public:
-       MonoPanner (boost::shared_ptr<ARDOUR::Panner>);
+       MonoPanner (boost::shared_ptr<ARDOUR::PannerShell>);
        ~MonoPanner ();
 
         boost::shared_ptr<PBD::Controllable> get_controllable() const { return position_control; }
@@ -52,9 +56,12 @@ class MonoPanner : public PannerInterface
         bool on_key_press_event (GdkEventKey*);
 
   private:
+       PannerEditor* editor ();
+       boost::shared_ptr<ARDOUR::PannerShell> _panner_shell;
+
         boost::shared_ptr<PBD::Controllable> position_control;
-        PBD::ScopedConnectionList connections;
-        bool dragging;
+        PBD::ScopedConnectionList panvalue_connections;
+        PBD::ScopedConnectionList panshell_connections;
         int drag_start_x;
         int last_drag_x;
         double accumulated_delta;
@@ -62,7 +69,7 @@ class MonoPanner : public PannerInterface
 
         BindingProxy position_binder;
 
-        void set_drag_data ();
+        void set_tooltip ();
 
         struct ColorScheme {
             uint32_t outline;
@@ -73,10 +80,17 @@ class MonoPanner : public PannerInterface
             uint32_t pos_fill;
         };
 
+       bool _dragging;
+
+       static Pango::AttrList panner_font_attributes;
+       static bool have_font;
+
         static ColorScheme colors;
         static void set_colors ();
         static bool have_colors;
        void color_handler ();
+       void bypass_handler ();
+       void pannable_handler ();
 };
 
 #endif /* __gtk_ardour_mono_panner_h__ */