use new syntax for connecting to backend signals that enforces explicit connection...
[ardour.git] / libs / ardour / ardour / location.h
index 53d9489823184ae8f645d341808f7b7ec0be9de0..1f2b80c831953c3237798b77c0616b1ccee45365 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000 Paul Davis 
+    Copyright (C) 2000 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 <map>
 
 #include <sys/types.h>
-#include <sigc++/signal.h>
 
 #include <glibmm/thread.h>
 
-#include <pbd/undo.h>
-#include <pbd/stateful.h> 
-#include <pbd/statefuldestructible.h> 
+#include "pbd/undo.h"
+#include "pbd/stateful.h"
+#include "pbd/statefuldestructible.h"
 
-#include <ardour/ardour.h>
-
-using std::string;
+#include "ardour/ardour.h"
 
 namespace ARDOUR {
 
@@ -54,17 +51,17 @@ class Location : public PBD::StatefulDestructible
                IsStart = 0x80
        };
 
-       Location (nframes_t sample_start,
-                 nframes_t sample_end,
-                 const string &name,
-                 Flags bits = Flags(0))                
-               
+       Location (nframes64_t sample_start,
+                       nframes64_t sample_end,
+                       const std::string &name,
+                       Flags bits = Flags(0))
+
                : _name (name),
                _start (sample_start),
                _end (sample_end),
                _flags (bits),
                _locked (false) { }
-       
+
        Location () {
                _start = 0;
                _end = 0;
@@ -79,19 +76,19 @@ class Location : public PBD::StatefulDestructible
        bool locked() const { return _locked; }
        void lock() { _locked = true; changed (this); }
        void unlock() { _locked = false; changed (this); }
-       
-       nframes_t start() const  { return _start; }
-       nframes_t end() const { return _end; }
-       nframes_t length() const { return _end - _start; }
 
-       int set_start (nframes_t s);
-       int set_end (nframes_t e);
-       int set (nframes_t start, nframes_t end);
+       nframes64_t start() const  { return _start; }
+       nframes64_t end() const { return _end; }
+       nframes64_t length() const { return _end - _start; }
+
+       int set_start (nframes64_t s);
+       int set_end (nframes64_t e);
+       int set (nframes64_t start, nframes64_t end);
 
-       int move_to (nframes_t pos);
+       int move_to (nframes64_t pos);
 
-       const string& name() { return _name; }
-       void set_name (const string &str) { _name = str; name_changed(this); }
+       const std::string& name() const { return _name; }
+       void set_name (const std::string &str) { _name = str; name_changed(this); }
 
        void set_auto_punch (bool yn, void *src);
        void set_auto_loop (bool yn, void *src);
@@ -99,38 +96,40 @@ class Location : public PBD::StatefulDestructible
        void set_cd (bool yn, void *src);
        void set_is_end (bool yn, void* src);
        void set_is_start (bool yn, void* src);
+       void set_is_range_marker (bool yn, void* src);
 
-       bool is_auto_punch ()  { return _flags & IsAutoPunch; }
-       bool is_auto_loop () { return _flags & IsAutoLoop; }
-       bool is_mark () { return _flags & IsMark; }
-       bool is_hidden () { return _flags & IsHidden; }
-       bool is_cd_marker () { return _flags & IsCDMarker; }
-       bool is_end() { return _flags & IsEnd; }
-       bool is_start() { return _flags & IsStart; }
-       bool is_range_marker() { return _flags & IsRangeMarker; }
+       bool is_auto_punch () const { return _flags & IsAutoPunch; }
+       bool is_auto_loop () const { return _flags & IsAutoLoop; }
+       bool is_mark () const { return _flags & IsMark; }
+       bool is_hidden () const { return _flags & IsHidden; }
+       bool is_cd_marker () const { return _flags & IsCDMarker; }
+       bool is_end() const { return _flags & IsEnd; }
+       bool is_start() const { return _flags & IsStart; }
+       bool is_range_marker() const { return _flags & IsRangeMarker; }
+       bool matches (Flags f) const { return _flags & f; }
 
-       sigc::signal<void,Location*> name_changed;
-       sigc::signal<void,Location*> end_changed;
-       sigc::signal<void,Location*> start_changed;
+       PBD::Signal1<void,Location*> name_changed;
+       PBD::Signal1<void,Location*> end_changed;
+       PBD::Signal1<void,Location*> start_changed;
 
-       sigc::signal<void,Location*,void*> FlagsChanged;
+       PBD::Signal2<void,Location*,void*> FlagsChanged;
 
        /* this is sent only when both start&end change at the same time */
 
-       sigc::signal<void,Location*> changed;
-   
+       PBD::Signal1<void,Location*> changed;
+
        /* CD Track / CD-Text info */
 
-       std::map<string, string> cd_info;
-       XMLNode& cd_info_node (const string &, const string &);
+       std::map<std::string, std::string> cd_info;
+       XMLNode& cd_info_node (const std::string &, const std::string &);
 
        XMLNode& get_state (void);
-       int set_state (const XMLNode&);
+       int set_state (const XMLNode&, int version);
 
   private:
-       string        _name;
-       nframes_t     _start;
-       nframes_t     _end;
+       std::string   _name;
+       nframes64_t   _start;
+       nframes64_t   _end;
        Flags         _flags;
        bool          _locked;
 
@@ -145,7 +144,7 @@ class Locations : public PBD::StatefulDestructible
 
        Locations ();
        ~Locations ();
-       
+
        const LocationList& list() { return locations; }
 
        void add (Location *, bool make_current = false);
@@ -155,7 +154,7 @@ class Locations : public PBD::StatefulDestructible
        void clear_ranges ();
 
        XMLNode& get_state (void);
-       int set_state (const XMLNode&);
+       int set_state (const XMLNode&, int version);
         Location *get_location_by_id(PBD::ID);
 
        Location* auto_loop_location () const;
@@ -163,23 +162,24 @@ class Locations : public PBD::StatefulDestructible
        Location* end_location() const;
        Location* start_location() const;
 
-       int next_available_name(string& result,string base);
+       int next_available_name(std::string& result,std::string base);
        uint32_t num_range_markers() const;
 
        int set_current (Location *, bool want_lock = true);
        Location *current () const { return current_location; }
 
-       Location *first_location_before (nframes_t, bool include_special_ranges = false);
-       Location *first_location_after (nframes_t, bool include_special_ranges = false);
+       Location *first_location_before (nframes64_t, bool include_special_ranges = false);
+       Location *first_location_after (nframes64_t, bool include_special_ranges = false);
+
+       void marks_either_side (nframes64_t const, nframes64_t &, nframes64_t &) const;
 
-       nframes_t first_mark_before (nframes_t, bool include_special_ranges = false);
-       nframes_t first_mark_after (nframes_t, bool include_special_ranges = false);
+       void find_all_between (nframes64_t start, nframes64_t, LocationList&, Location::Flags);
 
-       sigc::signal<void,Location*> current_changed;
-       sigc::signal<void>           changed;
-       sigc::signal<void,Location*> added;
-       sigc::signal<void,Location*> removed;
-       sigc::signal<void,Change>    StateChanged;
+       PBD::Signal1<void,Location*> current_changed;
+       PBD::Signal0<void>           changed;
+       PBD::Signal1<void,Location*> added;
+       PBD::Signal1<void,Location*> removed;
+       PBD::Signal1<void,Change>    StateChanged;
 
        template<class T> void apply (T& obj, void (T::*method)(LocationList&)) {
                Glib::Mutex::Lock lm (lock);