X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fregion_gain_line.cc;h=00352c96df7992b8418dca1e97ed137d4c8bfa2e;hb=8e59a26ccf13de93ac681d761bad09cd6bcf0c90;hp=9b2ff346dd55bc08783a582f97ab253b0d5530a9;hpb=e0eb5fd33553eeb5b3d2b0c5e11be539391281bb;p=ardour.git diff --git a/gtk2_ardour/region_gain_line.cc b/gtk2_ardour/region_gain_line.cc index 9b2ff346dd..00352c96df 100644 --- a/gtk2_ardour/region_gain_line.cc +++ b/gtk2_ardour/region_gain_line.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 Paul Davis 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 @@ -17,9 +17,11 @@ */ -#include -#include -#include +#include "evoral/Curve.hpp" +#include "pbd/memento_command.h" + +#include "ardour/audioregion.h" +#include "ardour/session.h" #include "region_gain_line.h" #include "audio_region_view.h" @@ -28,37 +30,33 @@ #include "time_axis_view.h" #include "editor.h" -#include - - #include "i18n.h" - using namespace std; using namespace ARDOUR; using namespace PBD; -AudioRegionGainLine::AudioRegionGainLine (const string & name, Session& s, AudioRegionView& r, ArdourCanvas::Group& parent, boost::shared_ptr l) - : AutomationLine (name, r.get_time_axis_view(), parent, l), - session (s), - rv (r) +AudioRegionGainLine::AudioRegionGainLine (const string & name, AudioRegionView& r, ArdourCanvas::Group& parent, boost::shared_ptr l) + : AutomationLine (name, r.get_time_axis_view(), parent, l) + , rv (r) { // If this isn't true something is horribly wrong, and we'll get catastrophic gain values assert(l->parameter().type() == EnvelopeAutomation); group->raise_to_top (); - set_verbose_cursor_uses_gain_mapping (true); + group->property_y() = 2; + set_uses_gain_mapping (true); terminal_points_can_slide = false; } void -AudioRegionGainLine::start_drag (ControlPoint* cp, nframes_t x, float fraction) +AudioRegionGainLine::start_drag (ControlPoint* cp, nframes_t x, float fraction) { AutomationLine::start_drag (cp, x, fraction); if (!rv.audio_region()->envelope_active()) { - trackview.session().add_command(new MementoCommand(*(rv.audio_region().get()), &rv.audio_region()->get_state(), 0)); + trackview.session()->add_command(new MementoCommand(*(rv.audio_region().get()), &rv.audio_region()->get_state(), 0)); rv.audio_region()->set_envelope_active(false); - } + } } // This is an extended copy from AutomationList @@ -69,30 +67,30 @@ AudioRegionGainLine::remove_point (ControlPoint& cp) model_representation (cp, mr); - trackview.editor.current_session()->begin_reversible_command (_("remove control point")); + trackview.editor().session()->begin_reversible_command (_("remove control point")); XMLNode &before = alist->get_state(); if (!rv.audio_region()->envelope_active()) { XMLNode ®ion_before = rv.audio_region()->get_state(); rv.audio_region()->set_envelope_active(true); XMLNode ®ion_after = rv.audio_region()->get_state(); - trackview.session().add_command(new MementoCommand(*(rv.audio_region().get()), ®ion_before, ®ion_after)); - } - + trackview.session()->add_command(new MementoCommand(*(rv.audio_region().get()), ®ion_before, ®ion_after)); + } + alist->erase (mr.start, mr.end); - trackview.editor.current_session()->add_command (new MementoCommand(*alist.get(), &before, &alist->get_state())); - trackview.editor.current_session()->commit_reversible_command (); - trackview.editor.current_session()->set_dirty (); + trackview.editor().session()->add_command (new MementoCommand(*alist.get(), &before, &alist->get_state())); + trackview.editor().session()->commit_reversible_command (); + trackview.editor().session()->set_dirty (); } void -AudioRegionGainLine::end_drag (ControlPoint* cp) +AudioRegionGainLine::end_drag (ControlPoint* cp) { if (!rv.audio_region()->envelope_active()) { rv.audio_region()->set_envelope_active(true); - trackview.session().add_command(new MementoCommand(*(rv.audio_region().get()), 0, &rv.audio_region()->get_state())); - } + trackview.session()->add_command(new MementoCommand(*(rv.audio_region().get()), 0, &rv.audio_region()->get_state())); + } AutomationLine::end_drag(cp); }