2007-07-07 03:19:04 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2007 Paul Davis
|
2011-04-06 15:00:16 +00:00
|
|
|
Author: David Robillard
|
2007-07-07 03:19:04 +00:00
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __ardour_diamond_h__
|
|
|
|
|
#define __ardour_diamond_h__
|
|
|
|
|
|
|
|
|
|
#include <libgnomecanvasmm/polygon.h>
|
2008-04-29 21:58:05 +00:00
|
|
|
#include "canvas-note-event.h"
|
2009-08-08 22:36:32 +00:00
|
|
|
#include "canvas.h"
|
2007-07-07 03:19:04 +00:00
|
|
|
|
|
|
|
|
namespace Gnome {
|
|
|
|
|
namespace Canvas {
|
|
|
|
|
|
|
|
|
|
|
2009-10-14 16:10:01 +00:00
|
|
|
class Diamond : public Polygon
|
2009-10-06 22:07:10 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2007-07-30 16:33:10 +00:00
|
|
|
Diamond(Group& group, double height);
|
2009-10-06 22:07:10 +00:00
|
|
|
~Diamond ();
|
|
|
|
|
|
2009-10-07 15:05:52 +00:00
|
|
|
void move_to (double x, double y);
|
|
|
|
|
void move_by (double dx, double dy);
|
2008-04-21 16:42:55 +00:00
|
|
|
void set_height(double height);
|
2009-10-06 22:07:10 +00:00
|
|
|
|
|
|
|
|
protected:
|
2009-10-07 15:05:52 +00:00
|
|
|
double _x;
|
|
|
|
|
double _y;
|
|
|
|
|
double _h;
|
2009-10-06 22:07:10 +00:00
|
|
|
GnomeCanvasPoints* points;
|
2007-07-07 03:19:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Canvas
|
|
|
|
|
} // namespace Gnome
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_diamond_h__ */
|