X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fplayer_information.h;h=b932281746b0fe37c2e00c4860f3ce8d58935404;hb=6ef1fc5f40567650ca9ef2b7644e4fdd97640ae6;hp=7eafeb122cfb25f3f61c3fedce044a4133ab9871;hpb=0b7c380031db6aa2ce546a2a0c89926f40eae6b5;p=dcpomatic.git diff --git a/src/wx/player_information.h b/src/wx/player_information.h index 7eafeb122..b93228174 100644 --- a/src/wx/player_information.h +++ b/src/wx/player_information.h @@ -20,13 +20,14 @@ #include #include +#include class FilmViewer; class PlayerInformation : public wxPanel { public: - PlayerInformation (wxWindow* parent, FilmViewer* viewer); + PlayerInformation (wxWindow* parent, boost::weak_ptr viewer); void triggered_update (); @@ -34,11 +35,10 @@ private: void periodic_update (); - FilmViewer* _viewer; + boost::weak_ptr _viewer; wxSizer* _sizer; - wxStaticText* _cpl_name; - wxStaticText* _size; - wxStaticText* _length; + wxStaticText** _dcp; wxStaticText* _dropped; + wxStaticText* _decode_resolution; boost::scoped_ptr _timer; };