2007-07-30 12:33:10 -04:00
|
|
|
/*
|
2008-03-14 20:37:17 -04:00
|
|
|
Copyright (C) 2007 Paul Davis
|
2011-04-06 11:00:16 -04:00
|
|
|
Author: David Robillard
|
2008-03-14 20:37:17 -04:00
|
|
|
Author: Hans Baier
|
2007-07-30 12:33:10 -04: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 __gtk_ardour_canvas_note_h__
|
|
|
|
#define __gtk_ardour_canvas_note_h__
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include "simplerect.h"
|
2008-04-29 17:58:05 -04:00
|
|
|
#include "canvas-note-event.h"
|
2007-08-04 14:43:32 -04:00
|
|
|
#include "midi_util.h"
|
2007-07-30 12:33:10 -04:00
|
|
|
|
|
|
|
namespace Gnome {
|
|
|
|
namespace Canvas {
|
|
|
|
|
2011-06-01 13:00:29 -04:00
|
|
|
class CanvasNote : public SimpleRect, public CanvasNoteEvent
|
2010-05-28 12:37:04 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-09-08 17:45:44 -04:00
|
|
|
typedef Evoral::Note<Evoral::MusicalTime> NoteType;
|
2009-02-01 21:36:05 -05:00
|
|
|
|
2010-05-28 12:37:04 -04:00
|
|
|
CanvasNote (MidiRegionView& region,
|
|
|
|
Group& group,
|
|
|
|
const boost::shared_ptr<NoteType> note = boost::shared_ptr<NoteType>(),
|
|
|
|
bool with_events = true);
|
|
|
|
|
2011-03-05 18:00:49 -05:00
|
|
|
double x1() const { return property_x1(); }
|
|
|
|
double y1() const { return property_y1(); }
|
|
|
|
double x2() const { return property_x2(); }
|
|
|
|
double y2() const { return property_y2(); }
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-05-09 07:28:14 -04:00
|
|
|
void set_outline_color(uint32_t c) { property_outline_color_rgba() = c; hide(); show(); }
|
|
|
|
void set_fill_color(uint32_t c) { property_fill_color_rgba() = c; hide(); show(); }
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2009-02-15 14:44:27 -05:00
|
|
|
void show() { SimpleRect::show(); }
|
|
|
|
void hide() { SimpleRect::hide(); }
|
|
|
|
|
2008-03-14 20:37:17 -04:00
|
|
|
bool on_event(GdkEvent* ev);
|
2009-10-06 18:07:10 -04:00
|
|
|
void move_event(double dx, double dy);
|
2007-07-30 12:33:10 -04:00
|
|
|
};
|
|
|
|
|
2010-05-25 19:14:41 -04:00
|
|
|
class NoEventCanvasNote : public CanvasNote
|
|
|
|
{
|
2010-05-28 12:37:04 -04:00
|
|
|
public:
|
|
|
|
NoEventCanvasNote (MidiRegionView& region,
|
|
|
|
Group& group,
|
|
|
|
const boost::shared_ptr<NoteType> note = boost::shared_ptr<NoteType>())
|
|
|
|
: CanvasNote (region, group, note, false) {}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-05-25 19:14:41 -04:00
|
|
|
double point_vfunc(double, double, int, int, GnomeCanvasItem**) {
|
|
|
|
/* return a huge value to tell the canvas that we're never the item for an event */
|
|
|
|
return 9999999999999.0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
} // namespace Gnome
|
|
|
|
} // namespace Canvas
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_canvas_note_h__ */
|