Paul Davis
93c7aeba04
git-svn-id: svn://localhost/ardour2/trunk@933 d708f5d6-7413-0410-9779-e7cbd77b26cf
35 lines
835 B
C++
35 lines
835 B
C++
#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__ */
|