2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 16:54:31 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
#include <cstdio> // for snprintf, grrr
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
#include <gtkmm/stock.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "tempo_dialog.h"
|
2005-09-28 12:22:43 -04:00
|
|
|
#include "utils.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
using namespace std;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-10-05 09:48:09 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string & action)
|
2010-05-02 19:14:43 -04:00
|
|
|
: ArdourDialog (_("New Tempo")),
|
|
|
|
bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0),
|
2007-02-02 15:55:16 -05:00
|
|
|
bpm_spinner (bpm_adjustment),
|
2005-09-25 14:42:24 -04:00
|
|
|
ok_button (action),
|
|
|
|
cancel_button (_("Cancel")),
|
2009-08-20 17:21:07 -04:00
|
|
|
when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER),
|
|
|
|
when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-12-14 13:13:37 -05:00
|
|
|
Timecode::BBT_Time when;
|
2005-09-25 14:42:24 -04:00
|
|
|
Tempo tempo (map.tempo_at (frame));
|
|
|
|
map.bbt_time (frame, when);
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
init (when, tempo.beats_per_minute(), tempo.note_type(), true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-12-22 07:23:54 -05:00
|
|
|
TempoDialog::TempoDialog (TempoSection& section, const string & action)
|
2010-05-02 19:14:43 -04:00
|
|
|
: ArdourDialog ("Edit Tempo"),
|
|
|
|
bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0),
|
2007-02-02 15:55:16 -05:00
|
|
|
bpm_spinner (bpm_adjustment),
|
2005-09-25 14:42:24 -04:00
|
|
|
ok_button (action),
|
|
|
|
cancel_button (_("Cancel")),
|
2009-08-20 17:21:07 -04:00
|
|
|
when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER),
|
|
|
|
when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-01-10 16:20:59 -05:00
|
|
|
init (section.start(), section.beats_per_minute(), section.note_type(), section.movable());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-14 13:13:37 -05:00
|
|
|
TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, bool movable)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-02-02 15:55:16 -05:00
|
|
|
bpm_spinner.set_numeric (true);
|
2008-01-10 16:20:59 -05:00
|
|
|
bpm_spinner.set_digits (2);
|
2007-02-02 15:55:16 -05:00
|
|
|
bpm_spinner.set_wrap (true);
|
|
|
|
bpm_spinner.set_value (bpm);
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
strings.push_back (_("whole (1)"));
|
|
|
|
strings.push_back (_("second (2)"));
|
|
|
|
strings.push_back (_("third (3)"));
|
|
|
|
strings.push_back (_("quarter (4)"));
|
|
|
|
strings.push_back (_("eighth (8)"));
|
|
|
|
strings.push_back (_("sixteenth (16)"));
|
|
|
|
strings.push_back (_("thirty-second (32)"));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-04-15 14:04:23 -04:00
|
|
|
set_popdown_strings (note_types, strings, true);
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
if (note_type == 1.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("whole (1)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 2.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("second (2)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 3.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("third (3)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 4.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("quarter (4)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 8.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("eighth (8)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 16.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("sixteenth (16)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 32.0f) {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("thirty-second (32)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else {
|
2008-01-10 16:20:59 -05:00
|
|
|
note_types.set_active_text (_("quarter (4)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
}
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
Table* table = manage (new Table (3, 3));
|
|
|
|
table->set_spacings (6);
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
Label* bpm_label = manage (new Label(_("Beats per minute:"), ALIGN_LEFT, ALIGN_CENTER));
|
|
|
|
table->attach (*bpm_label, 0, 2, 0, 1);
|
|
|
|
table->attach (bpm_spinner, 2, 3, 0, 1);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (movable) {
|
|
|
|
snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
|
|
|
|
when_bar_entry.set_text (buf);
|
|
|
|
snprintf (buf, sizeof (buf), "%" PRIu32, when.beats);
|
|
|
|
when_beat_entry.set_text (buf);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
when_bar_entry.set_name ("MetricEntry");
|
|
|
|
when_beat_entry.set_name ("MetricEntry");
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
when_bar_label.set_name ("MetricLabel");
|
|
|
|
when_beat_label.set_name ("MetricLabel");
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
table->attach (when_bar_label, 1, 2, 2, 3);
|
|
|
|
table->attach (when_bar_entry, 2, 3, 2, 3);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
table->attach (when_beat_label, 1, 2, 1, 2);
|
|
|
|
table->attach (when_beat_entry, 2, 3, 1, 2);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER));
|
|
|
|
table->attach (*when_label, 0, 1, 1, 2);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
get_vbox()->set_border_width (12);
|
2009-08-20 17:21:07 -04:00
|
|
|
get_vbox()->pack_end (*table);
|
|
|
|
table->show_all ();
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2005-12-08 13:53:43 -05:00
|
|
|
add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
2006-04-24 20:51:30 -04:00
|
|
|
add_button (Stock::APPLY, RESPONSE_ACCEPT);
|
2008-02-01 22:57:35 -05:00
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, false);
|
2006-04-24 20:51:30 -04:00
|
|
|
set_default_response (RESPONSE_ACCEPT);
|
2005-12-08 13:53:43 -05:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
bpm_spinner.show ();
|
2005-12-08 13:53:43 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
set_name ("MetricDialog");
|
2007-02-02 15:55:16 -05:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
bpm_spinner.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
|
|
|
|
bpm_spinner.signal_button_press_event().connect (sigc::mem_fun (*this, &TempoDialog::bpm_button_press), false);
|
|
|
|
bpm_spinner.signal_button_release_event().connect (sigc::mem_fun (*this, &TempoDialog::bpm_button_release), false);
|
2010-05-02 19:14:43 -04:00
|
|
|
bpm_spinner.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::bpm_changed));
|
2009-12-11 18:29:48 -05:00
|
|
|
when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
|
|
|
|
when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false);
|
|
|
|
when_beat_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
|
|
|
|
when_beat_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false);
|
|
|
|
note_types.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::note_types_change));
|
2006-04-24 20:51:30 -04:00
|
|
|
}
|
|
|
|
|
2010-05-02 19:14:43 -04:00
|
|
|
void
|
|
|
|
TempoDialog::bpm_changed ()
|
|
|
|
{
|
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, true);
|
|
|
|
}
|
|
|
|
|
2006-04-26 12:04:04 -04:00
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
TempoDialog::bpm_button_press (GdkEventButton*)
|
2006-04-26 12:04:04 -04:00
|
|
|
{
|
2007-02-02 15:55:16 -05:00
|
|
|
return false;
|
2006-04-26 12:04:04 -04:00
|
|
|
}
|
|
|
|
|
2006-04-24 20:51:30 -04:00
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
TempoDialog::bpm_button_release (GdkEventButton*)
|
2009-10-14 12:10:01 -04:00
|
|
|
{
|
2007-02-02 15:55:16 -05:00
|
|
|
/* the value has been modified, accept should work now */
|
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, true);
|
2006-04-24 20:51:30 -04:00
|
|
|
return false;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-02-17 12:49:38 -05:00
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
TempoDialog::entry_key_release (GdkEventKey*)
|
2009-10-14 12:10:01 -04:00
|
|
|
{
|
2008-02-17 12:49:38 -05:00
|
|
|
if (when_beat_entry.get_text() != "" && when_bar_entry.get_text() != "") {
|
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, true);
|
|
|
|
} else {
|
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, false);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
double
|
2005-09-25 14:42:24 -04:00
|
|
|
TempoDialog::get_bpm ()
|
|
|
|
{
|
2007-02-02 15:55:16 -05:00
|
|
|
return bpm_spinner.get_value ();
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
bool
|
2010-12-14 13:13:37 -05:00
|
|
|
TempoDialog::get_bbt_time (Timecode::BBT_Time& requested)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (sscanf (when_beat_entry.get_text().c_str(), "%" PRIu32, &requested.beats) != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
requested.ticks = 0;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
double
|
|
|
|
TempoDialog::get_note_type ()
|
|
|
|
{
|
|
|
|
double note_type = 0;
|
|
|
|
vector<string>::iterator i;
|
|
|
|
string text = note_types.get_active_text();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
for (i = strings.begin(); i != strings.end(); ++i) {
|
|
|
|
if (text == *i) {
|
|
|
|
if (sscanf (text.c_str(), "%*[^0-9]%lf", ¬e_type) != 1) {
|
|
|
|
error << string_compose(_("garbaged note type entry (%1)"), text) << endmsg;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
if (i == strings.end()) {
|
|
|
|
if (sscanf (text.c_str(), "%lf", ¬e_type) != 1) {
|
|
|
|
error << string_compose(_("incomprehensible note type entry (%1)"), text) << endmsg;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return note_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TempoDialog::note_types_change ()
|
|
|
|
{
|
2008-02-01 22:57:35 -05:00
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, true);
|
2008-01-10 16:20:59 -05:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string & action)
|
2010-05-02 19:14:43 -04:00
|
|
|
: ArdourDialog ("New Meter"),
|
2005-09-25 14:42:24 -04:00
|
|
|
ok_button (action),
|
2009-08-20 17:21:07 -04:00
|
|
|
cancel_button (_("Cancel"))
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-12-14 13:13:37 -05:00
|
|
|
Timecode::BBT_Time when;
|
2009-10-14 12:10:01 -04:00
|
|
|
frame = map.round_to_bar(frame,0);
|
2005-09-25 14:42:24 -04:00
|
|
|
Meter meter (map.meter_at(frame));
|
|
|
|
|
|
|
|
map.bbt_time (frame, when);
|
|
|
|
init (when, meter.beats_per_bar(), meter.note_divisor(), true);
|
|
|
|
}
|
|
|
|
|
2005-12-22 07:23:54 -05:00
|
|
|
MeterDialog::MeterDialog (MeterSection& section, const string & action)
|
2010-05-02 19:14:43 -04:00
|
|
|
: ArdourDialog ("Edit Meter"),
|
2005-09-25 14:42:24 -04:00
|
|
|
ok_button (action),
|
2009-08-20 17:21:07 -04:00
|
|
|
cancel_button (_("Cancel"))
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
init (section.start(), section.beats_per_bar(), section.note_divisor(), section.movable());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-14 13:13:37 -05:00
|
|
|
MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double note_type, bool movable)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
snprintf (buf, sizeof (buf), "%.2f", bpb);
|
|
|
|
bpb_entry.set_text (buf);
|
|
|
|
bpb_entry.select_region (0, -1);
|
|
|
|
|
|
|
|
strings.push_back (_("whole (1)"));
|
|
|
|
strings.push_back (_("second (2)"));
|
|
|
|
strings.push_back (_("third (3)"));
|
|
|
|
strings.push_back (_("quarter (4)"));
|
|
|
|
strings.push_back (_("eighth (8)"));
|
|
|
|
strings.push_back (_("sixteenth (16)"));
|
|
|
|
strings.push_back (_("thirty-second (32)"));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-04-15 14:04:23 -04:00
|
|
|
set_popdown_strings (note_types, strings, true);
|
2005-09-28 12:22:43 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
if (note_type == 1.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("whole (1)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 2.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("second (2)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 3.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("third (3)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 4.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("quarter (4)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 8.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("eighth (8)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 16.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("sixteenth (16)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else if (note_type == 32.0f) {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("thirty-second (32)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
} else {
|
2005-09-28 12:22:43 -04:00
|
|
|
note_types.set_active_text (_("quarter (4)"));
|
2009-08-20 17:21:07 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
Label* note_label = manage (new Label (_("Note value:"), ALIGN_LEFT, ALIGN_CENTER));
|
|
|
|
Label* bpb_label = manage (new Label (_("Beats per bar:"), ALIGN_LEFT, ALIGN_CENTER));
|
|
|
|
Table* table = manage (new Table (3, 2));
|
|
|
|
table->set_spacings (6);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
table->attach (*bpb_label, 0, 1, 0, 1, FILL|EXPAND, FILL|EXPAND);
|
|
|
|
table->attach (bpb_entry, 1, 2, 0, 1, FILL|EXPAND, FILL|EXPAND);
|
|
|
|
table->attach (*note_label, 0, 1, 1, 2, FILL|EXPAND, FILL|EXPAND);
|
|
|
|
table->attach (note_types, 1, 2, 1, 2, FILL|EXPAND, SHRINK);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (movable) {
|
|
|
|
snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
|
|
|
|
when_bar_entry.set_text (buf);
|
|
|
|
when_bar_entry.set_name ("MetricEntry");
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
Label* when_label = manage (new Label(_("Meter begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2009-08-20 17:21:07 -04:00
|
|
|
table->attach (*when_label, 0, 1, 2, 3, FILL | EXPAND, FILL | EXPAND);
|
|
|
|
table->attach (when_bar_entry, 1, 2, 2, 3, FILL | EXPAND, FILL | EXPAND);
|
|
|
|
} else {
|
|
|
|
when_bar_entry.set_text ("0");
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2008-01-10 16:20:59 -05:00
|
|
|
|
|
|
|
get_vbox()->set_border_width (12);
|
2009-08-20 17:21:07 -04:00
|
|
|
get_vbox()->pack_start (*table, false, false);
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
bpb_entry.set_name ("MetricEntry");
|
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
2006-04-24 20:51:30 -04:00
|
|
|
add_button (Stock::APPLY, RESPONSE_ACCEPT);
|
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, false);
|
|
|
|
set_default_response (RESPONSE_ACCEPT);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-08 13:53:43 -05:00
|
|
|
get_vbox()->show_all ();
|
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
set_name ("MetricDialog");
|
2009-12-11 18:29:48 -05:00
|
|
|
bpb_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
|
|
|
|
bpb_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
|
|
|
|
bpb_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
|
|
|
|
when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
|
|
|
|
when_bar_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
|
|
|
|
when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
|
|
|
|
|
|
|
|
note_types.signal_changed().connect (sigc::mem_fun (*this, &MeterDialog::note_types_change));
|
2006-04-24 20:51:30 -04:00
|
|
|
}
|
|
|
|
|
2006-04-26 12:04:04 -04:00
|
|
|
bool
|
2008-02-17 12:49:38 -05:00
|
|
|
MeterDialog::entry_key_press (GdkEventKey* ev)
|
2006-04-26 12:04:04 -04:00
|
|
|
{
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
switch (ev->keyval) {
|
2008-02-01 22:57:35 -05:00
|
|
|
|
|
|
|
case GDK_0:
|
|
|
|
case GDK_1:
|
|
|
|
case GDK_2:
|
|
|
|
case GDK_3:
|
|
|
|
case GDK_4:
|
|
|
|
case GDK_5:
|
|
|
|
case GDK_6:
|
|
|
|
case GDK_7:
|
|
|
|
case GDK_8:
|
|
|
|
case GDK_9:
|
|
|
|
case GDK_KP_0:
|
|
|
|
case GDK_KP_1:
|
|
|
|
case GDK_KP_2:
|
|
|
|
case GDK_KP_3:
|
|
|
|
case GDK_KP_4:
|
|
|
|
case GDK_KP_5:
|
|
|
|
case GDK_KP_6:
|
|
|
|
case GDK_KP_7:
|
|
|
|
case GDK_KP_8:
|
|
|
|
case GDK_KP_9:
|
|
|
|
case GDK_period:
|
|
|
|
case GDK_comma:
|
|
|
|
case GDK_KP_Delete:
|
|
|
|
case GDK_KP_Enter:
|
|
|
|
case GDK_Delete:
|
|
|
|
case GDK_BackSpace:
|
|
|
|
case GDK_Escape:
|
|
|
|
case GDK_Return:
|
|
|
|
case GDK_Home:
|
|
|
|
case GDK_End:
|
|
|
|
case GDK_Left:
|
|
|
|
case GDK_Right:
|
|
|
|
case GDK_Num_Lock:
|
|
|
|
case GDK_Tab:
|
|
|
|
return FALSE;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2006-04-26 12:04:04 -04:00
|
|
|
}
|
|
|
|
|
2006-04-24 20:51:30 -04:00
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
MeterDialog::entry_key_release (GdkEventKey*)
|
2006-04-24 20:51:30 -04:00
|
|
|
{
|
2008-02-17 12:49:38 -05:00
|
|
|
if (when_bar_entry.get_text() != "" && bpb_entry.get_text() != "") {
|
2006-04-24 20:51:30 -04:00
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, true);
|
|
|
|
} else {
|
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, false);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MeterDialog::note_types_change ()
|
|
|
|
{
|
2008-02-01 22:57:35 -05:00
|
|
|
set_response_sensitive (RESPONSE_ACCEPT, true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
MeterDialog::get_bpb ()
|
|
|
|
{
|
|
|
|
double bpb = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (sscanf (bpb_entry.get_text().c_str(), "%lf", &bpb) != 1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bpb;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
double
|
|
|
|
MeterDialog::get_note_type ()
|
|
|
|
{
|
|
|
|
double note_type = 0;
|
2005-12-08 13:53:43 -05:00
|
|
|
vector<string>::iterator i;
|
2005-09-28 12:22:43 -04:00
|
|
|
string text = note_types.get_active_text();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
for (i = strings.begin(); i != strings.end(); ++i) {
|
|
|
|
if (text == *i) {
|
|
|
|
if (sscanf (text.c_str(), "%*[^0-9]%lf", ¬e_type) != 1) {
|
2005-10-06 15:10:57 -04:00
|
|
|
error << string_compose(_("garbaged note type entry (%1)"), text) << endmsg;
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (i == strings.end()) {
|
|
|
|
if (sscanf (text.c_str(), "%lf", ¬e_type) != 1) {
|
2005-10-06 15:10:57 -04:00
|
|
|
error << string_compose(_("incomprehensible note type entry (%1)"), text) << endmsg;
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return note_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-12-14 13:13:37 -05:00
|
|
|
MeterDialog::get_bbt_time (Timecode::BBT_Time& requested)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-17 12:49:38 -05:00
|
|
|
requested.beats = 1;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
requested.ticks = 0;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return true;
|
|
|
|
}
|