Theme-ified MIDI note colours, implemented automagic crossfading thereof.
[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         virtual bool on_event(GdkEvent* ev);
48
49         virtual void selected(bool yn) = 0;
50
51         const ARDOUR::MidiModel::Note* note() { return _note; }
52
53 protected:
54         enum State { None, Pressed, Dragging };
55
56         MidiRegionView&                _region;
57         Item* const                    _item;
58         State                          _state;
59         const ARDOUR::MidiModel::Note* _note;
60 };
61
62 } // namespace Gnome
63 } // namespace Canvas
64
65 #endif /* __gtk_ardour_canvas_midi_event_h__ */