2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_automation_pan_line_h__
|
|
|
|
#define __ardour_gtk_automation_pan_line_h__
|
|
|
|
|
|
|
|
#include <ardour/ardour.h>
|
|
|
|
|
2005-11-15 21:57:22 -05:00
|
|
|
#include "canvas.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "automation_line.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TimeAxisView;
|
|
|
|
|
|
|
|
class AutomationPanLine : public AutomationLine
|
|
|
|
{
|
|
|
|
public:
|
2005-12-22 07:23:54 -05:00
|
|
|
AutomationPanLine (const string & name, ARDOUR::Session&, TimeAxisView&, ArdourCanvas::Group& parent, ARDOUR::Curve&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void view_to_model_y (double&);
|
|
|
|
void model_to_view_y (double&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ARDOUR::Session& session;
|
2005-11-15 21:57:22 -05:00
|
|
|
vector<ArdourCanvas::Item*> lines;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_pan_line_h__ */
|
|
|
|
|
|
|
|
|