C++11 tidying.
[dcpomatic.git] / src / wx / dcp_panel.h
index 465104c74bfa85c254b4a4669a5cd6bbbeb0fab4..9b362a26cd540118a433e2860dc9f64ef3649458 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "lib/config.h"
-#include <boost/shared_ptr.hpp>
-#include <boost/noncopyable.hpp>
+#include "lib/film.h"
+
 
 class wxNotebook;
 class wxPanel;
@@ -42,15 +43,18 @@ class Film;
 class FilmViewer;
 class Ratio;
 
-class DCPPanel : public boost::noncopyable
+class DCPPanel
 {
 public:
-       DCPPanel (wxNotebook *, boost::shared_ptr<Film>, boost::weak_ptr<FilmViewer> viewer);
+       DCPPanel (wxNotebook *, std::shared_ptr<Film>, std::weak_ptr<FilmViewer> viewer);
+
+       DCPPanel (DCPPanel const&) = delete;
+       DCPPanel& operator= (DCPPanel const&) = delete;
 
-       void set_film (boost::shared_ptr<Film>);
+       void set_film (std::shared_ptr<Film>);
        void set_general_sensitivity (bool);
 
-       void film_changed (int);
+       void film_changed (Film::Property);
        void film_content_changed (int);
 
        wxPanel* panel () const {
@@ -152,7 +156,7 @@ private:
        InteropMetadataDialog* _interop_metadata_dialog;
        SMPTEMetadataDialog* _smpte_metadata_dialog;
 
-       boost::shared_ptr<Film> _film;
-       boost::weak_ptr<FilmViewer> _viewer;
+       std::shared_ptr<Film> _film;
+       std::weak_ptr<FilmViewer> _viewer;
        bool _generally_sensitive;
 };