rework tempo dialog to (a) allow selection of pulse note type (b) avoid awful kludge to get note type from the combobox; show pulse note type in tempo markers

git-svn-id: svn://localhost/ardour2/branches/3.0@11027 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-12-20 16:29:44 +00:00
parent 7dffe671da
commit 6227b5d473
3 changed files with 78 additions and 83 deletions

View File

@ -88,7 +88,7 @@ Editor::draw_metric_marks (const Metrics& metrics)
metric_marks.push_back (new MeterMarker (*this, *meter_group, ARDOUR_UI::config()->canvasvar_MeterMarker.get(), buf, metric_marks.push_back (new MeterMarker (*this, *meter_group, ARDOUR_UI::config()->canvasvar_MeterMarker.get(), buf,
*(const_cast<MeterSection*>(ms)))); *(const_cast<MeterSection*>(ms))));
} else if ((ts = dynamic_cast<const TempoSection*>(*i)) != 0) { } else if ((ts = dynamic_cast<const TempoSection*>(*i)) != 0) {
snprintf (buf, sizeof (buf), "%.2f", ts->beats_per_minute()); snprintf (buf, sizeof (buf), "%.2f/%.0f", ts->beats_per_minute(), ts->note_type());
metric_marks.push_back (new TempoMarker (*this, *tempo_group, ARDOUR_UI::config()->canvasvar_TempoMarker.get(), buf, metric_marks.push_back (new TempoMarker (*this, *tempo_group, ARDOUR_UI::config()->canvasvar_TempoMarker.get(), buf,
*(const_cast<TempoSection*>(ts)))); *(const_cast<TempoSection*>(ts))));
} }

View File

