do not sort MIDI regions by layer since they are all transparent
[ardour.git] / gtk2_ardour / panner2d.h
index 1abac7fe5a6cc72b2b4ca12ef3db50e61444b66f..91f4851746d1b0233934cd7765de881c4fe56e19 100644 (file)
@@ -22,7 +22,6 @@
 
 #include <sys/types.h>
 #include <map>
-#include <string>
 #include <vector>
 
 #include <glibmm/refptr.h>
@@ -33,9 +32,6 @@
 #include <gtkmm/spinbutton.h>
 #include <gtkmm/adjustment.h>
 
-using std::map;
-using std::string;
-
 namespace ARDOUR {
        class Panner;
 }
@@ -56,7 +52,7 @@ class Panner2d : public Gtk::DrawingArea
   public:
        Panner2d (boost::shared_ptr<ARDOUR::Panner>, int32_t height);
        ~Panner2d ();
-       
+
        void allow_x_motion(bool);
        void allow_y_motion(bool);
        void allow_target_motion (bool);
@@ -77,7 +73,7 @@ class Panner2d : public Gtk::DrawingArea
        Gtk::Adjustment& azimuth (uint32_t which);
 
        boost::shared_ptr<ARDOUR::Panner> get_panner() const { return panner; }
-       
+
        sigc::signal<void,int> PuckMoved;
        sigc::signal<void,int> TargetMoved;
 
@@ -121,7 +117,7 @@ class Panner2d : public Gtk::DrawingArea
        int height;
 
        bool bypassflag;
-       
+
        gint compute_x (float);
        gint compute_y (float);
 
@@ -138,7 +134,7 @@ class Panner2dWindow : public Gtk::Window
 {
   public:
        Panner2dWindow (boost::shared_ptr<ARDOUR::Panner>, int32_t height, uint32_t inputs);
-       
+
        void reset (uint32_t n_inputs);
 
   private: