summaryrefslogtreecommitdiff
path: root/gtk2_ardour/diamond.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-10-07 15:05:52 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-10-07 15:05:52 +0000
commitcd32030762351aa25c39c9678753d7c6d78a5fea (patch)
treecc7ae4349022532dc035ff2c57a014a3c6c5f478 /gtk2_ardour/diamond.cc
parent2d81a5636dcf5532769a1bf4ddaafb2fa91b990a (diff)
fix up dragging notes in percussive mode
git-svn-id: svn://localhost/ardour2/branches/3.0@5749 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/diamond.cc')
-rw-r--r--gtk2_ardour/diamond.cc54
1 files changed, 40 insertions, 14 deletions
diff --git a/gtk2_ardour/diamond.cc b/gtk2_ardour/diamond.cc
index 3cc198fb98..48c0dd4b68 100644
--- a/gtk2_ardour/diamond.cc
+++ b/gtk2_ardour/diamond.cc
@@ -24,10 +24,13 @@ using namespace Gnome::Art;
Diamond::Diamond(Group& group, double height)
: Polygon(group)
+ , _x (0)
+ , _y (0)
+ , _h (height)
{
points = gnome_canvas_points_new (4);
g_object_set (gobj(), "points", points, NULL);
- set_height (height);
+ move_to (0, 0);
}
Diamond::~Diamond ()
@@ -36,24 +39,47 @@ Diamond::~Diamond ()
}
void
-Diamond::set_height(double height)
+Diamond::set_height (double height)
{
- double x1, y1, x2, y2;
-
- get_bounds (x1, y1, x2, y2);
+ _h = height;
+ move_to (_x, _y);
+}
+
+void
+Diamond::move_to (double x, double y)
+{
+ _x = x;
+ _y = y;
- points->coords[0] = x1;
- points->coords[1] = y1 + height*2.0;
+ points->coords[0] = _x;
+ points->coords[1] = _y + (_h * 2.0);
- points->coords[2] = x2 + height;
- points->coords[3] = y1 + height;
+ points->coords[2] = _x + _h;
+ points->coords[3] = _y + _h;
- points->coords[4] = x1;
- points->coords[5] = y2;
-
- points->coords[6] = x2 -height;
- points->coords[7] = y2 + height;
+ points->coords[4] = _x;
+ points->coords[5] = _y;
+ points->coords[6] = _x - _h;
+ points->coords[7] = _y + _h;
+
g_object_set (gobj(), "points", points, NULL);
}
+void
+Diamond::move_by (double dx, double dy)
+{
+ points->coords[0] += dx;
+ points->coords[1] += dy;
+
+ points->coords[2] += dx;
+ points->coords[3] += dy;
+
+ points->coords[4] += dx;
+ points->coords[5] += dy;
+
+ points->coords[6] += dx;
+ points->coords[7] += dy;
+
+ g_object_set (gobj(), "points", points, NULL);
+}