ignore loadsa warnings.
[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 "fonts_dialog.h"
23 #include "wx_util.h"
24 #include "system_font_dialog.h"
25 #include "dcpomatic_button.h"
26 #include "lib/font.h"
27 #include "lib/content.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 <iostream>
34 #include <memory>
35
36
37 using std::list;
38 using std::string;
39 using std::cout;
40 using std::shared_ptr;
41 using namespace dcpomatic;
42
43
44 FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<Content> content, shared_ptr<TextContent> caption)
45         : wxDialog (parent, wxID_ANY, _("Fonts"))
46         , _content (content)
47         , _caption (caption)
48 {
49         _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (550, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
50
51         {
52                 wxListItem ip;
53                 ip.SetId (0);
54                 ip.SetText (_("ID"));
55                 ip.SetWidth (100);
56                 _fonts->InsertColumn (0, ip);
57         }
58
59         {
60                 wxListItem ip;
61                 ip.SetId (1);
62                 ip.SetText (_("File"));
63                 ip.SetWidth (450);
64                 _fonts->InsertColumn (1, ip);
65         }
66
67         auto sizer = new wxBoxSizer (wxHORIZONTAL);
68         sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
69
70         _edit = new Button (this, _("Edit..."));
71         sizer->Add (_edit, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
72
73         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
74         overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
75
76         auto buttons = CreateSeparatedButtonSizer (wxOK);
77         if (buttons) {
78                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
79         }
80
81         SetSizerAndFit (overall_sizer);
82
83         _edit->Bind (wxEVT_BUTTON, boost::bind (&FontsDialog::edit_clicked, this));
84         _fonts->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&FontsDialog::selection_changed, this));
85         _fonts->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&FontsDialog::selection_changed, this));
86
87         setup ();
88 }
89
90
91 void
92 FontsDialog::setup ()
93 {
94         auto content = _content.lock ();
95         auto caption = _caption.lock ();
96         if (!content || !caption) {
97                 return;
98         }
99
100         _fonts->DeleteAllItems ();
101         size_t n = 0;
102         for (auto i: caption->fonts ()) {
103                 wxListItem item;
104                 item.SetId (n);
105                 _fonts->InsertItem (item);
106                 _fonts->SetItem (n, 0, std_to_wx (i->id ()));
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 = wx_to_std (_fonts->GetItemText(item, 0));
143         shared_ptr<Font> font;
144         for (auto i: caption->fonts()) {
145                 if (i->id() == id) {
146                         font = i;
147                 }
148         }
149
150         if (!font) {
151                 return;
152         }
153
154         /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
155            non-Latin filenames or paths.
156         */
157         wxString default_dir = "";
158 #ifdef DCPOMATIC_LINUX
159         if (boost::filesystem::exists ("/usr/share/fonts/truetype")) {
160                 default_dir = "/usr/share/fonts/truetype";
161         } else {
162                 default_dir = "/usr/share/fonts";
163         }
164 #endif
165 #ifdef DCPOMATIC_OSX
166         default_dir = "/System/Library/Fonts";
167 #endif
168
169         auto d = new wxFileDialog (this, _("Choose a font file"), default_dir, wxT(""), wxT("*.ttf;*.otf;*.ttc"), wxFD_CHANGE_DIR);
170         int const r = d->ShowModal ();
171
172         if (r != wxID_OK) {
173                 d->Destroy ();
174                 return;
175         }
176
177         font->set_file (wx_to_std(d->GetPath()));
178         d->Destroy ();
179
180         setup ();
181 }