X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fplayer_information.h;h=2ce49371431e3f6e8162aedd66105918e22a40d2;hb=30f6f44121ee879e8cb3619e207e8b7d39bb2c3d;hp=7d784d7156351eb57e6538dc41e060a3ab8baf8e;hpb=709a3af8ac11cdeb688f2d77209e036a88b3c714;p=dcpomatic.git diff --git a/src/wx/player_information.h b/src/wx/player_information.h index 7d784d715..2ce493714 100644 --- a/src/wx/player_information.h +++ b/src/wx/player_information.h @@ -18,21 +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* _decoded_fps; + wxStaticText** _dcp; + wxStaticText* _kdm_from; + wxStaticText* _kdm_to; + wxStaticText* _dropped; + wxStaticText* _decode_resolution; + boost::scoped_ptr _timer; };