Modify the downmix mapping so that we include Ls, Rs and Lfe (#1281).
[dcpomatic.git] / src / wx / player_information.h
index af18cfb76dc8646dccae7f559fee48832d585591..747cd5a20a0acd12ea03c6795541683c7eb0fe4a 100644 (file)
@@ -19,6 +19,7 @@
 */
 
 #include <wx/wx.h>
+#include <boost/scoped_ptr.hpp>
 
 class FilmViewer;
 
@@ -27,13 +28,16 @@ class PlayerInformation : public wxPanel
 public:
        PlayerInformation (wxWindow* parent, FilmViewer* viewer);
 
-       void update ();
+       void triggered_update ();
 
 private:
 
+       void periodic_update ();
+
        FilmViewer* _viewer;
        wxSizer* _sizer;
-       wxStaticText* _cpl_name;
-       wxStaticText* _size;
-       wxStaticText* _length;
+       wxStaticText** _dcp;
+       wxStaticText* _dropped;
+       wxStaticText* _decode_resolution;
+       boost::scoped_ptr<wxTimer> _timer;
 };