Setup Butler::_prepare_only_proxy on construction.
[dcpomatic.git] / src / wx / system_font_dialog.h
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 /** @class SystemFontDialog
23  *  @brief A dialog box to select one of the "system" fonts on Windows.
24  *
25  *  This is necessary because wxFileDialog on Windows will not display
26  *  the contents of `c:\Windows\Fonts`, so we need a different way to choose
27  *  one of those fonts.
28  */
29
30
31 #include "lib/warnings.h"
32 DCPOMATIC_DISABLE_WARNINGS
33 #include <wx/wx.h>
34 DCPOMATIC_ENABLE_WARNINGS
35 #include <boost/filesystem.hpp>
36 #include <boost/optional.hpp>
37 #include <vector>
38
39
40 class wxListCtrl;
41
42
43 class SystemFontDialog : public wxDialog
44 {
45 public:
46         explicit SystemFontDialog (wxWindow* parent);
47
48         boost::optional<boost::filesystem::path> get_font () const;
49
50 private:
51         void setup_sensitivity ();
52
53         wxListCtrl* _list;
54         std::vector<boost::filesystem::path> _fonts;
55 };