2007-07-06 23:19:04 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2007 Paul Davis
|
2007-07-06 23:19:04 -04:00
|
|
|
Author: Dave Robillard
|
|
|
|
|
|
|
|
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 17:58:05 -04:00
|
|
|
#include "canvas-note-event.h"
|
2009-08-08 18:36:32 -04:00
|
|
|
#include "canvas.h"
|
2007-07-06 23:19:04 -04:00
|
|
|
|
|
|
|
namespace Gnome {
|
|
|
|
namespace Canvas {
|
|
|
|
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
class Diamond : public Polygon
|
2009-10-06 18:07:10 -04:00
|
|
|
{
|
|
|
|
public:
|
2007-07-30 12:33:10 -04:00
|
|
|
Diamond(Group& group, double height);
|
2009-10-06 18:07:10 -04:00
|
|
|
~Diamond ();
|
|
|
|
|
2009-10-07 11:05:52 -04:00
|
|
|
void move_to (double x, double y);
|
|
|
|
void move_by (double dx, double dy);
|
2008-04-21 12:42:55 -04:00
|
|
|
void set_height(double height);
|
2009-10-06 18:07:10 -04:00
|
|
|
|
|
|
|
protected:
|
2009-10-07 11:05:52 -04:00
|
|
|
double _x;
|
|
|
|
double _y;
|
|
|
|
double _h;
|
2009-10-06 18:07:10 -04:00
|
|
|
GnomeCanvasPoints* points;
|
2007-07-06 23:19:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Canvas
|
|
|
|
} // namespace Gnome
|
|
|
|
|
|
|
|
#endif /* __ardour_diamond_h__ */
|