Clean up snap-to code in various places. Fix a couple of typos. Should fix #3165...
[ardour.git] / gtk2_ardour / diamond.h
index 32544f4880e645510d26b99dc33e08ac1320c6d4..a8169becb9ef93a8576c5a70ce3a0338078ed27a 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2007 Paul Davis 
+    Copyright (C) 2007 Paul Davis
     Author: Dave Robillard
 
     This program is free software; you can redistribute it and/or modify
 #define __ardour_diamond_h__
 
 #include <libgnomecanvasmm/polygon.h>
-#include "canvas-midi-event.h"
+#include "canvas-note-event.h"
+#include "canvas.h"
 
 namespace Gnome {
 namespace Canvas {
 
 
-class Diamond : public Polygon {
-public:
+class Diamond : public Polygon
+{
+  public:
        Diamond(Group& group, double height);
-       
+       ~Diamond ();
+
+       void move_to (double x, double y);
+       void move_by (double dx, double dy);
        void set_height(double height);
+
+  protected:
+       double _x;
+       double _y;
+       double _h;
+       GnomeCanvasPoints* points;
 };