mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2293 d708f5d6-7413-0410-9779-e7cbd77b26cf
19 lines
574 B
C++
19 lines
574 B
C++
#ifndef __ardour_gtk_boolean_automation_line_h__
|
|
#define __ardour_gtk_boolean_automation_line_h__
|
|
|
|
#include "automation_line.h"
|
|
|
|
class BooleanAutomationLine : public AutomationLine
|
|
{
|
|
public:
|
|
BooleanAutomationLine (const string & name, TimeAxisView&, ArdourCanvas::Group&, ARDOUR::AutomationList&);
|
|
virtual ~BooleanAutomationLine ();
|
|
|
|
void view_to_model_y (double&);
|
|
void model_to_view_y (double&);
|
|
|
|
protected:
|
|
void add_model_point (AutomationLine::ALPoints& tmp_points, double frame, double yfract);
|
|
};
|
|
|
|
#endif /* __ardour_gtk_boolean_automation_line_h__ */
|