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) {}
|
2007-01-23 16:45:05 -05:00
|
|
|
|
|
|
|
bool operator== (const AutomationSelectable& other) {
|
|
|
|
return start == other.start &&
|
|
|
|
end == other.end &&
|
|
|
|
low_fract == other.low_fract &&
|
|
|
|
high_fract == other.high_fract &&
|
|
|
|
&track == &other.track;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_selectable_h__ */
|