Merged with trunk R846
[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 #include <pbd/memento_command.h>
24
25 #include "gain_automation_time_axis.h"
26 #include "automation_line.h"
27 #include "canvas.h"
28
29 #include "i18n.h"
30
31 using namespace ARDOUR;
32 using namespace PBD;
33 using namespace Gtk;
34
35 GainAutomationTimeAxisView::GainAutomationTimeAxisView (Session& s, boost::shared_ptr<Route> r, 
36                                                         PublicEditor& e, TimeAxisView& parent, 
37                                                         ArdourCanvas::Canvas& canvas, const string & n, ARDOUR::Curve& c)
38
39         : AxisView (s),
40           AutomationTimeAxisView (s, r, e, parent, canvas, n, X_("gain"), ""),
41           curve (c)
42         
43 {
44 }
45
46 GainAutomationTimeAxisView::~GainAutomationTimeAxisView ()
47 {
48 }
49
50 void
51 GainAutomationTimeAxisView::add_automation_event (ArdourCanvas::Item* item, GdkEvent* event, jack_nframes_t when, double y)
52 {
53         double x = 0;
54
55         canvas_display->w2i (x, y);
56
57         /* compute vertical fractional position */
58
59         y = 1.0 - (y / height);
60
61         /* map using line */
62
63         lines.front()->view_to_model_y (y);
64
65         _session.begin_reversible_command (_("add gain automation event"));
66
67         XMLNode &before = curve.get_state();
68         curve.add (when, y);
69         XMLNode &after = curve.get_state();
70         _session.add_command(new MementoCommand<ARDOUR::Curve>(curve, &before, &after));
71         _session.commit_reversible_command ();
72         _session.set_dirty ();
73 }
74
75 void
76 GainAutomationTimeAxisView::set_automation_state (AutoState state)
77 {
78         if (!ignore_state_request) {
79                 route->set_gain_automation_state (state);
80         }
81 }