13
0
livetrax/gtk2_ardour/automation_gain_line.h
Taybin Rutkin e493b2b7c4 Fly my pretties!
git-svn-id: svn://localhost/trunk/ardour2@28 d708f5d6-7413-0410-9779-e7cbd77b26cf
2005-09-25 20:33:00 +00:00

37 lines
731 B
C++

#ifndef __ardour_gtk_automation_gain_line_h__
#define __ardour_gtk_automation_gain_line_h__
#include <ardour/ardour.h>
#include <gtk-canvas.h>
#include <gtkmm.h>
#include "automation_line.h"
namespace ARDOUR {
class Session;
}
class TimeAxisView;
class AutomationGainLine : public AutomationLine
{
public:
AutomationGainLine (string name, ARDOUR::Session&, TimeAxisView&, GtkCanvasItem* parent,
ARDOUR::Curve&,
gint (*point_callback)(GtkCanvasItem*, GdkEvent*, gpointer),
gint (*line_callback)(GtkCanvasItem*, GdkEvent*, gpointer));
void view_to_model_y (double&);
void model_to_view_y (double&);
private:
ARDOUR::Session& session;
};
#endif /* __ardour_gtk_automation_gain_line_h__ */