fix OSX compilation
[ardour.git] / gtk2_ardour / panner_interface.h
index 02f4e210bde88714ad775b1a284b2c16cf913365..3e79c355365dd9dbedd56279f0fa8f1f019f8e1c 100644 (file)
@@ -45,7 +45,7 @@ public:
 private:
        bool _dragging;
 };
-       
+
 
 /** Parent class for some panner UI classes that contains some common code */
 class PannerInterface : public Gtk::DrawingArea, public PBD::Destructible
@@ -59,12 +59,13 @@ public:
        }
 
        void edit ();
+       void set_send_drawing_mode (bool);
 
 protected:
        virtual void set_tooltip () = 0;
 
        void value_change ();
-       
+
         bool on_enter_notify_event (GdkEventCrossing *);
         bool on_leave_notify_event (GdkEventCrossing *);
        bool on_key_release_event  (GdkEventKey *);
@@ -74,6 +75,8 @@ protected:
        boost::shared_ptr<ARDOUR::Panner> _panner;
        PannerPersistentTooltip _tooltip;
 
+       bool _send_mode;
+
 private:
        virtual PannerEditor* editor () = 0;
        PannerEditor* _editor;