Note that newer libsub version is required.
[dcpomatic.git] / src / wx / fonts_dialog.h
index b62ba381747bfa2bd274295956e64c33dbbc9f60..c741131c41c4cd707a7aea7e3e1aa2eab0049dfc 100644 (file)
 */
 
 
-#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
@@ -41,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;
 };