region list patch #2 from chris g, slightly reworked by me; sv_se po changes, possibl...
[ardour.git] / gtk2_ardour / selection_templates.h
index 5440112ad6cb5ad2c4ef322ca1b062641ac104cb..3ab8505b72ef0c004316c8eed8aced7de0d9b04a 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_gtk_selection_templates_h__
@@ -39,6 +38,13 @@ Selection::foreach_region (void (ARDOUR::Region::*method)(void)) {
        }
 }
 
+inline void
+Selection::foreach_regionview (void (RegionView::*method)(void)) {
+       for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
+               ((*i)->*(method))();
+       }
+}
+
 template<class A> inline void 
 Selection::foreach_region (void (ARDOUR::Region::*method)(A), A arg) {
        for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {