Same thing with inter_size.
[dcpomatic.git] / src / wx / simple_video_view.h
index 686a1a1f3cc83c686569a617dafd605e677aac39..86451fa66c5e7f80073e4c648d1a793e7e256ea3 100644 (file)
@@ -19,6 +19,8 @@
 */
 
 #include "video_view.h"
+#include "lib/position.h"
+#include <dcp/types.h>
 #include <wx/wx.h>
 
 class FilmViewer;
@@ -37,10 +39,17 @@ public:
        }
 
        void update ();
+       void start ();
+       bool display_next_frame (bool non_blocking);
 
 private:
        void paint ();
+       void timer ();
+       void display_player_video ();
 
        wxPanel* _panel;
        boost::shared_ptr<const Image> _image;
+       wxTimer _timer;
+       Position<int> _inter_position;
+       dcp::Size _inter_size;
 };