2006-08-01 03:23:35 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2006 Paul Davis
|
2006-08-01 03:23:35 +00: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 18:42:24 +00:00
|
|
|
#ifndef __ardour_gtk_region_selection_h__
|
|
|
|
|
#define __ardour_gtk_region_selection_h__
|
|
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
#include <list>
|
2009-12-17 18:24:23 +00:00
|
|
|
|
2009-12-21 18:23:07 +00:00
|
|
|
#include "pbd/signals.h"
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/types.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2011-12-27 20:21:00 +00:00
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Playlist;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
class RegionView;
|
2009-02-27 01:20:25 +00:00
|
|
|
class TimeAxisView;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2009-02-27 01:20:25 +00:00
|
|
|
/** Class to represent list of selected regions.
|
2007-10-06 17:27:07 +00:00
|
|
|
*/
|
2009-12-17 18:24:23 +00:00
|
|
|
class RegionSelection : public std::list<RegionView*>
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2006-08-01 03:23:35 +00:00
|
|
|
RegionSelection();
|
|
|
|
|
RegionSelection (const RegionSelection&);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
RegionSelection& operator= (const RegionSelection&);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-01-18 16:45:29 +00:00
|
|
|
bool add (RegionView*);
|
2006-08-01 03:23:35 +00:00
|
|
|
bool remove (RegionView*);
|
2007-01-17 01:42:44 +00:00
|
|
|
void sort_by_position_and_track ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-01-18 03:06:15 +00:00
|
|
|
bool contains (RegionView*) const;
|
2009-07-09 17:58:13 +00:00
|
|
|
bool involves (const TimeAxisView&) const;
|
2007-01-18 03:06:15 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void clear_all();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-11-04 18:05:17 +00:00
|
|
|
framepos_t start () const;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-01-17 01:42:44 +00:00
|
|
|
/* "end" collides with list<>::end */
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-11-04 18:05:17 +00:00
|
|
|
framepos_t end_frame () const;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-01-17 01:42:44 +00: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 16:10:01 +00:00
|
|
|
|
2014-12-25 15:32:10 -05:00
|
|
|
size_t n_midi_regions() const;
|
|
|
|
|
|
2011-12-27 20:21:00 +00:00
|
|
|
std::set<boost::shared_ptr<ARDOUR::Playlist> > playlists () const;
|
2014-12-15 00:13:38 +11:00
|
|
|
std::list<PBD::ID> pending;
|
2011-12-27 20:21:00 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
private:
|
2006-08-01 03:23:35 +00:00
|
|
|
void remove_it (RegionView*);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
void add_to_layer (RegionView *);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
std::list<RegionView *> _bylayer; ///< list of regions sorted by layer
|
2009-12-21 18:23:07 +00:00
|
|
|
PBD::ScopedConnection death_connection;
|
2005-09-25 18:42:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_region_selection_h__ */
|