2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_automation_selectable_h__
|
|
|
|
#define __ardour_gtk_automation_selectable_h__
|
|
|
|
|
|
|
|
#include <ardour/types.h>
|
|
|
|
#include "selectable.h"
|
|
|
|
|
|
|
|
class TimeAxisView;
|
|
|
|
|
|
|
|
struct AutomationSelectable : public Selectable
|
|
|
|
{
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t start;
|
|
|
|
nframes_t end;
|
2005-09-25 14:42:24 -04:00
|
|
|
double low_fract;
|
|
|
|
double high_fract;
|
|
|
|
TimeAxisView& track;
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
AutomationSelectable (nframes_t s, nframes_t e, double l, double h, TimeAxisView& atv)
|
2005-09-25 14:42:24 -04:00
|
|
|
: start (s), end (e), low_fract (l), high_fract (h), track (atv) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_selectable_h__ */
|