Rearrange subtitle font management.
[dcpomatic.git] / src / wx / fonts_dialog.cc
1 /*
2     Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "dcpomatic_button.h"
23 #include "fonts_dialog.h"
24 #include "system_font_dialog.h"
25 #include "wx_util.h"
26 #include "lib/content.h"
27 #include "lib/font.h"
28 #include "lib/text_content.h"
29 #include <dcp/warnings.h>
30 LIBDCP_DISABLE_WARNINGS
31 #include <wx/wx.h>
32 LIBDCP_ENABLE_WARNINGS
33 #include <memory>
34
35
36 using std::list;
37 using std::shared_ptr;
38 using std::string;
39 using namespace dcpomatic;
40
41
42 FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<Content> content, shared_ptr<TextContent> caption)
43         : wxDialog (parent, wxID_ANY, _("Fonts"))
44         , _content (content)
45         , _caption (caption)
46 {
47         _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (550, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
48
49         {
50                 wxListItem ip;
51                 ip.SetId (0);
52                 ip.SetText (_("ID"));
53                 ip.SetWidth (100);
54                 _fonts->InsertColumn (0, ip);
55         }
56
57         {
58                 wxListItem ip;
59                 ip.SetId (1);
60                 ip.SetText (_("File"));
61                 ip.SetWidth (450);
62                 _fonts->InsertColumn (1, ip);
63         }
64
65         auto sizer = new wxBoxSizer (wxHORIZONTAL);
66         sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
67
68         _edit = new Button (this, _("Edit..."));
69         sizer->Add (_edit, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
70
71         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
72         overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
73
74         auto buttons = CreateSeparatedButtonSizer (wxOK);
75         if (buttons) {
76                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
77         }
78
79         SetSizerAndFit (overall_sizer);
80
81         _edit->Bind (wxEVT_BUTTON, boost::bind (&FontsDialog::edit_clicked, this));
82         _fonts->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&FontsDialog::selection_changed, this));
83         _fonts->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&FontsDialog::selection_changed, this));
84
85         setup ();
86 }
87
88
89 void
90 FontsDialog::setup ()
91 {
92         auto content = _content.lock ();
93         auto caption = _caption.lock ();
94         if (!content || !caption) {
95                 return;
96         }
97
98         _fonts->DeleteAllItems ();
99         size_t n = 0;
100         for (auto i: caption->fonts ()) {
101                 wxListItem item;
102                 item.SetId (n);
103                 _fonts->InsertItem (item);
104                 auto const id = i->id().empty() ? _("Unspecified") : std_to_wx(i->id());
105                 _fonts->SetItem(n, 0, id);
106                 _fonts->SetItemData(n, i->id().empty());
107                 if (i->file()) {
108                         _fonts->SetItem(n, 1, i->file()->leaf().string());
109                 }
110                 ++n;
111         }
112
113         setup_sensitivity ();
114 }
115
116
117 void
118 FontsDialog::selection_changed ()
119 {
120         setup_sensitivity ();
121 }
122
123
124 void
125 FontsDialog::setup_sensitivity ()
126 {
127         int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
128         _edit->Enable (item != -1);
129 }
130
131
132 void
133 FontsDialog::edit_clicked ()
134 {
135         auto content = _content.lock ();
136         auto caption = _caption.lock ();
137         if (!content || !caption) {
138                 return;
139         }
140
141         int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
142         auto const id = _fonts->GetItemData(item) ? "" : wx_to_std(_fonts->GetItemText(item, 0));
143         auto font = caption->get_font(id);
144         if (!font) {
145                 return;
146         }
147
148         /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
149            non-Latin filenames or paths.
150         */
151         wxString default_dir = "";
152 #ifdef DCPOMATIC_LINUX
153         if (boost::filesystem::exists ("/usr/share/fonts/truetype")) {
154                 default_dir = "/usr/share/fonts/truetype";
155         } else {
156                 default_dir = "/usr/share/fonts";
157         }
158 #endif
159 #ifdef DCPOMATIC_OSX
160         default_dir = "/System/Library/Fonts";
161 #endif
162
163         auto d = new wxFileDialog (this, _("Choose a font file"), default_dir, wxT(""), wxT("*.ttf;*.otf;*.ttc"), wxFD_CHANGE_DIR);
164         int const r = d->ShowModal ();
165
166         if (r != wxID_OK) {
167                 d->Destroy ();
168                 return;
169         }
170
171         font->set_file (wx_to_std(d->GetPath()));
172         d->Destroy ();
173
174         setup ();
175 }