summaryrefslogtreecommitdiff
path: root/src/lib/film.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-17 15:22:57 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-12 11:05:26 +0100
commit56cb528a5781e67d84bdfb6cb8223931b4d283d0 (patch)
tree53ae6efee609af6fcbfa6f14d062dcf3bbc8941b /src/lib/film.h
parentdbfbdcba0f5f08a932ba199039f2ca1530e482ac (diff)
Un-attached reel UI.
Diffstat (limited to 'src/lib/film.h')
-rw-r--r--src/lib/film.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/film.h b/src/lib/film.h
index 937ab99e8..76068136a 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -177,6 +177,8 @@ public:
SEQUENCE_VIDEO,
INTEROP,
AUDIO_PROCESSOR,
+ REEL_TYPE,
+ REEL_LENGTH
};
@@ -252,6 +254,13 @@ public:
return _audio_processor;
}
+ ReelType reel_type () const {
+ return _reel_type;
+ }
+
+ int64_t reel_length () const {
+ return _reel_length;
+ }
/* SET */
@@ -280,6 +289,8 @@ public:
void set_sequence_video (bool);
void set_interop (bool);
void set_audio_processor (AudioProcessor const * processor);
+ void set_reel_type (ReelType);
+ void set_reel_length (int64_t);
/** Emitted when some property has of the Film has changed */
mutable boost::signals2::signal<void (Property)> Changed;
@@ -340,6 +351,8 @@ private:
bool _sequence_video;
bool _interop;
AudioProcessor const * _audio_processor;
+ ReelType _reel_type;
+ int64_t _reel_length;
int _state_version;