Bump libdcp to 1.8.67.
[dcpomatic.git] / src / wx / film_editor.h
index a5232d2e54681bfb330f32c68c1694d6cec316ec..296058c212e55ee7496ec589e53ac2eaca51e4d0 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
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
-DCPOMATIC_ENABLE_WARNINGS
+LIBDCP_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 *, std::weak_ptr<FilmViewer> viewer);
+       FilmEditor(wxWindow *, FilmViewer& viewer);
 
        void set_film (std::shared_ptr<Film>);
        void first_shown ();
 
-       boost::signals2::signal<void (boost::filesystem::path)> FileChanged;
        boost::signals2::signal<void (void)> SelectionChanged;
 
        /* Stuff for panels */
@@ -68,7 +71,6 @@ private:
        void set_general_sensitivity (bool);
        void active_jobs_changed (boost::optional<std::string>);
 
-       wxNotebook* _main_notebook;
        ContentPanel* _content_panel;
        DCPPanel* _dcp_panel;