13
0
livetrax/gtk2_ardour/pan_automation_time_axis.h

30 lines
713 B
C
Raw Normal View History

#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 (GnomeCanvasItem *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__ */