summaryrefslogtreecommitdiff
path: root/gtk2_ardour/gain_automation_time_axis.h
blob: ea9388ccd3366c661328f7f16926a28cc89f6bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef __ardour_gtk_gain_automation_time_axis_h__
#define __ardour_gtk_gain_automation_time_axis_h__

#include "canvas.h"
#include "automation_time_axis.h"

namespace ARDOUR {
	class Redirect;
	class Curve;
}

class GainAutomationTimeAxisView : public AutomationTimeAxisView
{
  public:
	GainAutomationTimeAxisView (ARDOUR::Session&,
				    boost::shared_ptr<ARDOUR::Route>,
				    PublicEditor&,
				    TimeAxisView& parent_axis,
				    ArdourCanvas::Canvas& canvas,
				    const string & name,
				    ARDOUR::Curve&);
	
	~GainAutomationTimeAxisView();

	void add_automation_event (ArdourCanvas::Item *item, GdkEvent *event, nframes_t, double);
	
   private:
	ARDOUR::Curve& curve;

        void automation_changed ();
	void set_automation_state (ARDOUR::AutoState);
};

#endif /* __ardour_gtk_gain_automation_time_axis_h__ */