Merge branch 'master' into cairocanvas
[ardour.git] / gtk2_ardour / edit_note_dialog.cc
1 /*
2     Copyright (C) 2010 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 <gtkmm/stock.h>
21 #include <gtkmm/table.h>
22
23 #include "gtkmm2ext/utils.h"
24
25 #include "edit_note_dialog.h"
26 #include "midi_region_view.h"
27 #include "note_base.h"
28
29 #include "i18n.h"
30
31 using namespace std;
32 using namespace Gtk;
33 using namespace Gtkmm2ext;
34
35 /**
36  *    EditNoteDialog constructor.
37  *
38  *    @param n Notes to edit.
39  */
40
41 EditNoteDialog::EditNoteDialog (MidiRegionView* rv, set<NoteBase*> n)
42         : ArdourDialog (_("Note"))
43         , _region_view (rv)
44         , _events (n)
45         , _channel_all (_("Set selected notes to this channel"))
46         , _pitch_all (_("Set selected notes to this pitch"))
47         , _velocity_all (_("Set selected notes to this velocity"))
48         , _time_clock (X_("notetime"), true, "", true, false)
49         , _time_all (_("Set selected notes to this time"))
50         , _length_clock (X_("notelength"), true, "", true, false, true)
51         , _length_all (_("Set selected notes to this length"))
52 {
53         Table* table = manage (new Table (4, 2));
54         table->set_spacings (6);
55
56         int r = 0;
57
58         Label* l = manage (left_aligned_label (_("Channel")));
59         table->attach (*l, 0, 1, r, r + 1);
60         table->attach (_channel, 1, 2, r, r + 1);
61         table->attach (_channel_all, 2, 3, r, r + 1);
62         ++r;
63
64         _channel.set_range (1, 16);
65         _channel.set_increments (1, 2);
66         _channel.set_value ((*_events.begin())->note()->channel () + 1);
67
68         l = manage (left_aligned_label (_("Pitch")));
69         table->attach (*l, 0, 1, r, r + 1);
70         table->attach (_pitch, 1, 2, r, r + 1);
71         table->attach (_pitch_all, 2, 3, r, r + 1);
72         ++r;
73
74         _pitch.set_range (0, 127);
75         _pitch.set_increments (1, 10);
76         _pitch.set_value ((*_events.begin())->note()->note());
77
78         l = manage (left_aligned_label (_("Velocity")));
79         table->attach (*l, 0, 1, r, r + 1);
80         table->attach (_velocity, 1, 2, r, r + 1);
81         table->attach (_velocity_all, 2, 3, r, r + 1);
82         ++r;
83
84         _velocity.set_range (0, 127);
85         _velocity.set_increments (1, 10);
86         _velocity.set_value ((*_events.begin())->note()->velocity ());
87
88         l = manage (left_aligned_label (_("Time")));
89         table->attach (*l, 0, 1, r, r + 1);
90         table->attach (_time_clock, 1, 2, r, r + 1);
91         table->attach (_time_all, 2, 3, r, r + 1);
92         ++r;
93
94         _time_clock.set_session (_region_view->get_time_axis_view().session ());
95         _time_clock.set_mode (AudioClock::BBT);
96         _time_clock.set (_region_view->source_relative_time_converter().to ((*_events.begin())->note()->time ()), true);
97
98         l = manage (left_aligned_label (_("Length")));
99         table->attach (*l, 0, 1, r, r + 1);
100         table->attach (_length_clock, 1, 2, r, r + 1);
101         table->attach (_length_all, 2, 3, r, r + 1);
102         ++r;
103
104         _length_clock.set_session (_region_view->get_time_axis_view().session ());
105         _length_clock.set_mode (AudioClock::BBT);
106         _length_clock.set (_region_view->region_relative_time_converter().to ((*_events.begin())->note()->length ()), true);
107
108         /* Set up `set all notes...' buttons' sensitivity */
109
110         _channel_all.set_sensitive (false);
111         _pitch_all.set_sensitive (false);
112         _velocity_all.set_sensitive (false);
113         _time_all.set_sensitive (false);
114         _length_all.set_sensitive (false);
115         
116         int test_channel = (*_events.begin())->note()->channel ();
117         int test_pitch = (*_events.begin())->note()->note ();
118         int test_velocity = (*_events.begin())->note()->velocity ();
119         double test_time = (*_events.begin())->note()->time ();
120         double test_length = (*_events.begin())->note()->length ();
121         
122         for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
123                 if ((*i)->note()->channel() != test_channel) {
124                         _channel_all.set_sensitive (true);
125                 }
126
127                 if ((*i)->note()->note() != test_pitch) {
128                         _pitch_all.set_sensitive (true);
129                 }
130
131                 if ((*i)->note()->velocity() != test_velocity) {
132                         _velocity_all.set_sensitive (true);
133                 }
134
135                 if ((*i)->note()->time () != test_time) {
136                         _time_all.set_sensitive (true);
137                 }
138
139                 if ((*i)->note()->length () != test_length) {
140                         _length_all.set_sensitive (true);
141                 }
142         }
143         
144         get_vbox()->pack_start (*table);
145
146         add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
147         add_button (Gtk::Stock::APPLY, Gtk::RESPONSE_ACCEPT);
148         set_default_response (Gtk::RESPONSE_ACCEPT);
149
150         show_all ();
151 }
152
153 int
154 EditNoteDialog::run ()
155 {
156         int const r = Dialog::run ();
157         if (r != RESPONSE_ACCEPT) {
158                 return r;
159         }
160
161         /* These calls mean that if a value is entered using the keyboard
162            it will be returned by the get_value_as_int()s below.
163         */
164         _channel.update ();
165         _pitch.update ();
166         _velocity.update ();
167
168         _region_view->start_note_diff_command (_("edit note"));
169
170         bool had_change = false;
171
172         if (!_channel_all.get_sensitive() || _channel_all.get_active ()) {
173                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
174                         if (_channel.get_value_as_int() - 1 != (*i)->note()->channel()) {
175                                 _region_view->change_note_channel (*i, _channel.get_value_as_int () - 1);
176                                 had_change = true;
177                         }
178                 }
179         }
180
181         if (!_pitch_all.get_sensitive() || _pitch_all.get_active ()) {
182                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
183                         if (_pitch.get_value_as_int() != (*i)->note()->note()) {
184                                 _region_view->change_note_note (*i, _pitch.get_value_as_int ());
185                                 had_change = true;
186                         }
187                 }
188         }
189
190         if (!_velocity_all.get_sensitive() || _velocity_all.get_active ()) {
191                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
192                         if (_velocity.get_value_as_int() != (*i)->note()->velocity()) {
193                                 _region_view->change_note_velocity (*i, _velocity.get_value_as_int ());
194                                 had_change = true;
195                         }
196                 }
197         }
198
199         double const t = _region_view->source_relative_time_converter().from (_time_clock.current_time ());
200
201         if (!_time_all.get_sensitive() || _time_all.get_active ()) {
202                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
203                         if (t != (*i)->note()->time()) {
204                                 _region_view->change_note_time (*i, t);
205                                 had_change = true;
206                         }
207                 }
208         }
209
210         double const d = _region_view->region_relative_time_converter().from (_length_clock.current_duration ());
211
212         if (!_length_all.get_sensitive() || _length_all.get_active ()) {
213                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
214                         if (d != (*i)->note()->length()) {
215                                 _region_view->change_note_length (*i, d);
216                                 had_change = true;
217                         }
218                 }
219         }
220
221         if (!had_change) {
222                 _region_view->abort_command ();
223         }
224
225         _region_view->apply_diff ();
226
227         for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
228                 (*i)->set_selected ((*i)->selected()); // change color
229         }
230
231         return r;
232 }