New Route dialog: add fallback default selection
[ardour.git] / gtk2_ardour / region_selection.h
index dcb6d68e0c71f6ed0b98837f528d625d4e4ca856..4cbeb2d74750e359f88880f39671380c325339a5 100644 (file)
 #include <set>
 #include <list>
 
-#include <boost/signals2.hpp>
-
+#include "pbd/signals.h"
 #include "ardour/types.h"
 
+namespace ARDOUR {
+       class Playlist;
+}
+
 class RegionView;
 class TimeAxisView;
 
@@ -33,7 +36,7 @@ class TimeAxisView;
  */
 class RegionSelection : public std::list<RegionView*>
 {
-  public:
+public:
        RegionSelection();
        RegionSelection (const RegionSelection&);
 
@@ -44,34 +47,35 @@ class RegionSelection : public std::list<RegionView*>
        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
-
        std::list<RegionView *> _bylayer; ///< list of regions sorted by layer
-       boost::signals2::scoped_connection death_connection;
+       PBD::ScopedConnection death_connection;
 };
 
 #endif /* __ardour_gtk_region_selection_h__ */