Rename _texture -> _video_texture.
[dcpomatic.git] / src / wx / fonts_dialog.h
index e251ddab183d9412d958126c81bab8ae50b156f2..a77684cb9e6984e8fb3eecc2efb7683d93b8ca0e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
+#include "lib/warnings.h"
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/listctrl.h>
 #include <wx/wx.h>
-#include <boost/shared_ptr.hpp>
-#include <boost/weak_ptr.hpp>
+DCPOMATIC_ENABLE_WARNINGS
 #include <boost/filesystem.hpp>
 
+
 class Content;
+class TextContent;
+
 
 class FontsDialog : public wxDialog
 {
 public:
-       FontsDialog (wxWindow* parent, boost::shared_ptr<Content>);
+       FontsDialog (wxWindow* parent, std::shared_ptr<Content>, std::shared_ptr<TextContent> caption);
 
 private:
        void setup ();
@@ -37,7 +42,8 @@ private:
        void selection_changed ();
        void edit_clicked ();
 
-       boost::weak_ptr<Content> _content;
+       std::weak_ptr<Content> _content;
+       std::weak_ptr<TextContent> _caption;
        wxListCtrl* _fonts;
        wxButton* _edit;
 };