X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=inline;f=gtk2_ardour%2Fregion_editor.cc;h=596f6009aad5a6ded0263eec68e772aae707e583;hb=bd80b2f144c012669b56c83821e137be655acfe4;hp=511314dfc598212ef33cd1542bcbceb6d440aa39;hpb=e5e12acc5698090f2c0c614385e457cc0b46fbb0;p=ardour.git diff --git a/gtk2_ardour/region_editor.cc b/gtk2_ardour/region_editor.cc index 511314dfc5..596f6009aa 100644 --- a/gtk2_ardour/region_editor.cc +++ b/gtk2_ardour/region_editor.cc @@ -33,13 +33,16 @@ #include "main_clock.h" #include "gui_thread.h" #include "region_editor.h" +#include "public_editor.h" +#include "tooltips.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace ARDOUR; using namespace PBD; using namespace std; using namespace Gtkmm2ext; +using namespace ARDOUR_UI_UTILS; RegionEditor::RegionEditor (Session* s, boost::shared_ptr r) : ArdourDialog (_("Region")) @@ -75,7 +78,7 @@ RegionEditor::RegionEditor (Session* s, boost::shared_ptr r) sync_offset_absolute_clock.set_session (_session); start_clock.set_session (_session); - ARDOUR_UI::instance()->set_tip (audition_button, _("audition this region")); + set_tooltip (audition_button, _("audition this region")); audition_button.unset_flags (Gtk::CAN_FOCUS); @@ -269,33 +272,41 @@ RegionEditor::connect_editor_events () void RegionEditor::position_clock_changed () { - _session->begin_reversible_command (_("change region start position")); - + bool in_command = false; boost::shared_ptr pl = _region->playlist(); if (pl) { + PublicEditor::instance().begin_reversible_command (_("change region start position")); + in_command = true; + _region->clear_changes (); _region->set_position (position_clock.current_time()); _session->add_command(new StatefulDiffCommand (_region)); } - _session->commit_reversible_command (); + if (in_command) { + PublicEditor::instance().commit_reversible_command (); + } } void RegionEditor::end_clock_changed () { - _session->begin_reversible_command (_("change region end position")); - + bool in_command = false; boost::shared_ptr pl = _region->playlist(); if (pl) { + PublicEditor::instance().begin_reversible_command (_("change region end position")); + in_command = true; + _region->clear_changes (); _region->trim_end (end_clock.current_time()); _session->add_command(new StatefulDiffCommand (_region)); } - _session->commit_reversible_command (); + if (in_command) { + PublicEditor::instance().commit_reversible_command (); + } end_clock.set (_region->position() + _region->length() - 1, true); } @@ -304,18 +315,21 @@ void RegionEditor::length_clock_changed () { framecnt_t frames = length_clock.current_time(); - - _session->begin_reversible_command (_("change region length")); - + bool in_command = false; boost::shared_ptr pl = _region->playlist(); if (pl) { - _region->clear_changes (); + PublicEditor::instance().begin_reversible_command (_("change region length")); + in_command = true; + + _region->clear_changes (); _region->trim_end (_region->position() + frames - 1); _session->add_command(new StatefulDiffCommand (_region)); } - _session->commit_reversible_command (); + if (in_command) { + PublicEditor::instance().commit_reversible_command (); + } length_clock.set (_region->length()); } @@ -399,25 +413,25 @@ RegionEditor::audition_state_changed (bool yn) void RegionEditor::sync_offset_absolute_clock_changed () { - _session->begin_reversible_command (_("change region sync point")); + PublicEditor::instance().begin_reversible_command (_("change region sync point")); _region->clear_changes (); _region->set_sync_position (sync_offset_absolute_clock.current_time()); _session->add_command (new StatefulDiffCommand (_region)); - _session->commit_reversible_command (); + PublicEditor::instance().commit_reversible_command (); } void RegionEditor::sync_offset_relative_clock_changed () { - _session->begin_reversible_command (_("change region sync point")); + PublicEditor::instance().begin_reversible_command (_("change region sync point")); _region->clear_changes (); _region->set_sync_position (sync_offset_relative_clock.current_time() + _region->position ()); _session->add_command (new StatefulDiffCommand (_region)); - _session->commit_reversible_command (); + PublicEditor::instance().commit_reversible_command (); } bool