summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/location.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-09 16:40:31 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-09 16:40:31 +0000
commit5b520324ceab2559723b4ef5127301fa61ff4846 (patch)
tree13850a356fabdcbd55ca527fc5faf2fda63cb209 /libs/ardour/ardour/location.h
parentaa9fd3334976ceae7e164c3fabc87e55fc921dff (diff)
Allow markers to be glued to bar/beat time. Fixes #1815.
git-svn-id: svn://localhost/ardour2/branches/3.0@7573 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/location.h')
-rw-r--r--libs/ardour/ardour/location.h43
1 files changed, 18 insertions, 25 deletions
diff --git a/libs/ardour/ardour/location.h b/libs/ardour/ardour/location.h
index 24387cdaef..cafcf38494 100644
--- a/libs/ardour/ardour/location.h
+++ b/libs/ardour/ardour/location.h
@@ -34,10 +34,11 @@
#include "pbd/statefuldestructible.h"
#include "ardour/ardour.h"
+#include "ardour/session_handle.h"
namespace ARDOUR {
-class Location : public PBD::StatefulDestructible
+class Location : public SessionHandleRef, public PBD::StatefulDestructible
{
public:
enum Flags {
@@ -50,26 +51,10 @@ class Location : public PBD::StatefulDestructible
IsSessionRange = 0x40
};
- 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;
- _flags = Flags (0);
- _locked = false;
- }
-
+ Location (Session &);
+ Location (Session &, nframes64_t, nframes64_t, const std::string &, Flags bits = Flags(0));
Location (const Location& other);
- Location (const XMLNode&);
+ Location (Session &, const XMLNode&);
Location* operator= (const Location& other);
bool locked() const { return _locked; }
@@ -80,9 +65,9 @@ class Location : public PBD::StatefulDestructible
nframes64_t end() const { return _end; }
nframes64_t length() const { return _end - _start; }
- int set_start (nframes64_t s, bool force = false);
- int set_end (nframes64_t e, bool force = false);
- int set (nframes64_t start, nframes64_t end);
+ int set_start (nframes64_t s, bool force = false, bool allow_bbt_recompute = true);
+ int set_end (nframes64_t e, bool force = false, bool allow_bbt_recompute = true);
+ int set (nframes64_t start, nframes64_t end, bool allow_bbt_recompute = true);
int move_to (nframes64_t pos);
@@ -124,23 +109,31 @@ class Location : public PBD::StatefulDestructible
XMLNode& get_state (void);
int set_state (const XMLNode&, int version);
+ PositionLockStyle position_lock_style() const { return _position_lock_style; }
+ void set_position_lock_style (PositionLockStyle ps);
+ void recompute_frames_from_bbt ();
+
private:
std::string _name;
nframes64_t _start;
+ BBT_Time _bbt_start;
nframes64_t _end;
+ BBT_Time _bbt_end;
Flags _flags;
bool _locked;
+ PositionLockStyle _position_lock_style;
void set_mark (bool yn);
bool set_flag_internal (bool yn, Flags flag);
+ void recompute_bbt_from_frames ();
};
-class Locations : public PBD::StatefulDestructible
+class Locations : public SessionHandleRef, public PBD::StatefulDestructible
{
public:
typedef std::list<Location *> LocationList;
- Locations ();
+ Locations (Session &);
~Locations ();
const LocationList& list() { return locations; }