std::shared_ptr
[dcpomatic.git] / src / wx / simple_video_view.h
index f318e778b36db9517812aa90a0b4cdb5d0d6c469..31756b5d85eceecbe62a693a5ed524adeb6edf5f 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;
 
@@ -29,25 +33,26 @@ class SimpleVideoView : public VideoView
 public:
        SimpleVideoView (FilmViewer* viewer, wxWindow* parent);
 
-       void set_image (boost::shared_ptr<const Image> image) {
-               _image = image;
-       }
-
        wxWindow* get () const {
                return _panel;
        }
 
        void update ();
        void start ();
-       bool display_next_frame (bool non_blocking);
+       NextFrameResult display_next_frame (bool non_blocking);
 
 private:
+       void set_image (std::shared_ptr<const Image> image) {
+               _image = image;
+       }
+
+       void refresh_panel ();
        void paint ();
        void timer ();
-       void display_player_video ();
 
        wxPanel* _panel;
-       boost::shared_ptr<const Image> _image;
+       std::shared_ptr<const Image> _image;
        wxTimer _timer;
        Position<int> _inter_position;
+       dcp::Size _inter_size;
 };