@ -34,13 +34,12 @@ using namespace ARDOUR;
using namespace PBD; using namespace PBD;
TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string & action) TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string & action)
: ArdourDialog (_("New Tempo")), : ArdourDialog (_("New Tempo"))
bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0), , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
bpm_spinner (bpm_adjustment), , bpm_spinner (bpm_adjustment)
ok_button (action), , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
cancel_button (_("Cancel")), , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER), , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
{ {
Timecode::BBT_Time when; Timecode::BBT_Time when;
Tempo tempo (map.tempo_at (frame)); Tempo tempo (map.tempo_at (frame));
@ -50,13 +49,12 @@ TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string & action
} }
TempoDialog::TempoDialog (TempoSection& section, const string & action) TempoDialog::TempoDialog (TempoSection& section, const string & action)
: ArdourDialog ("Edit Tempo"), : ArdourDialog ("Edit Tempo")
bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0), , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
bpm_spinner (bpm_adjustment), , bpm_spinner (bpm_adjustment)
ok_button (action), , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
cancel_button (_("Cancel")), , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER), , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
{ {
init (section.start(), section.beats_per_minute(), section.note_type(), section.movable()); init (section.start(), section.beats_per_minute(), section.note_type(), section.movable());
} }
@ -64,47 +62,57 @@ TempoDialog::TempoDialog (TempoSection& section, const string & action)
void void
TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, bool movable) TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, bool movable)
{ {
vector<string> strings;
NoteTypes::iterator x;
bpm_spinner.set_numeric (true); bpm_spinner.set_numeric (true);
bpm_spinner.set_digits (2); bpm_spinner.set_digits (2);
bpm_spinner.set_wrap (true); bpm_spinner.set_wrap (true);
bpm_spinner.set_value (bpm); bpm_spinner.set_value (bpm);
strings.push_back (_("whole (1)")); note_types.insert (make_pair (_("whole"), 1.0));
strings.push_back (_("second (2)")); strings.push_back (_("whole"));
strings.push_back (_("third (3)")); note_types.insert (make_pair (_("second"), 2.0));
strings.push_back (_("quarter (4)")); strings.push_back (_("second"));
strings.push_back (_("eighth (8)")); note_types.insert (make_pair (_("third"), 3.0));
strings.push_back (_("sixteenth (16)")); strings.push_back (_("third"));
strings.push_back (_("thirty-second (32)")); note_types.insert (make_pair (_("quarter"), 4.0));
strings.push_back (_("quarter"));
note_types.insert (make_pair (_("eighth"), 8.0));
strings.push_back (_("eighth"));
note_types.insert (make_pair (_("thirty-second"), 32.0));
strings.push_back (_("thirty-second"));
note_types.insert (make_pair (_("sixty-fourth"), 64.0));
strings.push_back (_("sixty-fourth"));
note_types.insert (make_pair (_("one-hundred-twenty-eighth"), 128.0));
strings.push_back (_("one-hundred-twenty-eighth"));
set_popdown_strings (note_types, strings); set_popdown_strings (pulse_selector, strings);
if (note_type == 1.0f) { for (x = note_types.begin(); x != note_types.end(); ++x) {
note_types.set_active_text (_("whole (1)")); if (x->second == note_type) {
} else if (note_type == 2.0f) { pulse_selector.set_active_text (x->first);
note_types.set_active_text (_("second (2)")); }
} else if (note_type == 3.0f) {
note_types.set_active_text (_("third (3)"));
} else if (note_type == 4.0f) {
note_types.set_active_text (_("quarter (4)"));
} else if (note_type == 8.0f) {
note_types.set_active_text (_("eighth (8)"));
} else if (note_type == 16.0f) {
note_types.set_active_text (_("sixteenth (16)"));
} else if (note_type == 32.0f) {
note_types.set_active_text (_("thirty-second (32)"));
} else {
note_types.set_active_text (_("quarter (4)"));
} }
Table* table = manage (new Table (3, 3)); if (x == note_types.end()) {
pulse_selector.set_active_text (strings[3]); // "quarter"
}
Table* table = manage (new Table (5, 5));
table->set_spacings (6); table->set_spacings (6);
table->set_homogeneous (false);
Label* bpm_label = manage (new Label(_("Beats per minute:"), ALIGN_LEFT, ALIGN_CENTER)); Label* bpm_label = manage (new Label(_("Beats per minute:"), ALIGN_LEFT, ALIGN_CENTER));
table->attach (*bpm_label, 0, 2, 0, 1); table->attach (*bpm_label, 0, 1, 0, 1);
table->attach (bpm_spinner, 2, 3, 0, 1); table->attach (bpm_spinner, 1, 5, 0, 1);
table->attach (pulse_selector_label, 0, 1, 1, 2);
table->attach (pulse_selector, 1, 5, 1, 2);
if (movable) { if (movable) {
char buf[64];
snprintf (buf, sizeof (buf), "%" PRIu32, when.bars); snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
when_bar_entry.set_text (buf); when_bar_entry.set_text (buf);
snprintf (buf, sizeof (buf), "%" PRIu32, when.beats); snprintf (buf, sizeof (buf), "%" PRIu32, when.beats);
@ -113,17 +121,20 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
when_bar_entry.set_name ("MetricEntry"); when_bar_entry.set_name ("MetricEntry");
when_beat_entry.set_name ("MetricEntry"); when_beat_entry.set_name ("MetricEntry");
when_bar_entry.set_width_chars(4);
when_beat_entry.set_width_chars (4);
when_bar_label.set_name ("MetricLabel"); when_bar_label.set_name ("MetricLabel");
when_beat_label.set_name ("MetricLabel"); when_beat_label.set_name ("MetricLabel");
table->attach (when_bar_label, 1, 2, 2, 3); table->attach (when_bar_label, 1, 2, 2, 3, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
table->attach (when_bar_entry, 2, 3, 2, 3); table->attach (when_bar_entry, 2, 3, 2, 3, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
table->attach (when_beat_label, 1, 2, 1, 2); table->attach (when_beat_label, 3, 4, 2, 3, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
table->attach (when_beat_entry, 2, 3, 1, 2); table->attach (when_beat_entry, 4, 5, 2, 3, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER)); Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER));
table->attach (*when_label, 0, 1, 1, 2); table->attach (*when_label, 0, 1, 2, 3);
} }
get_vbox()->set_border_width (12); get_vbox()->set_border_width (12);
@ -147,7 +158,7 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false); 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_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); 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)); pulse_selector.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::pulse_change));
} }
void void
@ -207,42 +218,25 @@ TempoDialog::get_bbt_time (Timecode::BBT_Time& requested)
double double
TempoDialog::get_note_type () TempoDialog::get_note_type ()
{ {
double note_type = 0; NoteTypes::iterator x = note_types.find (pulse_selector.get_active_text());
vector<string>::iterator i;
string text = note_types.get_active_text();
for (i = strings.begin(); i != strings.end(); ++i) { if (x == note_types.end()) {
if (text == *i) { error << string_compose(_("incomprehensible pulse note type (%1)"), pulse_selector.get_active_text()) << endmsg;
if (sscanf (text.c_str(), "%*[^0-9]%lf", &note_type) != 1) {
error << string_compose(_("garbaged note type entry (%1)"), text) << endmsg;
return 0;
} else {
break;
}
}
}
if (i == strings.end()) {
if (sscanf (text.c_str(), "%lf", &note_type) != 1) {
error << string_compose(_("incomprehensible note type entry (%1)"), text) << endmsg;
return 0; return 0;
} }
}
return note_type; return x->second;
} }
void void
TempoDialog::note_types_change () TempoDialog::pulse_change ()
{ {
set_response_sensitive (RESPONSE_ACCEPT, true); set_response_sensitive (RESPONSE_ACCEPT, true);
} }
MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string & action) MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string & action)
: ArdourDialog ("New Meter"), : ArdourDialog ("New Meter")
ok_button (action),
cancel_button (_("Cancel"))
{ {
Timecode::BBT_Time when; Timecode::BBT_Time when;
frame = map.round_to_bar(frame,0); frame = map.round_to_bar(frame,0);
@ -253,9 +247,7 @@ MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string & action
} }
MeterDialog::MeterDialog (MeterSection& section, const string & action) MeterDialog::MeterDialog (MeterSection& section, const string & action)
: ArdourDialog ("Edit Meter"), : ArdourDialog ("Edit Meter")
ok_button (action),
cancel_button (_("Cancel"))
{ {
init (section.start(), section.divisions_per_bar(), section.note_divisor(), section.movable()); init (section.start(), section.divisions_per_bar(), section.note_divisor(), section.movable());
} }
@ -263,6 +255,8 @@ MeterDialog::MeterDialog (MeterSection& section, const string & action)
void void
MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double note_type, bool movable) MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double note_type, bool movable)
{ {
char buf[64];
snprintf (buf, sizeof (buf), "%.2f", bpb); snprintf (buf, sizeof (buf), "%.2f", bpb);
bpb_entry.set_text (buf); bpb_entry.set_text (buf);
bpb_entry.select_region (0, -1); bpb_entry.select_region (0, -1);
@ -306,6 +300,8 @@ MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double note_type,
table->attach (note_types, 1, 2, 1, 2, FILL|EXPAND, SHRINK); table->attach (note_types, 1, 2, 1, 2, FILL|EXPAND, SHRINK);
if (movable) { if (movable) {
char buf[64];
snprintf (buf, sizeof (buf), "%" PRIu32, when.bars); snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
when_bar_entry.set_text (buf); when_bar_entry.set_text (buf);
when_bar_entry.set_name ("MetricEntry"); when_bar_entry.set_name ("MetricEntry");

View File

@ -51,19 +51,19 @@ private:
bool bpm_button_press (GdkEventButton* ); bool bpm_button_press (GdkEventButton* );
bool bpm_button_release (GdkEventButton* ); bool bpm_button_release (GdkEventButton* );
bool entry_key_release (GdkEventKey* ); bool entry_key_release (GdkEventKey* );
void note_types_change (); void pulse_change ();
Gtk::ComboBoxText note_types; typedef std::map<std::string,float> NoteTypes;
std::vector<std::string> strings; NoteTypes note_types;
Gtk::ComboBoxText pulse_selector;
Gtk::Adjustment bpm_adjustment; Gtk::Adjustment bpm_adjustment;
Gtk::SpinButton bpm_spinner; Gtk::SpinButton bpm_spinner;
Gtk::Button ok_button;
Gtk::Button cancel_button;
Gtk::Entry when_bar_entry; Gtk::Entry when_bar_entry;
Gtk::Entry when_beat_entry; Gtk::Entry when_beat_entry;
Gtk::Label when_bar_label; Gtk::Label when_bar_label;
Gtk::Label when_beat_label; Gtk::Label when_beat_label;
char buf[64]; Gtk::Label pulse_selector_label;
}; };
class MeterDialog : public ArdourDialog class MeterDialog : public ArdourDialog
@ -89,7 +89,6 @@ private:
Gtk::Button ok_button; Gtk::Button ok_button;
Gtk::Button cancel_button; Gtk::Button cancel_button;
Gtk::Entry when_bar_entry; Gtk::Entry when_bar_entry;
char buf[64];
}; };
#endif /* __ardour_gtk_tempo_dialog_h__ */ #endif /* __ardour_gtk_tempo_dialog_h__ */