s/stringcr_t/const string &/
[ardour.git] / gtk2_ardour / automation_pan_line.h
1 #ifndef __ardour_gtk_automation_pan_line_h__
2 #define __ardour_gtk_automation_pan_line_h__
3
4 #include <ardour/ardour.h>
5
6 #include "canvas.h"
7 #include "automation_line.h"
8
9 namespace ARDOUR {
10         class Session;
11 }
12
13 class TimeAxisView;
14
15 class AutomationPanLine : public AutomationLine
16 {
17   public:
18         AutomationPanLine (const string & name, ARDOUR::Session&, TimeAxisView&, ArdourCanvas::Group& parent, ARDOUR::Curve&);
19         
20         void view_to_model_y (double&);
21         void model_to_view_y (double&);
22
23   private:
24         ARDOUR::Session& session;
25         vector<ArdourCanvas::Item*> lines;
26 };
27
28
29 #endif /* __ardour_gtk_automation_pan_line_h__ */
30
31