Fix macOS build.
[dcpomatic.git] / src / wx / player_information.h
index 0fcbb15ee840920e99b9cbd402fbe96c455cdb29..269a9e6c7357555167fc6f7c6e585fbaeacf799a 100644 (file)
 
 */
 
+
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
 #include <boost/scoped_ptr.hpp>
 
+
 class FilmViewer;
 
+
 class PlayerInformation : public wxPanel
 {
 public:
-       PlayerInformation (wxWindow* parent, FilmViewer* viewer);
+       PlayerInformation (wxWindow* parent, std::weak_ptr<FilmViewer> viewer);
 
        void triggered_update ();
 
@@ -34,9 +40,10 @@ private:
 
        void periodic_update ();
 
-       FilmViewer* _viewer;
+       std::weak_ptr<FilmViewer> _viewer;
        wxSizer* _sizer;
        wxStaticText** _dcp;
        wxStaticText* _dropped;
+       wxStaticText* _decode_resolution;
        boost::scoped_ptr<wxTimer> _timer;
 };