Restore use of SystemFontDialog so that system fonts can be selected on Windows ...
authorCarl Hetherington <cth@carlh.net>
Mon, 30 May 2022 22:29:00 +0000 (00:29 +0200)
committerCarl Hetherington <cth@carlh.net>
Fri, 1 Jul 2022 19:37:30 +0000 (21:37 +0200)
src/wx/fonts_dialog.cc
src/wx/fonts_dialog.h

index 4ca338709dc3332ccb8ab3816ce28bc48cd57080..14fb368d3a31d5e09fa33c8e1507db502f821d4a 100644 (file)
@@ -65,8 +65,19 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<Content> content, shared_
        auto sizer = new wxBoxSizer (wxHORIZONTAL);
        sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
 
        auto sizer = new wxBoxSizer (wxHORIZONTAL);
        sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
 
-       _edit = new Button (this, _("Edit..."));
-       sizer->Add (_edit, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+       auto buttons_panel = new wxPanel(this);
+       auto buttons_sizer = new wxBoxSizer(wxVERTICAL);
+
+       _set_from_file = new Button(buttons_panel, _("Set from file..."));
+       buttons_sizer->Add (_set_from_file, 0, wxEXPAND | wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+
+#ifdef DCPOMATIC_WINDOWS
+       _set_from_system_font = new Button(buttons_panel, _("Set from system font..."));
+       buttons_sizer->Add (_set_from_system_font, 0, wxEXPAND | wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+#endif
+
+       buttons_panel->SetSizer(buttons_sizer);
+       sizer->Add(buttons_panel);
 
        auto overall_sizer = new wxBoxSizer (wxVERTICAL);
        overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
 
        auto overall_sizer = new wxBoxSizer (wxVERTICAL);
        overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
@@ -78,7 +89,10 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<Content> content, shared_
 
        SetSizerAndFit (overall_sizer);
 
 
        SetSizerAndFit (overall_sizer);
 
-       _edit->Bind (wxEVT_BUTTON, boost::bind (&FontsDialog::edit_clicked, this));
+       _set_from_file->Bind(wxEVT_BUTTON, boost::bind(&FontsDialog::set_from_file_clicked, this));
+       if (_set_from_system_font) {
+               _set_from_system_font->Bind(wxEVT_BUTTON, boost::bind(&FontsDialog::set_from_system_font_clicked, this));
+       }
        _fonts->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&FontsDialog::selection_changed, this));
        _fonts->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&FontsDialog::selection_changed, this));
 
        _fonts->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&FontsDialog::selection_changed, this));
        _fonts->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&FontsDialog::selection_changed, this));
 
@@ -125,22 +139,31 @@ void
 FontsDialog::setup_sensitivity ()
 {
        int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
 FontsDialog::setup_sensitivity ()
 {
        int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
-       _edit->Enable (item != -1);
+       _set_from_file->Enable (item != -1);
+       if (_set_from_system_font) {
+               _set_from_system_font->Enable (item != -1);
+       }
 }
 
 
 }
 
 
-void
-FontsDialog::edit_clicked ()
+shared_ptr<Font>
+FontsDialog::get_selection ()
 {
 {
-       auto content = _content.lock ();
-       auto caption = _caption.lock ();
-       if (!content || !caption) {
-               return;
+       auto caption = _caption.lock();
+       if (!caption) {
+               return {};
        }
 
        int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
        auto const id = _fonts->GetItemData(item) ? "" : wx_to_std(_fonts->GetItemText(item, 0));
        }
 
        int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
        auto const id = _fonts->GetItemData(item) ? "" : wx_to_std(_fonts->GetItemText(item, 0));
-       auto font = caption->get_font(id);
+       return caption->get_font(id);
+}
+
+
+void
+FontsDialog::set_from_file_clicked ()
+{
+       auto font = get_selection();
        if (!font) {
                return;
        }
        if (!font) {
                return;
        }
@@ -173,3 +196,25 @@ FontsDialog::edit_clicked ()
 
        setup ();
 }
 
        setup ();
 }
+
+
+void
+FontsDialog::set_from_system_font_clicked()
+{
+       auto font = get_selection();
+       if (!font) {
+               return;
+       }
+
+       auto dialog = new SystemFontDialog(this);
+       auto const r = dialog->ShowModal();
+       if (r == wxID_OK) {
+               auto font_file = dialog->get_font();
+               if (font_file) {
+                       font->set_file(*font_file);
+               }
+       }
+
+       dialog->Destroy();
+       setup ();
+}
index 612971031bebe7473ea9a196a7e7a105792512f1..c741131c41c4cd707a7aea7e3e1aa2eab0049dfc 100644 (file)
@@ -30,6 +30,9 @@ LIBDCP_ENABLE_WARNINGS
 
 class Content;
 class TextContent;
 
 class Content;
 class TextContent;
+namespace dcpomatic {
+       class Font;
+}
 
 
 class FontsDialog : public wxDialog
 
 
 class FontsDialog : public wxDialog
@@ -41,10 +44,13 @@ private:
        void setup ();
        void setup_sensitivity ();
        void selection_changed ();
        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;
 
        std::weak_ptr<Content> _content;
        std::weak_ptr<TextContent> _caption;
        wxListCtrl* _fonts;
-       wxButton* _edit;
+       wxButton* _set_from_file;
+       wxButton* _set_from_system_font = nullptr;
 };
 };