replace ::cast_dynamic() with relevant ActionManager::get_*_action() calls
[ardour.git] / gtk2_ardour / region_selection.h
index 084345a76d4b16009b85bee2d6c9b6e6ee5232f8..4cbeb2d74750e359f88880f39671380c325339a5 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2006 Paul Davis 
+    Copyright (C) 2006 Paul Davis
 
     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
 
 #include <set>
 #include <list>
-#include <sigc++/signal.h>
-#include <ardour/types.h>
 
-using std::list;
-using std::set;
+#include "pbd/signals.h"
+#include "ardour/types.h"
+
+namespace ARDOUR {
+       class Playlist;
+}
 
 class RegionView;
+class TimeAxisView;
 
-/**
- *  Class to represent list of selected regions.
+/** Class to represent list of selected regions.
  */
-
-class RegionSelection : public std::list<RegionView*>, public sigc::trackable
+class RegionSelection : public std::list<RegionView*>
 {
-  public:
+public:
        RegionSelection();
        RegionSelection (const RegionSelection&);
 
@@ -46,33 +47,35 @@ class RegionSelection : public std::list<RegionView*>, public sigc::trackable
        void sort_by_position_and_track ();
 
        bool contains (RegionView*) const;
+       bool contains (boost::shared_ptr<ARDOUR::Region>) const;
        bool involves (const TimeAxisView&) const;
 
        void clear_all();
-       
-       nframes_t start () const {
-               return _current_start;
-       }
+
+       samplepos_t start () const;
 
        /* "end" collides with list<>::end */
 
-       nframes_t end_frame () const { 
-               return _current_end;
-       }
+       samplepos_t end_sample () const;
 
        const std::list<RegionView *>& by_layer() const { return _bylayer; }
        void  by_position (std::list<RegionView*>&) const;
        void  by_track (std::list<RegionView*>&) const;
-       
-  private:
+
+       size_t n_midi_regions() const;
+
+       std::set<boost::shared_ptr<ARDOUR::Playlist> > playlists () const;
+       std::list<PBD::ID> pending;
+
+       ARDOUR::RegionList regionlist () const;
+
+private:
        void remove_it (RegionView*);
 
        void add_to_layer (RegionView *);
-       
-       nframes_t _current_start; ///< start position for the selection
-       nframes_t _current_end; ///< end position for the selection
 
-       list<RegionView *> _bylayer; ///< list of regions sorted by layer
+       std::list<RegionView *> _bylayer; ///< list of regions sorted by layer
+       PBD::ScopedConnection death_connection;
 };
 
 #endif /* __ardour_gtk_region_selection_h__ */