Further refactoring of drag code. Changes so that drags from the region list display a region view during the drag.

git-svn-id: svn://localhost/ardour2/branches/3.0@5127 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-06-08 19:28:51 +00:00
parent 472fa271fd
commit 0874426a5b
26 changed files with 658 additions and 424 deletions

View file

@ -103,6 +103,10 @@ public:
virtual void redisplay_diskstream () = 0;
double child_height () const;
ARDOUR::layer_t layers () const { return _layers; }
virtual RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool) {
return 0;
}
sigc::signal<void,RegionView*> RegionViewAdded;