Basic cinema / screen database.
[dcpomatic.git] / src / wx / film_viewer.h
index b1d0b99d34bafd3bc502e1968c8c9b0fdce81adb..6029c04f32a7c02769f715248ae4a25bce774bb6 100644 (file)
@@ -28,6 +28,7 @@
 class wxToggleButton;
 class FFmpegPlayer;
 class Image;
+class RGBPlusAlphaImage;
 class Subtitle;
 
 /** @class FilmViewer
@@ -44,28 +45,38 @@ private:
        void film_changed (Film::Property);
        void paint_panel (wxPaintEvent &);
        void panel_sized (wxSizeEvent &);
-       void slider_moved (wxCommandEvent &);
+       void slider_moved (wxScrollEvent &);
        void play_clicked (wxCommandEvent &);
        void timer (wxTimerEvent &);
-       void process_video (boost::shared_ptr<Image>, boost::shared_ptr<Subtitle>);
+       void process_video (boost::shared_ptr<Image>, bool, boost::shared_ptr<Subtitle>);
        void calculate_sizes ();
        void check_play_state ();
        void update_from_raw ();
        void decoder_changed ();
+       void raw_to_display ();
+       void get_frame ();
+       void active_jobs_changed (bool);
 
        boost::shared_ptr<Film> _film;
-       
+
+       wxBoxSizer* _v_sizer;
        wxPanel* _panel;
        wxSlider* _slider;
        wxToggleButton* _play_button;
        wxTimer _timer;
 
        Decoders _decoders;
-       boost::shared_ptr<Image> _raw;
-       boost::shared_ptr<Image> _display;
+       boost::shared_ptr<Image> _raw_frame;
+       boost::shared_ptr<Subtitle> _raw_sub;
+       boost::shared_ptr<Image> _display_frame;
+       boost::shared_ptr<RGBPlusAlphaImage> _display_sub;
+       Position _display_sub_position;
+       bool _got_frame;
 
        int _out_width;
        int _out_height;
        int _panel_width;
        int _panel_height;
+
+       bool _clear_required;
 };