C++11 tidying.
[dcpomatic.git] / src / wx / film_editor.h
index 84a1d361b7e3af37afec1085930a7e5b5156fdd6..6aff127d8a6cfe4156a478e8a971220aad133fae 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file src/wx/film_editor.h
  *  @brief FilmEditor class.
  */
 
+
 #include "lib/film.h"
 #include "lib/warnings.h"
 DCPOMATIC_DISABLE_WARNINGS
@@ -29,21 +31,24 @@ DCPOMATIC_DISABLE_WARNINGS
 DCPOMATIC_ENABLE_WARNINGS
 #include <boost/signals2.hpp>
 
+
 class wxNotebook;
 class Film;
 class ContentPanel;
 class DCPPanel;
 class FilmViewer;
 
+
 /** @class FilmEditor
  *  @brief A wx widget to edit a film's metadata, and perform various functions.
  */
 class FilmEditor : public wxPanel
 {
 public:
-       FilmEditor (wxWindow *, boost::weak_ptr<FilmViewer> viewer);
+       FilmEditor (wxWindow *, std::weak_ptr<FilmViewer> viewer);
 
-       void set_film (boost::shared_ptr<Film>);
+       void set_film (std::shared_ptr<Film>);
+       void first_shown ();
 
        boost::signals2::signal<void (boost::filesystem::path)> FileChanged;
        boost::signals2::signal<void (void)> SelectionChanged;
@@ -54,10 +59,12 @@ public:
                return _content_panel;
        }
 
-       boost::shared_ptr<Film> film () const {
+       std::shared_ptr<Film> film () const {
                return _film;
        }
 
+private:
+
        /* Handle changes to the model */
        void film_change (ChangeType, Film::Property);
        void film_content_change (ChangeType type, int);
@@ -70,5 +77,5 @@ public:
        DCPPanel* _dcp_panel;
 
        /** The film we are editing */
-       boost::shared_ptr<Film> _film;
+       std::shared_ptr<Film> _film;
 };