summaryrefslogtreecommitdiff
path: root/gtk2_ardour/pan_automation_time_axis.h
blob: 16b0808148ef1ea7252f9f8e09b5540eb2a64527 (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
#ifndef __ardour_gtk_pan_automation_time_axis_h__
#define __ardour_gtk_pan_automation_time_axis_h__

#include "automation_time_axis.h"

namespace ARDOUR {
	class Redirect;
}

class PanAutomationTimeAxisView : public AutomationTimeAxisView
{
  public:
	PanAutomationTimeAxisView (ARDOUR::Session&,
				   ARDOUR::Route&,
				   PublicEditor&,
				   TimeAxisView& parent_axis,
				   Gtk::Widget* parent,
				   std::string name);

	~PanAutomationTimeAxisView();

	void add_automation_event (GtkCanvasItem *item, GdkEvent *event, jack_nframes_t, double);
	
   private:
        void automation_changed ();
	void set_automation_state (ARDOUR::AutoState);
};

#endif /* __ardour_gtk_pan_automation_time_axis_h__ */