2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_region_gain_line_h__
|
|
|
|
#define __ardour_gtk_region_gain_line_h__
|
|
|
|
|
|
|
|
#include <ardour/ardour.h>
|
2005-11-12 22:53:51 -05:00
|
|
|
#include <libgnomecanvasmm/libgnomecanvasmm.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "automation_line.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TimeAxisView;
|
|
|
|
class AudioRegionView;
|
|
|
|
|
|
|
|
class AudioRegionGainLine : public AutomationLine
|
|
|
|
{
|
|
|
|
public:
|
2005-12-22 07:23:54 -05:00
|
|
|
AudioRegionGainLine (const string & name, ARDOUR::Session&, AudioRegionView&, 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&);
|
|
|
|
|
|
|
|
void start_drag (ControlPoint*, float fraction);
|
|
|
|
void end_drag (ControlPoint*);
|
|
|
|
|
|
|
|
void remove_point (ControlPoint&);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
ARDOUR::Session& session;
|
|
|
|
AudioRegionView& rv;
|
|
|
|
|
|
|
|
UndoAction get_memento();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_region_gain_line_h__ */
|