s/stringcr_t/const string &/
[ardour.git] / gtk2_ardour / gain_automation_time_axis.cc
1 /*
2     Copyright (C) 2003 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <ardour/curve.h>
22 #include <ardour/route.h>
23
24 #include "gain_automation_time_axis.h"
25 #include "automation_line.h"
26 #include "canvas.h"
27
28 #include "i18n.h"
29
30 using namespace ARDOUR;
31 using namespace Gtk;
32
33 GainAutomationTimeAxisView::GainAutomationTimeAxisView (Session& s, Route& r, PublicEditor& e, TimeAxisView& parent, ArdourCanvas::Canvas& canvas, const string & n, ARDOUR::Curve& c)
34
35         : AxisView (s),
36           AutomationTimeAxisView (s, r, e, parent, canvas, n, X_("gain"), ""),
37           curve (c)
38         
39 {
40 }
41
42 GainAutomationTimeAxisView::~GainAutomationTimeAxisView ()
43 {
44 }
45
46 void
47 GainAutomationTimeAxisView::add_automation_event (ArdourCanvas::Item* item, GdkEvent* event, jack_nframes_t when, double y)
48 {
49         double x = 0;
50
51         canvas_display->w2i (x, y);
52
53         /* compute vertical fractional position */
54
55         y = 1.0 - (y / height);
56
57         /* map using line */
58
59         lines.front()->view_to_model_y (y);
60
61         _session.begin_reversible_command (_("add gain automation event"));
62
63         _session.add_undo (curve.get_memento());
64         curve.add (when, y);
65         _session.add_redo_no_execute (curve.get_memento());
66         _session.commit_reversible_command ();
67         _session.set_dirty ();
68 }
69
70 void
71 GainAutomationTimeAxisView::set_automation_state (AutoState state)
72 {
73         if (!ignore_state_request) {
74                 route.set_gain_automation_state (state);
75         }
76 }