Fix warning cause by previous libdcp bump.
[dcpomatic.git] / src / wx / fonts_dialog.h
index 0ef3658cfd7f572f32fc0bc96398bbd64b8cd739..c741131c41c4cd707a7aea7e3e1aa2eab0049dfc 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2018 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 <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/listctrl.h>
 #include <wx/wx.h>
-DCPOMATIC_ENABLE_WARNINGS
+LIBDCP_ENABLE_WARNINGS
 #include <boost/filesystem.hpp>
+#include <memory>
+
 
 class Content;
 class TextContent;
+namespace dcpomatic {
+       class Font;
+}
+
 
 class FontsDialog : public wxDialog
 {
@@ -37,10 +44,13 @@ private:
        void setup ();
        void setup_sensitivity ();
        void selection_changed ();
-       void edit_clicked ();
+       void set_from_file_clicked ();
+       void set_from_system_font_clicked ();
+       std::shared_ptr<dcpomatic::Font> get_selection ();
 
        std::weak_ptr<Content> _content;
        std::weak_ptr<TextContent> _caption;
        wxListCtrl* _fonts;
-       wxButton* _edit;
+       wxButton* _set_from_file;
+       wxButton* _set_from_system_font = nullptr;
 };