Merge branch 'cairocanvas'
[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         gint64 now;
261         now = g_get_monotonic_time (); // microseconds
262
263         if (last_tap > 0) {
264                 double interval, bpm;
265                 static const double decay = 0.5;
266
267                 interval = (now - last_tap) * 1.0e-6;
268                 if (interval <= 6.0) {
269                         // >= 10 bpm, say
270                         if (average_interval > 0) {
271                                 average_interval = interval * decay
272                                         + average_interval * (1.0-decay);
273                         } else {
274                                 average_interval = interval;
275                         }
276
277                         bpm = 60.0 / average_interval;
278                         bpm_spinner.set_value (bpm);
279                 } else {
280                         average_interval = 0;
281                 }
282         } else {
283                 average_interval = 0;
284         }
285         last_tap = now;
286 }
287
288 MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string&)
289         : ArdourDialog (_("New Meter"))
290 {
291         Timecode::BBT_Time when;
292         frame = map.round_to_bar(frame,0);
293         Meter meter (map.meter_at(frame));
294
295         map.bbt_time (frame, when);
296         init (when, meter.divisions_per_bar(), meter.note_divisor(), true);
297 }
298
299 MeterDialog::MeterDialog (MeterSection& section, const string&)
300         : ArdourDialog (_("Edit Meter"))
301 {
302         init (section.start(), section.divisions_per_bar(), section.note_divisor(), section.movable());
303 }
304
305 void
306 MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, bool movable)
307 {
308         char buf[64];
309         vector<string> strings;
310         NoteTypes::iterator x;
311
312         snprintf (buf, sizeof (buf), "%.2f", bpb);
313         bpb_entry.set_text (buf);
314         bpb_entry.select_region (0, -1);
315
316         note_types.insert (make_pair (_("whole"), 1.0));
317         strings.push_back (_("whole"));
318         note_types.insert (make_pair (_("second"), 2.0));
319         strings.push_back (_("second"));
320         note_types.insert (make_pair (_("third"), 3.0));
321         strings.push_back (_("third"));
322         note_types.insert (make_pair (_("quarter"), 4.0));
323         strings.push_back (_("quarter"));
324         note_types.insert (make_pair (_("eighth"), 8.0));
325         strings.push_back (_("eighth"));
326         note_types.insert (make_pair (_("sixteenth"), 16.0));
327         strings.push_back (_("sixteenth"));
328         note_types.insert (make_pair (_("thirty-second"), 32.0));
329         strings.push_back (_("thirty-second"));
330         note_types.insert (make_pair (_("sixty-fourth"), 64.0));
331         strings.push_back (_("sixty-fourth"));
332         note_types.insert (make_pair (_("one-hundred-twenty-eighth"), 128.0));
333         strings.push_back (_("one-hundred-twenty-eighth"));
334
335         set_popdown_strings (note_type, strings);
336
337         for (x = note_types.begin(); x != note_types.end(); ++x) {
338                 if (x->second == divisor) {
339                         note_type.set_active_text (x->first);
340                         break;
341                 }
342         }
343         
344         if (x == note_types.end()) {
345                 note_type.set_active_text (strings[3]); // "quarter"
346         }
347
348         Label* note_label = manage (new Label (_("Note value:"), ALIGN_LEFT, ALIGN_CENTER));
349         Label* bpb_label = manage (new Label (_("Beats per bar:"), ALIGN_LEFT, ALIGN_CENTER));
350         Table* table = manage (new Table (3, 2));
351         table->set_spacings (6);
352
353         table->attach (*bpb_label, 0, 1, 0, 1, FILL|EXPAND, FILL|EXPAND);
354         table->attach (bpb_entry, 1, 2, 0, 1, FILL|EXPAND, FILL|EXPAND);
355         table->attach (*note_label, 0, 1, 1, 2, FILL|EXPAND, FILL|EXPAND);
356         table->attach (note_type, 1, 2, 1, 2, FILL|EXPAND, SHRINK);
357
358         if (movable) {
359                 char buf[64];
360
361                 snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
362                 when_bar_entry.set_text (buf);
363
364                 Label* when_label = manage (new Label(_("Meter begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
365
366                 table->attach (*when_label, 0, 1, 2, 3, FILL | EXPAND, FILL | EXPAND);
367                 table->attach (when_bar_entry, 1, 2, 2, 3, FILL | EXPAND, FILL | EXPAND);
368         } else {
369                 when_bar_entry.set_text ("0");
370         }
371
372         get_vbox()->set_border_width (12);
373         get_vbox()->pack_start (*table, false, false);
374
375         add_button (Stock::CANCEL, RESPONSE_CANCEL);
376         add_button (Stock::APPLY, RESPONSE_ACCEPT);
377         set_response_sensitive (RESPONSE_ACCEPT, false);
378         set_default_response (RESPONSE_ACCEPT);
379
380         get_vbox()->show_all ();
381
382         set_name ("MetricDialog");
383         bpb_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
384         bpb_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
385         bpb_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
386         when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
387         when_bar_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
388         when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
389         note_type.signal_changed().connect (sigc::mem_fun (*this, &MeterDialog::note_type_change));
390 }
391
392 bool
393 MeterDialog::entry_key_press (GdkEventKey* ev)
394 {
395
396         switch (ev->keyval) {
397
398         case GDK_0:
399         case GDK_1:
400         case GDK_2:
401         case GDK_3:
402         case GDK_4:
403         case GDK_5:
404         case GDK_6:
405         case GDK_7:
406         case GDK_8:
407         case GDK_9:
408         case GDK_KP_0:
409         case GDK_KP_1:
410         case GDK_KP_2:
411         case GDK_KP_3:
412         case GDK_KP_4:
413         case GDK_KP_5:
414         case GDK_KP_6:
415         case GDK_KP_7:
416         case GDK_KP_8:
417         case GDK_KP_9:
418         case GDK_period:
419         case GDK_comma:
420         case  GDK_KP_Delete:
421         case  GDK_KP_Enter:
422         case  GDK_Delete:
423         case  GDK_BackSpace:
424         case  GDK_Escape:
425         case  GDK_Return:
426         case  GDK_Home:
427         case  GDK_End:
428         case  GDK_Left:
429         case  GDK_Right:
430         case  GDK_Num_Lock:
431         case  GDK_Tab:
432                 return FALSE;
433         default:
434                 break;
435         }
436
437         return TRUE;
438 }
439
440 bool
441 MeterDialog::entry_key_release (GdkEventKey*)
442 {
443         if (when_bar_entry.get_text() != "" && bpb_entry.get_text() != "") {
444                 set_response_sensitive (RESPONSE_ACCEPT, true);
445         } else {
446                 set_response_sensitive (RESPONSE_ACCEPT, false);
447         }
448         return false;
449 }
450
451 void
452 MeterDialog::note_type_change ()
453 {
454         set_response_sensitive (RESPONSE_ACCEPT, true);
455 }
456
457 double
458 MeterDialog::get_bpb ()
459 {
460         double bpb = 0;
461
462         if (sscanf (bpb_entry.get_text().c_str(), "%lf", &bpb) != 1) {
463                 return 0;
464         }
465
466         return bpb;
467 }
468
469 double
470 MeterDialog::get_note_type ()
471 {
472         NoteTypes::iterator x = note_types.find (note_type.get_active_text());
473         
474         if (x == note_types.end()) {
475                 error << string_compose(_("incomprehensible meter note type (%1)"), note_type.get_active_text()) << endmsg;
476                 return 0;
477         }
478
479         return x->second;
480 }
481
482 bool
483 MeterDialog::get_bbt_time (Timecode::BBT_Time& requested)
484 {
485         if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
486                 return false;
487         }
488
489         requested.beats = 1;
490         requested.ticks = 0;
491
492         return true;
493 }