0ba4432391277c27f9bacc895df3b8adeff679bb
[ardour.git] / gtk2_ardour / editor_keyboard.cc
1 /*
2     Copyright (C) 2004 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     $Id$
19 */
20
21 #include <ardour/audioregion.h>
22
23 #include "editor.h"
24 #include "regionview.h"
25 #include "selection.h"
26
27 void
28 Editor::kbd_driver (sigc::slot<void,GdkEvent*> theslot, bool use_track_canvas, bool use_time_canvas, bool can_select)
29 {
30         gint x, y;
31         double dx, dy;
32         GdkEvent ev;
33         Gdk::ModifierType mask;
34         Glib::RefPtr<Gdk::Window> evw = track_canvas.get_window()->get_pointer (x, y, mask);
35         bool doit = false;
36
37         if (use_track_canvas && track_canvas_event_box.get_window()->get_pointer(x, y, mask) != 0) {
38                 doit = true;
39
40         } else if (use_time_canvas && time_canvas_event_box.get_window()->get_pointer(x, y, mask)!= 0) {
41                 doit = true;
42         }
43
44         if (doit) {
45
46                 if (entered_regionview && can_select) {
47                         selection->set (entered_regionview);
48                 }
49
50                 track_canvas.c2w(x, y, dx, dy);
51                 ev.type = GDK_BUTTON_PRESS;
52                 ev.button.x = dx;
53                 ev.button.y = dy;
54                 ev.button.state = 0;  /* XXX correct? */
55
56                 theslot (&ev);
57         }
58 }
59
60 void
61 Editor::kbd_set_playhead_cursor ()
62 {
63         kbd_driver (mem_fun(*this, &Editor::set_playhead_cursor), true, true, false);
64 }
65
66 void
67 Editor::kbd_set_edit_cursor ()
68 {
69         kbd_driver (mem_fun(*this, &Editor::set_edit_cursor), true, true, false);
70 }
71
72
73 void
74 Editor::kbd_do_split (GdkEvent* ev)
75 {
76         jack_nframes_t where = event_frame (ev);
77
78         if (entered_regionview) {
79                 if (selection->audio_regions.find (entered_regionview) != selection->audio_regions.end()) {
80                         split_regions_at (where, selection->audio_regions);
81                 } else {
82                         AudioRegionSelection s;
83                         s.add (entered_regionview);
84                         split_regions_at (where, s);
85                 }
86         }
87 }
88
89 void
90 Editor::kbd_split ()
91 {
92         kbd_driver (mem_fun(*this, &Editor::kbd_do_split), true, true, false);
93 }
94
95 void
96 Editor::kbd_do_align (GdkEvent* ev, ARDOUR::RegionPoint what)
97 {
98         align (what);
99 }
100
101 void
102 Editor::kbd_align (ARDOUR::RegionPoint what)
103 {
104         kbd_driver (bind (mem_fun(*this, &Editor::kbd_do_align), what));
105 }
106
107 void
108 Editor::kbd_do_align_relative (GdkEvent* ev, ARDOUR::RegionPoint what)
109 {
110         align (what);
111 }
112
113 void
114 Editor::kbd_align_relative (ARDOUR::RegionPoint what)
115 {
116         kbd_driver (bind (mem_fun(*this, &Editor::kbd_do_align), what), true, true, false);
117 }
118
119 void
120 Editor::kbd_do_brush (GdkEvent *ev)
121 {
122         brush (event_frame (ev, 0, 0));
123 }
124
125 void
126 Editor::kbd_brush ()
127 {
128         kbd_driver (mem_fun(*this, &Editor::kbd_do_brush), true, true, false);
129 }
130
131 void
132 Editor::kbd_do_audition (GdkEvent *ignored)
133 {
134         audition_selected_region ();
135 }
136
137 void
138 Editor::kbd_audition ()
139 {
140         kbd_driver (mem_fun(*this, &Editor::kbd_do_audition), true, false, true);
141 }