Better MidiModel command framework, ready to go for all your canvas editing needs.
[ardour.git] / gtk2_ardour / canvas-midi-event.cc
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 #include <iostream>
21 #include "canvas-midi-event.h"
22 #include "midi_region_view.h"
23 #include "public_editor.h"
24 #include "editing_syms.h"
25 #include "keyboard.h"
26
27 using namespace std;
28
29 namespace Gnome {
30 namespace Canvas {
31
32
33 CanvasMidiEvent::CanvasMidiEvent(MidiRegionView& region, Item* item)
34         : _region(region)
35         , _item(item)
36         , _state(None)
37 {       
38 }
39
40
41 bool
42 CanvasMidiEvent::on_event(GdkEvent* ev)
43 {
44         static double last_x, last_y;
45         double event_x, event_y;
46
47         if (_region.get_time_axis_view().editor.current_mouse_mode() != Editing::MouseNote)
48                 return false;
49
50         switch (ev->type) {
51         case GDK_ENTER_NOTIFY:
52                 cerr << "ENTERED: " << ev->crossing.state << endl;
53                 Keyboard::magic_widget_grab_focus();
54                 _item->grab_focus();
55                 /*if ( (ev->crossing.state & GDK_BUTTON2_MASK) ) {
56
57                 }*/
58                 break;
59
60         case GDK_LEAVE_NOTIFY:
61                 cerr << "LEAVE: " << ev->crossing.state << endl;
62                 Keyboard::magic_widget_drop_focus();
63                 //_region.get_time_axis_view().editor.reset_focus();
64                 _region.get_canvas_group()->grab_focus();
65                 break;
66         
67         case GDK_KEY_PRESS:
68                 cerr << "EVENT KEY PRESS\n"; // doesn't work :/
69                 break;
70
71         case GDK_BUTTON_PRESS:
72                 _state = Pressed;
73                 return true;
74
75         case GDK_MOTION_NOTIFY:
76                 event_x = ev->motion.x;
77                 event_y = ev->motion.y;
78                 //cerr << "MOTION @ " << event_x << ", " << event_y << endl;
79                 _item->property_parent().get_value()->w2i(event_x, event_y);
80
81                 switch (_state) {
82                 case Pressed:
83                         _item->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
84                                         Gdk::Cursor(Gdk::FLEUR), ev->motion.time);
85                         _state = Dragging;
86                         last_x = event_x;
87                         last_y = event_y;
88                         return true;
89                 case Dragging:
90                         if (ev->motion.is_hint) {
91                                 int t_x;
92                                 int t_y;
93                                 GdkModifierType state;
94                                 gdk_window_get_pointer(ev->motion.window, &t_x, &t_y, &state);
95                                 event_x = t_x;
96                                 event_y = t_y;
97                         }
98
99                         _item->move(event_x - last_x, event_y - last_y);
100
101                         last_x = event_x;
102                         last_y = event_y;
103
104                         return true;
105                 default:
106                         break;
107                 }
108                 break;
109         
110         case GDK_BUTTON_RELEASE:
111                 switch (_state) {
112                 case Pressed: // Clicked
113                         _state = None;
114                         return true;
115                 case Dragging: // Dropped
116                         _item->ungrab(ev->button.time);
117                         _state = None;
118                         return true;
119                 default:
120                         break;
121                 }
122
123         default:
124                 break;
125         }
126
127         return false;
128 }
129
130 } // namespace Canvas
131 } // namespace Gnome
132