X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffonts_dialog.cc;h=66f8ab0e486dfab24dde0c3f6c36c1aa49933ed9;hb=ab0e8cdcafdcb83096012380f674b8280474e851;hp=0660eea39ec2fbdec05f327f6270b46a4e02b3b0;hpb=8b2a3f31b6b4238d8534549f495e7276174ddfba;p=dcpomatic.git diff --git a/src/wx/fonts_dialog.cc b/src/wx/fonts_dialog.cc index 0660eea39..66f8ab0e4 100644 --- a/src/wx/fonts_dialog.cc +++ b/src/wx/fonts_dialog.cc @@ -21,7 +21,6 @@ #include "fonts_dialog.h" #include "wx_util.h" #include "system_font_dialog.h" -#include "font_files_dialog.h" #include "dcpomatic_button.h" #include "lib/font.h" #include "lib/content.h" @@ -34,6 +33,7 @@ using std::list; using std::string; using std::cout; using boost::shared_ptr; +using namespace dcpomatic; FontsDialog::FontsDialog (wxWindow* parent, shared_ptr content, shared_ptr caption) : wxDialog (parent, wxID_ANY, _("Fonts")) @@ -53,27 +53,11 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr content, shared_ { wxListItem ip; ip.SetId (1); - ip.SetText (_("Normal file")); - ip.SetWidth (150); + ip.SetText (_("File")); + ip.SetWidth (450); _fonts->InsertColumn (1, ip); } - { - wxListItem ip; - ip.SetId (2); - ip.SetText (_("Italic file")); - ip.SetWidth (150); - _fonts->InsertColumn (2, ip); - } - - { - wxListItem ip; - ip.SetId (3); - ip.SetText (_("Bold file")); - ip.SetWidth (150); - _fonts->InsertColumn (3, ip); - } - wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL); sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP); @@ -113,10 +97,8 @@ FontsDialog::setup () item.SetId (n); _fonts->InsertItem (item); _fonts->SetItem (n, 0, std_to_wx (i->id ())); - for (int j = 0; j < FontFiles::VARIANTS; ++j) { - if (i->file(static_cast(j))) { - _fonts->SetItem (n, j + 1, i->file(static_cast(j)).get().leaf().string ()); - } + if (i->file()) { + _fonts->SetItem (n, 1, i->file()->leaf().string ()); } ++n; } @@ -159,10 +141,30 @@ FontsDialog::edit_clicked () return; } - FontFilesDialog* d = new FontFilesDialog (this, font->files ()); - if (d->ShowModal () == wxID_OK) { - font->set_files (d->get ()); + /* 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 (boost::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 + + wxFileDialog* d = new wxFileDialog (this, _("Choose a font file"), default_dir, wxT(""), wxT("*.ttf;*.otf"), wxFD_CHANGE_DIR); + int const r = d->ShowModal (); + + if (r != wxID_OK) { + d->Destroy (); + return; } + + font->set_file (wx_to_std(d->GetPath())); d->Destroy (); setup ();