Factor out sequencing related things into an independant new library: "evoral".

Anything related to the storage of events/values over a range of time lives in evoral.
This includes MidiModel (Evoral::Sequence) and automation data (AutomationList (Evoral::ControlList),
	Automatable (Evoral::ControlSet), etc).
libs/evoral synced with http://svn.drobilla.net/lad/trunk/evoral r1511.


git-svn-id: svn://localhost/ardour2/branches/3.0@3754 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2008-09-19 00:47:49 +00:00
parent 3d976c5b72
commit d357eca668
102 changed files with 4640 additions and 3217 deletions

View file

@ -19,7 +19,7 @@ public:
CanvasProgramChange(
MidiRegionView& region,
Group& parent,
boost::shared_ptr<MIDI::Event> event,
boost::shared_ptr<Evoral::Event> event,
double height,
double x = 0.0,
double y = 0.0
@ -29,7 +29,7 @@ public:
private:
MidiRegionView& _region;
boost::shared_ptr<MIDI::Event> _event;
boost::shared_ptr<Evoral::Event> _event;
Text* _text;
SimpleLine* _line;
SimpleRect* _rect;