Add 'Tap tempo' button to 'Edit tempo' dialogue
[ardour.git] / gtk2_ardour / tempo_dialog.cc
1 /*
2     Copyright (C) 2000-2007 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 <cstdio> // for snprintf, grrr
21
22 #include <gtkmm/stock.h>
23
24 #include "gtkmm2ext/utils.h"
25
26 #include "ardour/rc_configuration.h"
27
28 #include "tempo_dialog.h"
29
30 #include "i18n.h"
31
32 using namespace std;
33 using namespace Gtk;
34 using namespace Gtkmm2ext;
35 using namespace ARDOUR;
36 using namespace PBD;
37
38 TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string&)
39         : ArdourDialog (_("New Tempo"))
40         , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
41         , bpm_spinner (bpm_adjustment)
42         , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
43         , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
44         , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
45         , tap_tempo_button (_("Tap tempo"))
46 {
47         Timecode::BBT_Time when;
48         Tempo tempo (map.tempo_at (frame));
49         map.bbt_time (frame, when);
50
51         init (when, tempo.beats_per_minute(), tempo.note_type(), true);
52 }
53
54 TempoDialog::TempoDialog (TempoSection& section, const string&)
55         : ArdourDialog (_("Edit Tempo"))
56         , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
57         , bpm_spinner (bpm_adjustment)
58         , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
59         , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
60         , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
61         , tap_tempo_button (_("Tap tempo"))
62 {
63         init (section.start(), section.beats_per_minute(), section.note_type(), section.movable());
64 }
65
66 void
67 TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, bool movable)
68 {
69         vector<string> strings;
70         NoteTypes::iterator x;
71
72         bpm_spinner.set_numeric (true);
73         bpm_spinner.set_digits (2);
74         bpm_spinner.set_wrap (true);
75         bpm_spinner.set_value (bpm);
76
77         note_types.insert (make_pair (_("whole"), 1.0));
78         strings.push_back (_("whole"));
79         note_types.insert (make_pair (_("second"), 2.0));
80         strings.push_back (_("second"));
81         note_types.insert (make_pair (_("third"), 3.0));
82         strings.push_back (_("third"));
83         note_types.insert (make_pair (_("quarter"), 4.0));
84         strings.push_back (_("quarter"));
85         note_types.insert (make_pair (_("eighth"), 8.0));
86         strings.push_back (_("eighth"));
87         note_types.insert (make_pair (_("sixteenth"), 16.0));
88         strings.push_back (_("sixteenth"));
89         note_types.insert (make_pair (_("thirty-second"), 32.0));
90         strings.push_back (_("thirty-second"));
91         note_types.insert (make_pair (_("sixty-fourth"), 64.0));
92         strings.push_back (_("sixty-fourth"));
93         note_types.insert (make_pair (_("one-hundred-twenty-eighth"), 128.0));
94         strings.push_back (_("one-hundred-twenty-eighth"));
95
96         set_popdown_strings (pulse_selector, strings);
97
98         for (x = note_types.begin(); x != note_types.end(); ++x) {
99                 if (x->second == note_type) {
100                         pulse_selector.set_active_text (x->first);
101                         break;
102                 }
103         }
104
105         if (x == note_types.end()) {
106                 pulse_selector.set_active_text (strings[3]); // "quarter"
107         }
108         
109         Table* table;
110
111         if (Config->get_allow_non_quarter_pulse()) {
112                 table = manage (new Table (5, 5));
113         } else {
114                 table = manage (new Table (5, 4));
115         }
116
117         table->set_spacings (6);
118         table->set_homogeneous (false);
119
120         int row;
121         Label* bpm_label = manage (new Label(_("Beats per minute:"), ALIGN_LEFT, ALIGN_CENTER));
122         table->attach (*bpm_label, 0, 1, 0, 1);
123         table->attach (bpm_spinner, 1, 5, 0, 1);
124
125         if (Config->get_allow_non_quarter_pulse()) {
126                 table->attach (pulse_selector_label, 0, 1, 1, 2);
127                 table->attach (pulse_selector, 1, 5, 1, 2);
128                 row = 2;
129         } else {
130                 row = 1;
131         }
132
133         if (movable) {
134                 char buf[64];
135
136                 snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
137                 when_bar_entry.set_text (buf);
138                 snprintf (buf, sizeof (buf), "%" PRIu32, when.beats);
139                 when_beat_entry.set_text (buf);
140
141                 when_bar_entry.set_width_chars(4);
142                 when_beat_entry.set_width_chars (4);
143
144                 when_bar_label.set_name ("MetricLabel");
145                 when_beat_label.set_name ("MetricLabel");
146
147                 table->attach (when_bar_label, 1, 2, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
148                 table->attach (when_bar_entry, 2, 3, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
149
150                 table->attach (when_beat_label, 3, 4, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
151                 table->attach (when_beat_entry, 4, 5, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
152
153                 Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER));
154                 table->attach (*when_label, 0, 1, row, row+1);
155         }
156
157         get_vbox()->set_border_width (12);
158         get_vbox()->pack_end (*table);
159         table->show_all ();
160
161         add_button (Stock::CANCEL, RESPONSE_CANCEL);
162         add_button (Stock::APPLY, RESPONSE_ACCEPT);
163         set_response_sensitive (RESPONSE_ACCEPT, false);
164         set_default_response (RESPONSE_ACCEPT);
165
166         bpm_spinner.show ();
167         tap_tempo_button.show ();
168         get_vbox()->pack_end (tap_tempo_button);
169
170         set_name ("MetricDialog");
171
172         bpm_spinner.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
173         bpm_spinner.signal_button_press_event().connect (sigc::mem_fun (*this, &TempoDialog::bpm_button_press), false);
174         bpm_spinner.signal_button_release_event().connect (sigc::mem_fun (*this, &TempoDialog::bpm_button_release), false);
175         bpm_spinner.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::bpm_changed));
176         when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
177         when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false);
178         when_beat_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
179         when_beat_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false);
180         pulse_selector.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::pulse_change));
181         tap_tempo_button.signal_clicked().connect (sigc::mem_fun (*this, &TempoDialog::tap_tempo));
182 }
183
184 void
185 TempoDialog::bpm_changed ()
186 {
187         set_response_sensitive (RESPONSE_ACCEPT, true);
188 }
189
190 bool
191 TempoDialog::bpm_button_press (GdkEventButton*)
192 {
193         return false;
194 }
195
196 bool
197 TempoDialog::bpm_button_release (GdkEventButton*)
198 {
199         /* the value has been modified, accept should work now */
200
201         set_response_sensitive (RESPONSE_ACCEPT, true);
202         return false;
203 }
204
205 bool
206 TempoDialog::entry_key_release (GdkEventKey*)
207 {
208         if (when_beat_entry.get_text() != "" && when_bar_entry.get_text() != "") {
209                 set_response_sensitive (RESPONSE_ACCEPT, true);
210         } else {
211                 set_response_sensitive (RESPONSE_ACCEPT, false);
212         }
213         return false;
214 }
215
216 double
217 TempoDialog::get_bpm ()
218 {
219         return bpm_spinner.get_value ();
220 }
221
222 bool
223 TempoDialog::get_bbt_time (Timecode::BBT_Time& requested)
224 {
225         if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
226                 return false;
227         }
228
229         if (sscanf (when_beat_entry.get_text().c_str(), "%" PRIu32, &requested.beats) != 1) {
230                 return false;
231         }
232
233         requested.ticks = 0;
234
235         return true;
236 }
237
238 double
239 TempoDialog::get_note_type ()
240 {
241         NoteTypes::iterator x = note_types.find (pulse_selector.get_active_text());
242         
243         if (x == note_types.end()) {
244                 error << string_compose(_("incomprehensible pulse note type (%1)"), pulse_selector.get_active_text()) << endmsg;
245                 return 0;
246         }
247
248         return x->second;
249 }
250
251 void
252 TempoDialog::pulse_change ()
253 {
254         set_response_sensitive (RESPONSE_ACCEPT, true);
255 }
256
257 void
258 TempoDialog::tap_tempo ()
259 {
260         struct timeval now;
261         gettimeofday (&now, NULL);
262
263         if (last_tap.tv_sec >= 0 || last_tap.tv_usec > 0) {
264                 struct timeval diff;
265                 double interval, bpm;
266                 timersub (&now, &last_tap, &diff);
267                 interval = diff.tv_sec + diff.tv_usec * 1.0e-6;
268         
269                 bpm = 60.0 / interval;
270                 if (bpm >= 20) {
271                         bpm_spinner.set_value (bpm);
272                 }
273         }
274         last_tap = now;
275
276         
277 }
278
279 MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string&)
280         : ArdourDialog (_("New Meter"))
281 {
282         Timecode::BBT_Time when;
283         frame = map.round_to_bar(frame,0);
284         Meter meter (map.meter_at(frame));
285
286         map.bbt_time (frame, when);
287         init (when, meter.divisions_per_bar(), meter.note_divisor(), true);
288 }
289
290 MeterDialog::MeterDialog (MeterSection& section, const string&)
291         : ArdourDialog (_("Edit Meter"))
292 {
293         init (section.start(), section.divisions_per_bar(), section.note_divisor(), section.movable());
294 }
295
296 void
297 MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, bool movable)
298 {
299         char buf[64];
300         vector<string> strings;
301         NoteTypes::iterator x;
302
303         snprintf (buf, sizeof (buf), "%.2f", bpb);
304         bpb_entry.set_text (buf);
305         bpb_entry.select_region (0, -1);
306
307         note_types.insert (make_pair (_("whole"), 1.0));
308         strings.push_back (_("whole"));
309         note_types.insert (make_pair (_("second"), 2.0));
310         strings.push_back (_("second"));
311         note_types.insert (make_pair (_("third"), 3.0));
312         strings.push_back (_("third"));
313         note_types.insert (make_pair (_("quarter"), 4.0));
314         strings.push_back (_("quarter"));
315         note_types.insert (make_pair (_("eighth"), 8.0));
316         strings.push_back (_("eighth"));
317         note_types.insert (make_pair (_("sixteenth"), 16.0));
318         strings.push_back (_("sixteenth"));
319         note_types.insert (make_pair (_("thirty-second"), 32.0));
320         strings.push_back (_("thirty-second"));
321         note_types.insert (make_pair (_("sixty-fourth"), 64.0));
322         strings.push_back (_("sixty-fourth"));
323         note_types.insert (make_pair (_("one-hundred-twenty-eighth"), 128.0));
324         strings.push_back (_("one-hundred-twenty-eighth"));
325
326         set_popdown_strings (note_type, strings);
327
328         for (x = note_types.begin(); x != note_types.end(); ++x) {
329                 if (x->second == divisor) {
330                         note_type.set_active_text (x->first);
331                         break;
332                 }
333         }
334         
335         if (x == note_types.end()) {
336                 note_type.set_active_text (strings[3]); // "quarter"
337         }
338
339         Label* note_label = manage (new Label (_("Note value:"), ALIGN_LEFT, ALIGN_CENTER));
340         Label* bpb_label = manage (new Label (_("Beats per bar:"), ALIGN_LEFT, ALIGN_CENTER));
341         Table* table = manage (new Table (3, 2));
342         table->set_spacings (6);
343
344         table->attach (*bpb_label, 0, 1, 0, 1, FILL|EXPAND, FILL|EXPAND);
345         table->attach (bpb_entry, 1, 2, 0, 1, FILL|EXPAND, FILL|EXPAND);
346         table->attach (*note_label, 0, 1, 1, 2, FILL|EXPAND, FILL|EXPAND);
347         table->attach (note_type, 1, 2, 1, 2, FILL|EXPAND, SHRINK);
348
349         if (movable) {
350                 char buf[64];
351
352                 snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
353                 when_bar_entry.set_text (buf);
354
355                 Label* when_label = manage (new Label(_("Meter begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
356
357                 table->attach (*when_label, 0, 1, 2, 3, FILL | EXPAND, FILL | EXPAND);
358                 table->attach (when_bar_entry, 1, 2, 2, 3, FILL | EXPAND, FILL | EXPAND);
359         } else {
360                 when_bar_entry.set_text ("0");
361         }
362
363         get_vbox()->set_border_width (12);
364         get_vbox()->pack_start (*table, false, false);
365
366         add_button (Stock::CANCEL, RESPONSE_CANCEL);
367         add_button (Stock::APPLY, RESPONSE_ACCEPT);
368         set_response_sensitive (RESPONSE_ACCEPT, false);
369         set_default_response (RESPONSE_ACCEPT);
370
371         get_vbox()->show_all ();
372
373         set_name ("MetricDialog");
374         bpb_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
375         bpb_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
376         bpb_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
377         when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
378         when_bar_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
379         when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
380         note_type.signal_changed().connect (sigc::mem_fun (*this, &MeterDialog::note_type_change));
381 }
382
383 bool
384 MeterDialog::entry_key_press (GdkEventKey* ev)
385 {
386
387         switch (ev->keyval) {
388
389         case GDK_0:
390         case GDK_1:
391         case GDK_2:
392         case GDK_3:
393         case GDK_4:
394         case GDK_5:
395         case GDK_6:
396         case GDK_7:
397         case GDK_8:
398         case GDK_9:
399         case GDK_KP_0:
400         case GDK_KP_1:
401         case GDK_KP_2:
402         case GDK_KP_3:
403         case GDK_KP_4:
404         case GDK_KP_5:
405         case GDK_KP_6:
406         case GDK_KP_7:
407         case GDK_KP_8:
408         case GDK_KP_9:
409         case GDK_period:
410         case GDK_comma:
411         case  GDK_KP_Delete:
412         case  GDK_KP_Enter:
413         case  GDK_Delete:
414         case  GDK_BackSpace:
415         case  GDK_Escape:
416         case  GDK_Return:
417         case  GDK_Home:
418         case  GDK_End:
419         case  GDK_Left:
420         case  GDK_Right:
421         case  GDK_Num_Lock:
422         case  GDK_Tab:
423                 return FALSE;
424         default:
425                 break;
426         }
427
428         return TRUE;
429 }
430
431 bool
432 MeterDialog::entry_key_release (GdkEventKey*)
433 {
434         if (when_bar_entry.get_text() != "" && bpb_entry.get_text() != "") {
435                 set_response_sensitive (RESPONSE_ACCEPT, true);
436         } else {
437                 set_response_sensitive (RESPONSE_ACCEPT, false);
438         }
439         return false;
440 }
441
442 void
443 MeterDialog::note_type_change ()
444 {
445         set_response_sensitive (RESPONSE_ACCEPT, true);
446 }
447
448 double
449 MeterDialog::get_bpb ()
450 {
451         double bpb = 0;
452
453         if (sscanf (bpb_entry.get_text().c_str(), "%lf", &bpb) != 1) {
454                 return 0;
455         }
456
457         return bpb;
458 }
459
460 double
461 MeterDialog::get_note_type ()
462 {
463         NoteTypes::iterator x = note_types.find (note_type.get_active_text());
464         
465         if (x == note_types.end()) {
466                 error << string_compose(_("incomprehensible meter note type (%1)"), note_type.get_active_text()) << endmsg;
467                 return 0;
468         }
469
470         return x->second;
471 }
472
473 bool
474 MeterDialog::get_bbt_time (Timecode::BBT_Time& requested)
475 {
476         if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
477                 return false;
478         }
479
480         requested.beats = 1;
481         requested.ticks = 0;
482
483         return true;
484 }