enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[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 "pbd/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
97                          ((*_events.begin())->note()->time()) + (_region_view->region()->position() - _region_view->region()->start()), true);
98
99         l = manage (left_aligned_label (_("Length")));
100         table->attach (*l, 0, 1, r, r + 1);
101         table->attach (_length_clock, 1, 2, r, r + 1);
102         table->attach (_length_all, 2, 3, r, r + 1);
103         ++r;
104
105         _length_clock.set_session (_region_view->get_time_axis_view().session ());
106         _length_clock.set_mode (AudioClock::BBT);
107         _length_clock.set (_region_view->region_relative_time_converter().to ((*_events.begin())->note()->length ()), true);
108
109         /* Set up `set all notes...' buttons' sensitivity */
110
111         _channel_all.set_sensitive (false);
112         _pitch_all.set_sensitive (false);
113         _velocity_all.set_sensitive (false);
114         _time_all.set_sensitive (false);
115         _length_all.set_sensitive (false);
116
117         int test_channel = (*_events.begin())->note()->channel ();
118         int test_pitch = (*_events.begin())->note()->note ();
119         int test_velocity = (*_events.begin())->note()->velocity ();
120         Evoral::Beats test_time = (*_events.begin())->note()->time ();
121         Evoral::Beats test_length = (*_events.begin())->note()->length ();
122
123         for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
124                 if ((*i)->note()->channel() != test_channel) {
125                         _channel_all.set_sensitive (true);
126                 }
127
128                 if ((*i)->note()->note() != test_pitch) {
129                         _pitch_all.set_sensitive (true);
130                 }
131
132                 if ((*i)->note()->velocity() != test_velocity) {
133                         _velocity_all.set_sensitive (true);
134                 }
135
136                 if ((*i)->note()->time () != test_time) {
137                         _time_all.set_sensitive (true);
138                 }
139
140                 if ((*i)->note()->length () != test_length) {
141                         _length_all.set_sensitive (true);
142                 }
143         }
144
145         get_vbox()->pack_start (*table);
146
147         add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
148         add_button (Gtk::Stock::APPLY, Gtk::RESPONSE_ACCEPT);
149         set_default_response (Gtk::RESPONSE_ACCEPT);
150 }
151
152 void
153 EditNoteDialog::done (int r)
154 {
155         if (r != RESPONSE_ACCEPT) {
156                 return;
157         }
158
159         /* These calls mean that if a value is entered using the keyboard
160            it will be returned by the get_value_as_int()s below.
161         */
162         _channel.update ();
163         _pitch.update ();
164         _velocity.update ();
165
166         _region_view->start_note_diff_command (_("edit note"));
167
168         bool had_change = false;
169
170         if (!_channel_all.get_sensitive() || _channel_all.get_active ()) {
171                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
172                         if (_channel.get_value_as_int() - 1 != (*i)->note()->channel()) {
173                                 _region_view->change_note_channel (*i, _channel.get_value_as_int () - 1);
174                                 had_change = true;
175                         }
176                 }
177         }
178
179         if (!_pitch_all.get_sensitive() || _pitch_all.get_active ()) {
180                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
181                         if (_pitch.get_value_as_int() != (*i)->note()->note()) {
182                                 _region_view->change_note_note (*i, _pitch.get_value_as_int ());
183                                 had_change = true;
184                         }
185                 }
186         }
187
188         if (!_velocity_all.get_sensitive() || _velocity_all.get_active ()) {
189                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
190                         if (_velocity.get_value_as_int() != (*i)->note()->velocity()) {
191                                 _region_view->change_note_velocity (*i, _velocity.get_value_as_int ());
192                                 had_change = true;
193                         }
194                 }
195         }
196
197         Evoral::Beats const t = _region_view->source_relative_time_converter().from
198                 (_time_clock.current_time() - (_region_view->region()->position() - _region_view->region()->start()));
199
200         if (!_time_all.get_sensitive() || _time_all.get_active ()) {
201                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
202                         if (t != (*i)->note()->time()) {
203                                 _region_view->change_note_time (*i, t);
204                                 had_change = true;
205                         }
206                 }
207         }
208
209         Evoral::Beats const d = _region_view->region_relative_time_converter().from (_length_clock.current_duration ());
210
211         if (!_length_all.get_sensitive() || _length_all.get_active ()) {
212                 for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
213                         if (d != (*i)->note()->length()) {
214                                 _region_view->change_note_length (*i, d);
215                                 had_change = true;
216                         }
217                 }
218         }
219
220         if (!had_change) {
221                 _region_view->abort_command ();
222         }
223
224         _region_view->apply_diff ();
225
226         for (set<NoteBase*>::iterator i = _events.begin(); i != _events.end(); ++i) {
227                 (*i)->set_selected ((*i)->selected()); // change color
228         }
229 }