46f4bbee35982de1c0728945810fcfcedd0eb685
[ardour.git] / gtk2_ardour / canvas-note.h
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: Dave Robillard
4     Author: Hans Baier
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #ifndef __gtk_ardour_canvas_note_h__
22 #define __gtk_ardour_canvas_note_h__
23
24 #include <iostream>
25 #include "simplerect.h"
26 #include "canvas-note-event.h"
27 #include "midi_util.h"
28
29 namespace Gnome {
30 namespace Canvas {
31
32 class CanvasNote : public SimpleRect, public CanvasNoteEvent {
33 public:
34         typedef Evoral::Note<double> NoteType;
35
36         double x1() { return property_x1(); }
37         double y1() { return property_y1(); }
38         double x2() { return property_x2(); }
39         double y2() { return property_y2(); }
40
41         void set_outline_color(uint32_t c) { property_outline_color_rgba() = c; hide(); show(); }
42         void set_fill_color(uint32_t c)    { property_fill_color_rgba()    = c; hide(); show(); }
43
44         void show() { SimpleRect::show(); }
45         void hide() { SimpleRect::hide(); }
46
47         bool on_event(GdkEvent* ev);
48
49         enum NoteEnd {
50                 NOTE_ON,
51                 NOTE_OFF
52         };
53
54         enum NoteState {
55                 None,
56                 RelativeResize,
57                 AbsoluteResize
58         };
59
60         CanvasNote(
61                         MidiRegionView&                   region,
62                         Group&                            group,
63                         const boost::shared_ptr<NoteType> note = boost::shared_ptr<NoteType>())
64                 : SimpleRect(group), CanvasNoteEvent(region, this, note), _note_state(None)
65         {
66         }
67
68 protected:
69         NoteState _note_state;
70 };
71
72 } // namespace Gnome
73 } // namespace Canvas
74
75 #endif /* __gtk_ardour_canvas_note_h__ */