X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fplayer_information.h;h=2ce49371431e3f6e8162aedd66105918e22a40d2;hb=275c1e78c022e5d8c41e4f718fab2c355f41f785;hp=af18cfb76dc8646dccae7f559fee48832d585591;hpb=e0c524cbc4f006a4319c3ce8aa7625f9d70d054a;p=dcpomatic.git diff --git a/src/wx/player_information.h b/src/wx/player_information.h index af18cfb76..2ce493714 100644 --- a/src/wx/player_information.h +++ b/src/wx/player_information.h @@ -18,22 +18,35 @@ */ + +#include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS +#include + class FilmViewer; + class PlayerInformation : public wxPanel { public: - PlayerInformation (wxWindow* parent, FilmViewer* viewer); + PlayerInformation(wxWindow* parent, FilmViewer const& viewer); - void update (); + void triggered_update (); private: - FilmViewer* _viewer; + void periodic_update (); + + FilmViewer const& _viewer; + wxPanel* _kdm_panel; wxSizer* _sizer; - wxStaticText* _cpl_name; - wxStaticText* _size; - wxStaticText* _length; + wxStaticText** _dcp; + wxStaticText* _kdm_from; + wxStaticText* _kdm_to; + wxStaticText* _dropped; + wxStaticText* _decode_resolution; + boost::scoped_ptr _timer; };