X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Ffilm_viewer.h;h=97da5f59185e8c1b030b0abb2e683c866e8c4ced;hb=b7e546d9685c0a3304faa48e95516915d811ec5c;hp=d7b12703ee628495ee648751559a0fc2c3e60e5e;hpb=7151de6910e6072754bd38d50efa5a36622bb5c6;p=dcpomatic.git diff --git a/src/wx/film_viewer.h b/src/wx/film_viewer.h index d7b12703e..97da5f591 100644 --- a/src/wx/film_viewer.h +++ b/src/wx/film_viewer.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2018 Carl Hetherington + Copyright (C) 2012-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -25,6 +25,7 @@ #include "lib/film.h" #include "lib/config.h" #include "lib/player_text.h" +#include "lib/timer.h" #include #include @@ -78,9 +79,9 @@ public: boost::optional dcp_decode_reduction () const; void set_outline_content (bool o); void set_eyes (Eyes e); + void set_pad_black (bool p); void slow_refresh (); - bool quick_refresh (); int dropped () const { return _dropped; @@ -88,29 +89,49 @@ public: int audio_callback (void* out, unsigned int frames); +#ifdef DCPOMATIC_VARIANT_SWAROOP + void set_background_image (bool b) { + _background_image = b; + refresh_panel (); + } +#endif + + StateTimer const & state_timer () const { + return _state_timer; + } + + int gets () const { + return _gets; + } + boost::signals2::signal)> ImageChanged; boost::signals2::signal PositionChanged; - boost::signals2::signal Started; - boost::signals2::signal Stopped; - boost::signals2::signal FilmChanged; + boost::signals2::signal Started; + boost::signals2::signal Stopped; + /** While playing back we reached the end of the film (emitted from GUI thread) */ + boost::signals2::signal Finished; + + boost::signals2::signal PlaybackPermitted; private: void paint_panel (); void panel_sized (wxSizeEvent &); void timer (); void calculate_sizes (); - void check_play_state (); void player_change (ChangeType type, int, bool); void get (); void display_player_video (); void film_change (ChangeType, Film::Property); - void timecode_clicked (); void recreate_butler (); void config_changed (Config::Property); + bool maybe_draw_background_image (wxPaintDC& dc); + DCPTime time () const; DCPTime uncorrected_time () const; Frame average_latency () const; + void refresh_panel (); + bool quick_refresh (); boost::shared_ptr _film; boost::shared_ptr _player; @@ -150,6 +171,20 @@ private: bool _outline_content; Eyes _eyes; + /** true to pad the viewer panel with black, false to use + the normal window background colour. + */ + bool _pad_black; + +#ifdef DCPOMATIC_VARIANT_SWAROOP + bool _in_watermark; + int _watermark_x; + int _watermark_y; + bool _background_image; +#endif + + StateTimer _state_timer; + int _gets; boost::signals2::scoped_connection _config_changed_connection; };