Note selection via clicking (including multi-note selection via ctrl/shift clicking).
[ardour.git] / gtk2_ardour / canvas-midi-event.h
1 /*
2     Copyright (C) 2007 Paul Davis 
3     Author: Dave Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __gtk_ardour_canvas_midi_event_h__
21 #define __gtk_ardour_canvas_midi_event_h__
22
23 #include "simplerect.h"
24 #include <ardour/midi_model.h>
25
26 class Editor;
27 class MidiRegionView;
28
29 namespace Gnome {
30 namespace Canvas {
31
32
33 /** This manages all the event handling for any MIDI event on the canvas.
34  *
35  * This is not actually a canvas item itself to avoid the dreaded diamond,
36  * since various types of canvas items (Note (rect), Hit (diamond), etc)
37  * need to share this functionality but can't share an ancestor.
38  *
39  * Note: Because of this, derived classes need to manually bounce events to
40  * on_event, it won't happen automatically.
41  */
42 class CanvasMidiEvent {
43 public:
44         CanvasMidiEvent(MidiRegionView& region, Item* item, const ARDOUR::MidiModel::Note* note = NULL);
45         virtual ~CanvasMidiEvent() {} 
46
47         bool on_event(GdkEvent* ev);
48
49         bool selected() const { return _selected; }
50         void selected(bool yn);
51
52         virtual void set_outline_color(uint32_t c) = 0;
53         virtual void set_fill_color(uint32_t c) = 0;
54
55         const ARDOUR::MidiModel::Note* note() { return _note; }
56
57 protected:
58         enum State { None, Pressed, Dragging };
59
60         MidiRegionView&                _region;
61         Item* const                    _item;
62         State                          _state;
63         const ARDOUR::MidiModel::Note* _note;
64         bool                           _selected;
65 };
66
67 } // namespace Gnome
68 } // namespace Canvas
69
70 #endif /* __gtk_ardour_canvas_midi_event_h__ */