2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_automation_gain_line_h__
|
|
|
|
#define __ardour_gtk_automation_gain_line_h__
|
|
|
|
|
|
|
|
#include <ardour/ardour.h>
|
2005-09-25 18:26:56 -04:00
|
|
|
#include <libgnomecanvas/libgnomecanvas.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "automation_line.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class TimeAxisView;
|
|
|
|
|
|
|
|
class AutomationGainLine : public AutomationLine
|
|
|
|
{
|
|
|
|
public:
|
2005-09-25 18:26:56 -04:00
|
|
|
AutomationGainLine (string name, ARDOUR::Session&, TimeAxisView&, GnomeCanvasItem* parent,
|
2005-09-25 14:42:24 -04:00
|
|
|
ARDOUR::Curve&,
|
2005-09-25 18:26:56 -04:00
|
|
|
gint (*point_callback)(GnomeCanvasItem*, GdkEvent*, gpointer),
|
|
|
|
gint (*line_callback)(GnomeCanvasItem*, GdkEvent*, gpointer));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void view_to_model_y (double&);
|
|
|
|
void model_to_view_y (double&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ARDOUR::Session& session;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_gain_line_h__ */
|
|
|
|
|
|
|
|
|