std::shared_ptr
[dcpomatic.git] / src / wx / timeline_dialog.h
index b7aaba14d92e16839968d4e20c386e637ec63597..97ddca964aff23df74efaf65c50635ed1bc739a4 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -18,8 +18,6 @@
 
 */
 
-#include <boost/shared_ptr.hpp>
-#include <boost/weak_ptr.hpp>
 #include <wx/wx.h>
 #include "timeline.h"
 
@@ -28,16 +26,15 @@ class Playlist;
 class TimelineDialog : public wxDialog
 {
 public:
-       TimelineDialog (ContentPanel *, boost::shared_ptr<Film>);
+       TimelineDialog (ContentPanel *, std::shared_ptr<Film>, std::weak_ptr<FilmViewer> viewer);
 
        void set_selection (ContentList selection);
 
 private:
-       void film_changed (Film::Property);
+       void film_change (ChangeType type, Film::Property);
        void tool_clicked (wxCommandEvent& id);
-       wxString bitmap_path (std::string name);
 
-       boost::weak_ptr<Film> _film;
+       std::weak_ptr<Film> _film;
        Timeline _timeline;
        wxToolBar* _toolbar;
        boost::signals2::scoped_connection _film_changed_connection;