mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
20 lines
574 B
C
20 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__ */
|