Add option to use narrow mixer strips by default, and fix ardour_system.rc being...
[ardour.git] / gtk2_ardour / boolean_automation_line.h
1 #ifndef __ardour_gtk_boolean_automation_line_h__
2 #define __ardour_gtk_boolean_automation_line_h__
3
4 #include "automation_line.h"
5
6 class BooleanAutomationLine : public AutomationLine
7 {
8   public:
9         BooleanAutomationLine (const string & name, TimeAxisView&, ArdourCanvas::Group&, ARDOUR::AutomationList&);
10         virtual ~BooleanAutomationLine ();
11
12         void view_to_model_y (double&);
13         void model_to_view_y (double&);
14
15   protected:
16         void add_model_point (AutomationLine::ALPoints& tmp_points, double frame, double yfract);
17 };
18
19 #endif /* __ardour_gtk_boolean_automation_line_h__ */