2006-08-01 03:23:35 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
|
* Copyright (C) 2006-2014 David Robillard <d@drobilla.net>
|
|
|
|
|
* Copyright (C) 2006-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
* Copyright (C) 2007-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
|
* Copyright (C) 2016-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2006-08-01 03:23:35 +00:00
|
|
|
|
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
|
|
|
{
|
2017-07-01 21:11:14 +02: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*);
|
2021-06-03 15:35:09 -06:00
|
|
|
bool remove (std::vector<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;
|
2017-03-12 01:20:14 +01:00
|
|
|
bool contains (boost::shared_ptr<ARDOUR::Region>) 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
|
|
|
|
2020-09-26 09:14:59 -06:00
|
|
|
Temporal::timepos_t start_time () const;
|
|
|
|
|
Temporal::timepos_t end_time () 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
|
|
|
|
2016-04-10 18:57:52 +02:00
|
|
|
ARDOUR::RegionList regionlist () const;
|
|
|
|
|
|
2017-07-01 21:11:14 +02: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__ */
|