a huge set of changes to tempo+meter handling. testing feedback requested. the_CLA, you know who i mean :)

git-svn-id: svn://localhost/ardour2/branches/3.0@11103 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-12-28 21:02:31 +00:00
parent c3a52084f8
commit a85e0b0a2e
9 changed files with 536 additions and 369 deletions

View file

@ -80,8 +80,12 @@ InsertTimeDialog::InsertTimeDialog (PublicEditor& e)
indent->set_padding (0, 0, 12, 0);
indent->add (_move_locked_markers);
get_vbox()->pack_start (*indent);
_move_tempos.set_label (_("Move tempo and meter changes"));
get_vbox()->pack_start (_move_tempos);
tempo_label.set_markup (_("Move tempo and meter changes\n<i>(may cause oddities in the tempo map)</i>"));
HBox* tempo_box = manage (new HBox);
tempo_box->set_spacing (6);
tempo_box->pack_start (_move_tempos, false, false);
tempo_box->pack_start (tempo_label, false, false);
get_vbox()->pack_start (*tempo_box);
add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
add_button (_("Insert time"), Gtk::RESPONSE_OK);