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