Supporters update.
[dcpomatic.git] / src / wx / system_font_dialog.cc
1 /*
2     Copyright (C) 2015-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 "system_font_dialog.h"
23 #include "wx_util.h"
24 #include <dcp/filesystem.h>
25 #include <dcp/warnings.h>
26 LIBDCP_DISABLE_WARNINGS
27 #include <wx/listctrl.h>
28 LIBDCP_ENABLE_WARNINGS
29 #include <boost/filesystem.hpp>
30
31
32 using std::string;
33 using boost::optional;
34
35
36 SystemFontDialog::SystemFontDialog (wxWindow* parent)
37         : wxDialog (parent, wxID_ANY, _("Choose a font"))
38 {
39         auto sizer = new wxBoxSizer (wxVERTICAL);
40
41         boost::filesystem::path fonts = "c:\\Windows\\Fonts";
42         auto windir = getenv ("windir");
43         if (windir) {
44                 fonts = boost::filesystem::path (windir) / "Fonts";
45         }
46
47         for (auto i: dcp::filesystem::directory_iterator(fonts)) {
48                 auto ext = i.path().extension().string();
49                 transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
50
51                 if (ext == ".ttf") {
52                         _fonts.push_back (i.path());
53                 }
54         }
55
56         sort (_fonts.begin(), _fonts.end());
57
58         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER);
59         _list->InsertColumn (0, wxT (""));
60         _list->SetColumnWidth (0, 512);
61         sizer->Add (_list, 0, wxALL, DCPOMATIC_SIZER_X_GAP);
62
63         int n = 0;
64         for (auto i: _fonts) {
65                 _list->InsertItem(n++, std_to_wx(i.filename().stem().string()));
66         }
67
68         auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
69         if (buttons) {
70                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
71         }
72
73         SetSizerAndFit (sizer);
74
75         _list->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&SystemFontDialog::setup_sensitivity, this));
76         _list->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&SystemFontDialog::setup_sensitivity, this));
77
78         setup_sensitivity ();
79 }
80
81
82 optional<boost::filesystem::path>
83 SystemFontDialog::get_font () const
84 {
85         int const s = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
86         if (s == -1) {
87                 return {};
88         }
89
90         if (s < int(_fonts.size())) {
91                 return _fonts[s];
92         }
93
94         return {};
95 }
96
97
98 void
99 SystemFontDialog::setup_sensitivity ()
100 {
101         auto ok = dynamic_cast<wxButton *> (FindWindowById(wxID_OK, this));
102         if (ok) {
103                 ok->Enable (_list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED) != -1);
104         }
105 }