Work around strange build error on Ubuntu 18.04
[dcpomatic.git] / src / wx / dkdm_output_panel.h
1 /*
2     Copyright (C) 2015-2020 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 "name_format_editor.h"
23 #include "wx_util.h"
24 #include "lib/kdm_with_metadata.h"
25 #include <dcp/types.h>
26 #include <dcp/warnings.h>
27 LIBDCP_DISABLE_WARNINGS
28 #include <wx/wx.h>
29 LIBDCP_ENABLE_WARNINGS
30 #include <boost/filesystem.hpp>
31
32
33 class DirPickerCtrl;
34 class Job;
35 class KDMTimingPanel;
36 class Log;
37 class wxDirPickerCtrl;
38 class wxRadioButton;
39
40
41 class DKDMOutputPanel : public wxPanel
42 {
43 public:
44         DKDMOutputPanel (wxWindow* parent);
45
46         void setup_sensitivity ();
47
48         boost::filesystem::path directory () const;
49
50         std::pair<std::shared_ptr<Job>, int> make (
51                 std::list<KDMWithMetadataPtr > kdms,
52                 std::string name,
53                 std::function<bool (boost::filesystem::path)> confirm_overwrite
54                 );
55
56 private:
57         NameFormatEditor* _filename_format;
58         wxCheckBox* _write_to;
59 #ifdef DCPOMATIC_USE_OWN_PICKER
60         DirPickerCtrl* _folder;
61 #else
62         wxDirPickerCtrl* _folder;
63 #endif
64         wxCheckBox* _email;
65 };