5c819462b8
git-svn-id: svn://localhost/trunk/ardour2@201 d708f5d6-7413-0410-9779-e7cbd77b26cf
32 lines
578 B
C++
32 lines
578 B
C++
#ifndef __ardour_gtk_automation_gain_line_h__
|
|
#define __ardour_gtk_automation_gain_line_h__
|
|
|
|
#include <ardour/ardour.h>
|
|
|
|
#include "canvas.h"
|
|
#include "automation_line.h"
|
|
|
|
namespace ARDOUR {
|
|
class Session;
|
|
}
|
|
|
|
class TimeAxisView;
|
|
|
|
class AutomationGainLine : public AutomationLine
|
|
{
|
|
public:
|
|
AutomationGainLine (const string & name, ARDOUR::Session&, TimeAxisView&, ArdourCanvas::Group& parent, ARDOUR::Curve&);
|
|
|
|
void view_to_model_y (double&);
|
|
void model_to_view_y (double&);
|
|
|
|
private:
|
|
ARDOUR::Session& session;
|
|
|
|
};
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_gain_line_h__ */
|
|
|
|
|