Only show user-presets in favorite sidebar
[ardour.git] / gtk2_ardour / tempo_dialog.cc
index 5d06f5ca3c118c1ea4ee6d39bf8a5180d4dc8571..48b54e981f06fba017975689ddff9f7422a195ac 100644 (file)
@@ -26,7 +26,7 @@
 #include "tempo_dialog.h"
 #include "ui_config.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace Gtk;
@@ -34,48 +34,65 @@ using namespace Gtkmm2ext;
 using namespace ARDOUR;
 using namespace PBD;
 
-TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string&)
+TempoDialog::TempoDialog (TempoMap& map, samplepos_t sample, const string&)
        : ArdourDialog (_("New Tempo"))
+       , _map (&map)
+       , _section (0)
        , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
        , bpm_spinner (bpm_adjustment)
-       , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
-       , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
-       , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
+       , end_bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
+       , end_bpm_spinner (end_bpm_adjustment)
+       , _end_bpm_label (_("End Beats per Minute:"), ALIGN_LEFT, ALIGN_CENTER)
+       , when_bar_label (_("bar:"), ALIGN_RIGHT, ALIGN_CENTER)
+       , when_beat_label (_("beat:"), ALIGN_RIGHT, ALIGN_CENTER)
+       , pulse_selector_label (_("Pulse:"), ALIGN_LEFT, ALIGN_CENTER)
        , tap_tempo_button (_("Tap tempo"))
 {
-       Timecode::BBT_Time when;
-       Tempo tempo (map.tempo_at (frame));
-       map.bbt_time (frame, when);
+       Tempo tempo (map.tempo_at_sample (sample));
+       Timecode::BBT_Time when (map.bbt_at_sample (sample));
 
-       init (when, tempo.beats_per_minute(), tempo.note_type(), TempoSection::Constant, true, PositionLockStyle::MusicTime);
+       init (when, tempo.note_types_per_minute(), tempo.end_note_types_per_minute(), tempo.note_type(), TempoSection::Constant, true, MusicTime);
 }
 
 TempoDialog::TempoDialog (TempoMap& map, TempoSection& section, const string&)
        : ArdourDialog (_("Edit Tempo"))
+       , _map (&map)
+       , _section (&section)
        , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
        , bpm_spinner (bpm_adjustment)
-       , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
-       , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
-       , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
+       , end_bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
+       , end_bpm_spinner (end_bpm_adjustment)
+       , _end_bpm_label (_("End Beats per Minute:"), ALIGN_LEFT, ALIGN_CENTER)
+       , when_bar_label (_("bar:"), ALIGN_RIGHT, ALIGN_CENTER)
+       , when_beat_label (_("beat:"), ALIGN_RIGHT, ALIGN_CENTER)
+       , pulse_selector_label (_("Pulse:"), ALIGN_LEFT, ALIGN_CENTER)
        , tap_tempo_button (_("Tap tempo"))
 {
-       Timecode::BBT_Time when;
-       map.bbt_time (map.frame_at_beat (section.beat()), when);
-       init (when, section.beats_per_minute(), section.note_type(), section.type(), section.movable(), section.position_lock_style());
+       Timecode::BBT_Time when (map.bbt_at_sample (section.sample()));
+       init (when, section.note_types_per_minute(), section.end_note_types_per_minute(), section.note_type(), section.type()
+             , section.initial() || section.locked_to_meter(), section.position_lock_style());
 }
 
 void
-TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, TempoSection::Type type, bool movable, PositionLockStyle style)
+TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double end_bpm, double note_type, TempoSection::Type type, bool initial, PositionLockStyle style)
 {
        vector<string> strings;
        NoteTypes::iterator x;
 
        bpm_spinner.set_numeric (true);
-       bpm_spinner.set_digits (2);
+       bpm_spinner.set_digits (3);
        bpm_spinner.set_wrap (true);
        bpm_spinner.set_value (bpm);
        bpm_spinner.set_alignment (1.0);
 
+       end_bpm_spinner.set_numeric (true);
+       end_bpm_spinner.set_digits (3);
+       end_bpm_spinner.set_wrap (true);
+       end_bpm_spinner.set_value (end_bpm);
+       end_bpm_spinner.set_alignment (1.0);
+
+       Gtkmm2ext::set_size_request_to_display_given_text (pulse_selector, _("one-hundred-twenty-eighth"), 3, 6);
+
        note_types.insert (make_pair (_("whole"), 1.0));
        strings.push_back (_("whole"));
        note_types.insert (make_pair (_("second"), 2.0));
@@ -128,9 +145,9 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
 
        strings.clear();
 
-       lock_styles.insert (make_pair (_("music"), PositionLockStyle::MusicTime));
+       lock_styles.insert (make_pair (_("music"), MusicTime));
        strings.push_back (_("music"));
-       lock_styles.insert (make_pair (_("audio"), PositionLockStyle::AudioTime));
+       lock_styles.insert (make_pair (_("audio"), AudioTime));
        strings.push_back (_("audio"));
        set_popdown_strings (lock_style, strings);
        LockStyles::iterator ls;
@@ -155,19 +172,30 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
        table->set_spacings (6);
        table->set_homogeneous (false);
 
-       int row;
-       Label* bpm_label = manage (new Label(_("Beats per minute:"), ALIGN_LEFT, ALIGN_CENTER));
-       table->attach (*bpm_label, 0, 1, 0, 1);
-       table->attach (bpm_spinner, 1, 5, 0, 1);
+       int row = 0;
 
        if (UIConfiguration::instance().get_allow_non_quarter_pulse()) {
-               table->attach (pulse_selector_label, 0, 1, 1, 2);
-               table->attach (pulse_selector, 1, 5, 1, 2);
-               row = 2;
-       } else {
-               row = 1;
+               table->attach (pulse_selector_label, 0, 1, row, row + 1);
+               table->attach (pulse_selector, 1, 5, row, row + 1);
+
+               ++row;
        }
 
+       Label* bpm_label = manage (new Label(_("Start Beats per Minute:"), ALIGN_LEFT, ALIGN_CENTER));
+       table->attach (*bpm_label, 0, 1, row, row + 1);
+       table->attach (bpm_spinner, 1, 5, row, row + 1);
+       ++row;
+
+       table->attach (_end_bpm_label, 0, 1, row, row + 1);
+       table->attach (end_bpm_spinner, 1, 5, row, row + 1);
+       ++row;
+
+       Label* tempo_type_label = manage (new Label(_("Tempo Type:"), ALIGN_LEFT, ALIGN_CENTER));
+       table->attach (*tempo_type_label, 0, 1, row, row + 1);
+       table->attach (tempo_type, 1, 5, row, row + 1);
+
+       ++row;
+
        char buf[64];
 
        snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
@@ -175,7 +203,7 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
        snprintf (buf, sizeof (buf), "%" PRIu32, when.beats);
        when_beat_entry.set_text (buf);
 
-       if (movable) {
+       if (!initial) {
                when_bar_entry.set_width_chars(4);
                when_beat_entry.set_width_chars (4);
                when_bar_entry.set_alignment (1.0);
@@ -192,17 +220,17 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
 
                Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER));
                table->attach (*when_label, 0, 1, row, row+1);
-       }
 
-       Label* tempo_type_label = manage (new Label(_("Tempo Type:"), ALIGN_LEFT, ALIGN_CENTER));
-       table->attach (*tempo_type_label, 0, 1, row+1, row+2);
-       table->attach (tempo_type, 1, 2, row+1, row + 2);
-       get_vbox()->set_border_width (12);
-       get_vbox()->pack_end (*table);
+               ++row;
+               ++row;
+
+               Label* lock_style_label = manage (new Label(_("Lock Style:"), ALIGN_LEFT, ALIGN_CENTER));
+               table->attach (*lock_style_label, 0, 1, row, row + 1);
+               table->attach (lock_style, 1, 5, row, row + 1);
+
+               --row;
+       }
 
-       Label* lock_style_label = manage (new Label(_("Lock Style:"), ALIGN_LEFT, ALIGN_CENTER));
-       table->attach (*lock_style_label, 0, 1, row+2, row+3);
-       table->attach (lock_style, 1, 2, row+2, row + 3);
        get_vbox()->set_border_width (12);
        get_vbox()->pack_end (*table);
 
@@ -214,9 +242,12 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
        set_default_response (RESPONSE_ACCEPT);
 
        bpm_spinner.show ();
+       end_bpm_spinner.show ();
        tap_tempo_button.show ();
