Disable warnings around all wx includes.
[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 "lib/warnings.h"
30 DCPOMATIC_DISABLE_WARNINGS
31 #include <wx/wx.h>
32 DCPOMATIC_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                 _fonts->SetItem (n, 0, std_to_wx (i->id ()));
105                 if (i->file()) {
106                         _fonts->SetItem (n, 1, i->file()->leaf().string ());
107                 }
108                 ++n;
109         }
110
111         setup_sensitivity ();
112 }
113
114
115 void
116 FontsDialog::selection_changed ()
117 {
118         setup_sensitivity ();
119 }
120
121
122 void
123 FontsDialog::setup_sensitivity ()
124 {
125         int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
126         _edit->Enable (item != -1);
127 }
128
129
130 void
131 FontsDialog::edit_clicked ()
132 {
133         auto content = _content.lock ();
134         auto caption = _caption.lock ();
135         if (!content || !caption) {
136                 return;
137         }
138
139         int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
140         auto const id = wx_to_std (_fonts->GetItemText(item, 0));
141         shared_ptr<Font> font;
142         for (auto i: caption->fonts()) {
143                 if (i->id() == id) {
144                         font = i;
145                 }
146         }
147
148         if (!font) {
149                 return;
150         }
151
152         /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
153            non-Latin filenames or paths.
154         */
155         wxString default_dir = "";
156 #ifdef DCPOMATIC_LINUX
157         if (boost::filesystem::exists ("/usr/share/fonts/truetype")) {
158                 default_dir = "/usr/share/fonts/truetype";
159         } else {
160                 default_dir = "/usr/share/fonts";
161         }
162 #endif
163 #ifdef DCPOMATIC_OSX
164         default_dir = "/System/Library/Fonts";
165 #endif
166
167         auto d = new wxFileDialog (this, _("Choose a font file"), default_dir, wxT(""), wxT("*.ttf;*.otf;*.ttc"), wxFD_CHANGE_DIR);
168         int const r = d->ShowModal ();
169
170         if (r != wxID_OK) {
171                 d->Destroy ();
172                 return;
173         }
174
175         font->set_file (wx_to_std(d->GetPath()));
176         d->Destroy ();
177
178         setup ();
179 }