X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffonts_dialog.cc;h=2fecdc086433996267e0a9dc6ef8959697cc5bc9;hb=5f62647ae8896b62439fa6c29b66fd640072838a;hp=092faf9e6c0e96cb2de50daf41aabd56696b9deb;hpb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;p=dcpomatic.git diff --git a/src/wx/fonts_dialog.cc b/src/wx/fonts_dialog.cc index 092faf9e6..2fecdc086 100644 --- a/src/wx/fonts_dialog.cc +++ b/src/wx/fonts_dialog.cc @@ -1,38 +1,51 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ -#include "lib/font.h" -#include "lib/subtitle_content.h" + +#include "dcpomatic_button.h" #include "fonts_dialog.h" +#include "system_font_dialog.h" #include "wx_util.h" +#include "lib/content.h" +#include "lib/font.h" +#include "lib/text_content.h" +#include +#include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS +#include + using std::list; +using std::shared_ptr; using std::string; -using std::cout; -using boost::shared_ptr; +using namespace dcpomatic; + -FontsDialog::FontsDialog (wxWindow* parent, shared_ptr content) +FontsDialog::FontsDialog (wxWindow* parent, shared_ptr content, shared_ptr caption) : wxDialog (parent, wxID_ANY, _("Fonts")) , _content (content) + , _caption (caption) { - _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (400, 200), wxLC_REPORT | wxLC_SINGLE_SEL); + _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (550, 200), wxLC_REPORT | wxLC_SINGLE_SEL); { wxListItem ip; @@ -45,109 +58,158 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr content) { wxListItem ip; ip.SetId (1); - ip.SetText (_("Font file")); - ip.SetWidth (300); + ip.SetText (_("File")); + ip.SetWidth (450); _fonts->InsertColumn (1, ip); } - wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL); - sizer->Add (_fonts, 1, wxEXPAND); + auto sizer = new wxBoxSizer (wxHORIZONTAL); + sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP); - { - wxSizer* s = new wxBoxSizer (wxVERTICAL); - _set_file = new wxButton (this, wxID_ANY, _("Set file...")); - s->Add (_set_file, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP); - sizer->Add (s, 0, wxLEFT, DCPOMATIC_SIZER_X_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); - wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); +#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); - wxSizer* buttons = CreateSeparatedButtonSizer (wxOK); + auto buttons = CreateSeparatedButtonSizer (wxOK); if (buttons) { overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); } SetSizerAndFit (overall_sizer); - _set_file->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FontsDialog::set_file_clicked, this)); - _fonts->Bind (wxEVT_COMMAND_LIST_ITEM_SELECTED, boost::bind (&FontsDialog::selection_changed, this)); - _fonts->Bind (wxEVT_COMMAND_LIST_ITEM_DESELECTED, boost::bind (&FontsDialog::selection_changed, 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)); setup (); - update_sensitivity (); } + void FontsDialog::setup () { - shared_ptr content = _content.lock (); - if (!content) { + auto content = _content.lock (); + auto caption = _caption.lock (); + if (!content || !caption) { return; } _fonts->DeleteAllItems (); - list > fonts = content->fonts (); size_t n = 0; - for (list >::const_iterator i = fonts.begin(); i != fonts.end(); ++i) { + for (auto i: caption->fonts ()) { wxListItem item; item.SetId (n); _fonts->InsertItem (item); - _fonts->SetItem (n, 0, std_to_wx ((*i)->id ())); - if ((*i)->file ()) { - _fonts->SetItem (n, 1, (*i)->file().get().leaf().string ()); + auto const id = i->id().empty() ? _("Unspecified") : std_to_wx(i->id()); + _fonts->SetItem(n, 0, id); + _fonts->SetItemData(n, i->id().empty()); + if (i->file()) { + _fonts->SetItem(n, 1, i->file()->filename().string()); } ++n; } + + setup_sensitivity (); } + void -FontsDialog::set_file_clicked () +FontsDialog::selection_changed () { - shared_ptr content = _content.lock (); - if (!content) { - return; - } + setup_sensitivity (); +} - int item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); - if (item == -1) { - return; + +void +FontsDialog::setup_sensitivity () +{ + int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); + _set_from_file->Enable (item != -1); + if (_set_from_system_font) { + _set_from_system_font->Enable (item != -1); } +} - /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using - non-Latin filenames or paths. - */ - wxFileDialog* d = new wxFileDialog (this, _("Choose a font file"), wxT (""), wxT (""), wxT ("*.ttf"), wxFD_CHANGE_DIR); - int const r = d->ShowModal (); - if (r != wxID_OK) { - d->Destroy (); - return; +shared_ptr +FontsDialog::get_selection () +{ + auto caption = _caption.lock(); + if (!caption) { + return {}; } - string id = 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)); + return caption->get_font(id); +} - list > fonts = content->fonts (); - for (list >::iterator i = fonts.begin(); i != fonts.end(); ++i) { - if ((*i)->id() == id) { - (*i)->set_file (wx_to_std (d->GetPath ())); - } + +void +FontsDialog::set_from_file_clicked () +{ + auto font = get_selection(); + if (!font) { + return; } - d->Destroy (); + /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using + non-Latin filenames or paths. + */ + wxString default_dir = ""; +#ifdef DCPOMATIC_LINUX + if (dcp::filesystem::exists("/usr/share/fonts/truetype")) { + default_dir = "/usr/share/fonts/truetype"; + } else { + default_dir = "/usr/share/fonts"; + } +#endif +#ifdef DCPOMATIC_OSX + default_dir = "/System/Library/Fonts"; +#endif + + auto d = make_wx(this, _("Choose a font file"), default_dir, wxT(""), wxT("*.ttf;*.otf;*.ttc"), wxFD_CHANGE_DIR); + + if (d->ShowModal() != wxID_OK) { + return; + } + font->set_file (wx_to_std(d->GetPath())); setup (); } -void -FontsDialog::selection_changed () -{ - update_sensitivity (); -} void -FontsDialog::update_sensitivity () +FontsDialog::set_from_system_font_clicked() { - int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); - _set_file->Enable (item != -1); + auto font = get_selection(); + if (!font) { + return; + } + + auto dialog = make_wx(this); + if (dialog->ShowModal() == wxID_OK) { + auto font_file = dialog->get_font(); + if (font_file) { + font->set_file(*font_file); + } + } + + setup (); }