2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2008-2014 David Robillard <d@drobilla.net>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2007-04-26 16:54:31 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_automation_selection_h__
|
|
|
|
#define __ardour_gtk_automation_selection_h__
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
#include "ardour/automation_list.h"
|
2019-10-25 15:13:51 -04:00
|
|
|
#include "evoral/Parameter.h"
|
2014-11-16 17:04:27 -05:00
|
|
|
|
|
|
|
class AutomationSelection : public std::list<boost::shared_ptr<ARDOUR::AutomationList> > {
|
|
|
|
public:
|
|
|
|
const_iterator
|
|
|
|
get_nth(const Evoral::Parameter& param, size_t nth) const {
|
|
|
|
size_t count = 0;
|
|
|
|
for (const_iterator l = begin(); l != end(); ++l) {
|
|
|
|
if ((*l)->parameter() == param) {
|
|
|
|
if (count++ == nth) {
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return end();
|
|
|
|
}
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_selection_h__ */
|