2007-07-30 12:33:10 -04:00
|
|
|
/*
|
2008-03-14 20:37:17 -04:00
|
|
|
Copyright (C) 2007 Paul Davis
|
2007-07-30 12:33:10 -04:00
|
|
|
Author: Dave 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 {
|
|
|
|
|
2008-04-29 03:28:24 -04:00
|
|
|
class CanvasNote : public SimpleRect, public CanvasNoteEvent {
|
2007-07-30 12:33:10 -04:00
|
|
|
public:
|
2007-08-06 20:09:22 -04:00
|
|
|
double x1() { return property_x1(); }
|
|
|
|
double y1() { return property_y1(); }
|
|
|
|
double x2() { return property_x2(); }
|
|
|
|
double y2() { 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
|
|
|
|
|
|
|
bool on_event(GdkEvent* ev);
|
|
|
|
|
|
|
|
enum NoteEnd {
|
|
|
|
NOTE_ON,
|
|
|
|
NOTE_OFF
|
|
|
|
};
|
|
|
|
|
2008-03-26 07:11:47 -04:00
|
|
|
enum NoteState {
|
2008-03-14 20:37:17 -04:00
|
|
|
None,
|
|
|
|
RelativeResize,
|
|
|
|
AbsoluteResize
|
|
|
|
};
|
|
|
|
|
2008-05-06 18:54:06 -04:00
|
|
|
CanvasNote(
|
|
|
|
MidiRegionView& region,
|
|
|
|
Group& group,
|
|
|
|
const boost::shared_ptr<ARDOUR::Note> note = boost::shared_ptr<ARDOUR::Note>())
|
|
|
|
|
|
|
|
: SimpleRect(group), CanvasNoteEvent(region, this, note), _note_state(None)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-14 20:37:17 -04:00
|
|
|
protected:
|
2008-03-26 07:11:47 -04:00
|
|
|
NoteState _note_state;
|
2008-03-14 20:37:17 -04:00
|
|
|
|
|
|
|
private:
|
2008-03-26 07:11:47 -04:00
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Gnome
|
|
|
|
} // namespace Canvas
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_canvas_note_h__ */
|