+       get_vbox()->set_spacing (6);
        get_vbox()->pack_end (tap_tempo_button);
-       bpm_spinner.grab_focus ();
+       tap_tempo_button.can_focus ();
+       tap_tempo_button.grab_focus ();
 
        set_name ("MetricDialog");
 
@@ -224,6 +255,7 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
        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);
        bpm_spinner.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::bpm_changed));
+       end_bpm_spinner.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::bpm_changed));
        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));
@@ -232,8 +264,11 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
        tempo_type.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::tempo_type_change));
        lock_style.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::lock_style_change));
        tap_tempo_button.signal_button_press_event().connect (sigc::mem_fun (*this, &TempoDialog::tap_tempo_button_press), false);
+       tap_tempo_button.signal_key_press_event().connect (sigc::mem_fun (*this, &TempoDialog::tap_tempo_key_press), false);
        tap_tempo_button.signal_focus_out_event().connect (sigc::mem_fun (*this, &TempoDialog::tap_tempo_focus_out));
 
+       tempo_type_change();
+
        tapped = false;
 }
 
@@ -269,7 +304,15 @@ TempoDialog::bpm_button_release (GdkEventButton*)
 bool
 TempoDialog::entry_key_release (GdkEventKey*)
 {
-       set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
+       Timecode::BBT_Time bbt;
+       get_bbt_time (bbt);
+
+       if (_section && is_user_input_valid()) {
+               set_response_sensitive (RESPONSE_ACCEPT, _map->can_solve_bbt (_section, bbt));
+       } else {
+               set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
+       }
+
        return false;
 }
 
@@ -279,6 +322,16 @@ TempoDialog::get_bpm ()
        return bpm_spinner.get_value ();
 }
 
+double
+TempoDialog::get_end_bpm ()
+{
+       if (get_tempo_type() == TempoSection::Constant) {
+               return bpm_spinner.get_value ();
+       }
+
+       return end_bpm_spinner.get_value ();
+}
+
 bool
 TempoDialog::get_bbt_time (Timecode::BBT_Time& requested)
 {
@@ -328,7 +381,7 @@ TempoDialog::get_lock_style ()
 
        if (x == lock_styles.end()) {
                error << string_compose(_("incomprehensible lock style (%1)"), lock_style.get_active_text()) << endmsg;
-               return PositionLockStyle::MusicTime;
+               return MusicTime;
        }
 
        return x->second;
@@ -343,6 +396,14 @@ TempoDialog::pulse_change ()
 void
 TempoDialog::tempo_type_change ()
 {
+       if (get_tempo_type() == TempoSection::Constant) {
+               end_bpm_spinner.hide ();
+               _end_bpm_label.hide();
+       } else {
+               end_bpm_spinner.show ();
+               _end_bpm_label.show();
+       }
+
        set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
 }
 
@@ -353,7 +414,27 @@ TempoDialog::lock_style_change ()
 }
 
 bool
-TempoDialog::tap_tempo_button_press (GdkEventButton *ev)
+TempoDialog::tap_tempo_key_press (GdkEventKey*)
+{
+       tap_tempo ();
+       return false;
+}
+
+bool
+TempoDialog::tap_tempo_button_press (GdkEventButton* ev)
+{
+       if (ev->type == GDK_2BUTTON_PRESS || ev->type == GDK_3BUTTON_PRESS) {
+               return true;
+       }
+       if (ev->button != 1) {
+               return true;
+       }
+       tap_tempo ();
+       return false; // grab focus
+}
+
+void
+TempoDialog::tap_tempo ()
 {
        double t;
 
@@ -387,8 +468,6 @@ TempoDialog::tap_tempo_button_press (GdkEventButton *ev)
        }
        tap_count++;
        last_t = t;
-
-       return true;
 }
 
 bool
@@ -398,27 +477,26 @@ TempoDialog::tap_tempo_focus_out (GdkEventFocus* )
        return false;
 }
 
-MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string&)
+MeterDialog::MeterDialog (TempoMap& map, samplepos_t sample, const string&)
        : ArdourDialog (_("New Meter"))
 {
-       Timecode::BBT_Time when;
-       frame = map.round_to_bar(frame, RoundNearest);
-       Meter meter (map.meter_at(frame));
+       sample = map.round_to_bar(sample, RoundNearest).sample;
+       Timecode::BBT_Time when (map.bbt_at_sample (sample));
+       Meter meter (map.meter_at_sample (sample));
 
-       map.bbt_time (frame, when);
-       init (when, meter.divisions_per_bar(), meter.note_divisor(), true, PositionLockStyle::MusicTime);
+       init (when, meter.divisions_per_bar(), meter.note_divisor(), false, MusicTime);
 }
 
 MeterDialog::MeterDialog (TempoMap& map, MeterSection& section, const string&)
        : ArdourDialog (_("Edit Meter"))
 {
-       Timecode::BBT_Time when;
-       map.bbt_time (map.frame_at_beat (section.beat()), when);
-       init (when, section.divisions_per_bar(), section.note_divisor(), section.movable(), section.position_lock_style());
+       Timecode::BBT_Time when (map.bbt_at_sample (section.sample()));
+
+       init (when, section.divisions_per_bar(), section.note_divisor(), section.initial(), section.position_lock_style());
 }
 
 void
-MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, bool movable, PositionLockStyle style)
+MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, bool initial, PositionLockStyle style)
 {
        char buf[64];
        vector<string> strings;
@@ -463,9 +541,9 @@ MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, b
 
        strings.clear();
 
-       lock_styles.insert (make_pair (_("music"), PositionLockStyle::MusicTime));
+       lock_styles.insert (make_pair (_("music"), MusicTime));
        strings.push_back (_("music"));
-       lock_styles.insert (make_pair (_("audio"), PositionLockStyle::AudioTime));
+       lock_styles.insert (make_pair (_("audio"), AudioTime));
        strings.push_back (_("audio"));
        set_popdown_strings (lock_style, strings);
        LockStyles::iterator ls;
@@ -479,9 +557,9 @@ MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, b
                lock_style.set_active_text (strings[0]); // "music"
        }
 
-       Label* note_label = manage (new Label (_("Note value:"), ALIGN_LEFT, ALIGN_CENTER));
-       Label* lock_label = manage (new Label (_("Lock style:"), ALIGN_LEFT, ALIGN_CENTER));
-       Label* bpb_label = manage (new Label (_("Beats per bar:"), ALIGN_LEFT, ALIGN_CENTER));
+       Label* note_label = manage (new Label (_("Note value:"), ALIGN_RIGHT, ALIGN_CENTER));
+       Label* lock_label = manage (new Label (_("Lock style:"), ALIGN_RIGHT, ALIGN_CENTER));
+       Label* bpb_label = manage (new Label (_("Beats per bar:"), ALIGN_RIGHT, ALIGN_CENTER));
        Table* table = manage (new Table (3, 3));
        table->set_spacings (6);
 
@@ -494,7 +572,7 @@ MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, b
        when_bar_entry.set_text (buf);
        when_bar_entry.set_alignment (1.0);
 
-       if (movable) {
+       if (!initial) {
                Label* when_label = manage (new Label(_("Meter begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
 
                table->attach (*when_label, 0, 1, 2, 3, FILL | EXPAND, FILL | EXPAND);
@@ -502,9 +580,6 @@ MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, b
 
                table->attach (*lock_label, 0, 1, 3, 4, FILL|EXPAND, FILL|EXPAND);
                table->attach (lock_style, 1, 2, 3, 4, FILL|EXPAND, SHRINK);
-       } else {
-               table->attach (*lock_label, 0, 1, 2, 3, FILL|EXPAND, FILL|EXPAND);
-               table->attach (lock_style, 1, 2, 2, 3, FILL|EXPAND, SHRINK);
        }
 
        get_vbox()->set_border_width (12);
@@ -595,13 +670,13 @@ MeterDialog::entry_key_release (GdkEventKey*)
 void
 MeterDialog::note_type_change ()
 {
-        set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
+       set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
 }
 
 void
 MeterDialog::lock_style_change ()
 {
-        set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
+       set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
 }
 
 double
@@ -636,7 +711,7 @@ MeterDialog::get_lock_style ()
 
        if (x == lock_styles.end()) {
                error << string_compose(_("incomprehensible meter lock style (%1)"), lock_style.get_active_text()) << endmsg;
-               return PositionLockStyle::MusicTime;
+               return MusicTime;
        }
 
        return x->second;