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