Add basic KDM information to the player (#2225).
[dcpomatic.git] / src / wx / player_information.h
index 0dd6c4ad0e8f9c41f584b90ca43d729afc291dc2..b311847cb17be9a6c638eff14e71be36ad081848 100644 (file)
 
 */
 
-#include "lib/warnings.h"
-DCPOMATIC_DISABLE_WARNINGS
+
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
-DCPOMATIC_ENABLE_WARNINGS
+LIBDCP_ENABLE_WARNINGS
 #include <boost/scoped_ptr.hpp>
 
+
 class FilmViewer;
 
+
 class PlayerInformation : public wxPanel
 {
 public:
@@ -38,8 +41,11 @@ private:
        void periodic_update ();
 
        std::weak_ptr<FilmViewer> _viewer;
+       wxPanel* _kdm_panel;
        wxSizer* _sizer;
        wxStaticText** _dcp;
+       wxStaticText* _kdm_from;
+       wxStaticText* _kdm_to;
        wxStaticText* _dropped;
        wxStaticText* _decode_resolution;
        boost::scoped_ptr<wxTimer> _timer;