Move video frame rate ('prepared-for') into Content.
[dcpomatic.git] / src / wx / timeline_dialog.h
index b64445d9cf88447a8b5638f1d579641864700879..ce7c9113ee3948b33ec7bf5b66d7ae7917b95286 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
 
     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
 
 class Playlist;
 
-class DCPTimelineDialog : public wxDialog
+class TimelineDialog : public wxDialog
 {
 public:
-       DCPTimelineDialog (FilmEditor *, boost::shared_ptr<Film>);
+       TimelineDialog (ContentPanel *, boost::shared_ptr<Film>);
+
+       void set_selection (ContentList selection);
 
 private:
        void snap_toggled ();
-       
-       DCPTimeline _timeline;
+       void sequence_toggled ();
+       void film_changed (Film::Property);
+
+       boost::weak_ptr<Film> _film;
+       Timeline _timeline;
        wxCheckBox* _snap;
+       wxCheckBox* _sequence;
+       boost::signals2::scoped_connection _film_changed_connection;
 };