2006-07-31 23:23:35 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2006 Paul Davis
|
2006-07-31 23:23:35 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_region_selection_h__
|
|
|
|
#define __ardour_gtk_region_selection_h__
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <list>
|
2009-12-17 13:24:23 -05:00
|
|
|
|
2009-12-21 13:23:07 -05:00
|
|
|
#include "pbd/signals.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2011-12-27 15:21:00 -05:00
|
|
|
namespace ARDOUR {
|
|
|
|
class Playlist;
|
|
|
|
}
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
class RegionView;
|
2009-02-26 20:20:25 -05:00
|
|
|
class TimeAxisView;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-26 20:20:25 -05:00
|
|
|
/** Class to represent list of selected regions.
|
2007-10-06 13:27:07 -04:00
|
|
|
*/
|
2009-12-17 13:24:23 -05:00
|
|
|
class RegionSelection : public std::list<RegionView*>
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2006-07-31 23:23:35 -04:00
|
|
|
RegionSelection();
|
|
|
|
RegionSelection (const RegionSelection&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
RegionSelection& operator= (const RegionSelection&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-18 11:45:29 -05:00
|
|
|
bool add (RegionView*);
|
2006-07-31 23:23:35 -04:00
|
|
|
bool remove (RegionView*);
|
2007-01-16 20:42:44 -05:00
|
|
|
void sort_by_position_and_track ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-17 22:06:15 -05:00
|
|
|
bool contains (RegionView*) const;
|
2009-07-09 13:58:13 -04:00
|
|
|
bool involves (const TimeAxisView&) const;
|
2007-01-17 22:06:15 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void clear_all();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-04 14:05:17 -04:00
|
|
|
framepos_t start () const;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-16 20:42:44 -05:00
|
|
|
/* "end" collides with list<>::end */
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-04 14:05:17 -04:00
|
|
|
framepos_t end_frame () const;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-16 20:42:44 -05:00
|
|
|
const std::list<RegionView *>& by_layer() const { return _bylayer; }
|
|
|
|
void by_position (std::list<RegionView*>&) const;
|
|
|
|
void by_track (std::list<RegionView*>&) const;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-12-27 15:21:00 -05:00
|
|
|
std::set<boost::shared_ptr<ARDOUR::Playlist> > playlists () const;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
private:
|
2006-07-31 23:23:35 -04:00
|
|
|
void remove_it (RegionView*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
void add_to_layer (RegionView *);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
std::list<RegionView *> _bylayer; ///< list of regions sorted by layer
|
2009-12-21 13:23:07 -05:00
|
|
|
PBD::ScopedConnection death_connection;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_region_selection_h__ */
|