2006-07-31 23:23:35 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04: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-07-31 23:23:35 -04:00
|
|
|
|
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
|
|
|
{
|
2017-07-01 15:11:14 -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*);
|
2021-06-03 17:35:09 -04:00
|
|
|
bool remove (std::vector<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;
|
2023-02-16 18:33:28 -05:00
|
|
|
bool contains (std::shared_ptr<ARDOUR::Region>) 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
|
|
|
|
2020-09-26 11:14:59 -04:00
|
|
|
Temporal::timepos_t start_time () const;
|
|
|
|
Temporal::timepos_t end_time () 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
|
|
|
|
2014-12-25 15:32:10 -05:00
|
|
|
size_t n_midi_regions() const;
|
|
|
|
|
2023-04-05 20:12:10 -04:00
|
|
|
ARDOUR::PlaylistSet playlists () const;
|
2014-12-14 08:13:38 -05:00
|
|
|
std::list<PBD::ID> pending;
|
2011-12-27 15:21:00 -05:00
|
|
|
|
2016-04-10 12:57:52 -04:00
|
|
|
ARDOUR::RegionList regionlist () const;
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
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
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_region_selection_h__ */
|