Fix undefined return value.
[ardour.git] / gtk2_ardour / canvas-note.cc
1 /*
2     Copyright (C) 2012 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "canvas-note.h"
21 #include "midi_region_view.h"
22 #include "public_editor.h"
23 #include "evoral/Note.hpp"
24
25 using namespace ARDOUR;
26
27 namespace Gnome {
28 namespace Canvas {
29
30 CanvasNote::CanvasNote (MidiRegionView&                   region,
31                         Group&                            group,
32                         const boost::shared_ptr<NoteType> note,
33                         bool with_events)
34         : SimpleRect(group), CanvasNoteEvent(region, this, note)
35 {
36         if (with_events) {
37                 signal_event().connect (sigc::mem_fun (*this, &CanvasNote::on_event));
38         }
39 }
40
41 bool
42 CanvasNote::on_event(GdkEvent* ev)
43 {
44         bool r = true;
45
46         if (!CanvasNoteEvent::on_event (ev)) {
47                 r = _region.get_time_axis_view().editor().canvas_note_event (ev, this);
48         }
49
50         if (ev->type == GDK_BUTTON_RELEASE) {
51                 _region.note_button_release ();
52         }
53         
54         return r;
55 }
56
57 void
58 CanvasNote::move_event(double dx, double dy)
59 {
60         property_x1() = property_x1() + dx;
61         property_y1() = property_y1() + dy;
62         property_x2() = property_x2() + dx;
63         property_y2() = property_y2() + dy;
64
65         if (_text) {
66                 _text->hide();
67                 _text->property_x() = _text->property_x() + dx;
68                 _text->property_y() = _text->property_y() + dy;
69                 _text->show();
70         }
71 }
72
73
74 } // namespace Gnome
75 } // namespace Canvas