Merge libs/ardour and gtk2_ardour with 2.0-ongoing R2837.
[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  * A newer, better canvas should remove the need for all the ugly here.
43  */
44 class CanvasMidiEvent {
45 public:
46         CanvasMidiEvent(
47                         MidiRegionView&                       region,
48                         Item*                                 item,
49                         const boost::shared_ptr<ARDOUR::Note> note = boost::shared_ptr<ARDOUR::Note>());
50
51         virtual ~CanvasMidiEvent() {}
52
53         bool on_event(GdkEvent* ev);
54
55         bool selected() const { return _selected; }
56         void selected(bool yn);
57
58         virtual void set_outline_color(uint32_t c) = 0;
59         virtual void set_fill_color(uint32_t c) = 0;
60         
61         virtual double x1() = 0;
62         virtual double y1() = 0;
63         virtual double x2() = 0;
64         virtual double y2() = 0;
65
66         const Item* item() const { return _item; }
67         Item*       item()       { return _item; }
68
69         const boost::shared_ptr<ARDOUR::Note> note() { return _note; }
70
71 protected:
72         enum State { None, Pressed, Dragging };
73
74         MidiRegionView&                       _region;
75         Item* const                           _item;
76         State                                 _state;
77         const boost::shared_ptr<ARDOUR::Note> _note;
78         bool                                  _own_note;
79         bool                                  _selected;
80 };
81
82 } // namespace Gnome
83 } // namespace Canvas
84
85 #endif /* __gtk_ardour_canvas_midi_event_h__ */