Fix failure to remove markers when the checkbox is unticked.
[dcpomatic.git] / src / wx / simple_video_view.h
index 8b3ec9f0bda91233857c978b25116c99baf46d20..cbb162023c29e402bb0561b0570a62cc0b8a38b7 100644 (file)
 */
 
 #include "video_view.h"
+#include "lib/position.h"
+#include "lib/warnings.h"
+#include <dcp/types.h>
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/wx.h>
+DCPOMATIC_ENABLE_WARNINGS
 
 class FilmViewer;
 
@@ -28,18 +33,22 @@ class SimpleVideoView : public VideoView
 public:
        SimpleVideoView (FilmViewer* viewer, wxWindow* parent);
 
-       void set_image (boost::shared_ptr<const Image> image) {
-               _image = image;
-       }
-
-       wxWindow* get () const {
+       wxWindow* get () const override {
                return _panel;
        }
 
+       void update () override;
+       void start () override;
+       NextFrameResult display_next_frame (bool non_blocking) override;
+
 private:
+       void refresh_panel ();
        void paint ();
+       void timer ();
 
-       FilmViewer* _viewer;
        wxPanel* _panel;
-       boost::shared_ptr<const Image> _image;
+       std::shared_ptr<const Image> _image;
+       wxTimer _timer;
+       Position<int> _inter_position;
+       dcp::Size _inter_size;
 };