Work around strange build error on Ubuntu 18.04
[dcpomatic.git] / src / wx / kdm_output_panel.h
1 /*
2     Copyright (C) 2015-2022 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 "wx_util.h"
23 #include "lib/kdm_with_metadata.h"
24 #include <dcp/types.h>
25 #include <dcp/warnings.h>
26 LIBDCP_DISABLE_WARNINGS
27 #include <wx/wx.h>
28 LIBDCP_ENABLE_WARNINGS
29 #include <boost/filesystem.hpp>
30
31
32 class DirPickerCtrl;
33 class Job;
34 class KDMChoice;
35 class NameFormatEditor;
36 class wxDirPickerCtrl;
37 class wxRadioButton;
38
39
40 class KDMOutputPanel : public wxPanel
41 {
42 public:
43         KDMOutputPanel (wxWindow* parent);
44
45         void setup_sensitivity ();
46
47         boost::filesystem::path directory () const;
48         dcp::Formulation formulation () const;
49         bool forensic_mark_video () const {
50                 return _forensic_mark_video;
51         }
52         bool forensic_mark_audio () const {
53                 return _forensic_mark_audio;
54         }
55         boost::optional<int> forensic_mark_audio_up_to () const {
56                 return _forensic_mark_audio_up_to;
57         }
58
59         std::pair<std::shared_ptr<Job>, int> make (
60                 std::list<KDMWithMetadataPtr> screen_kdms,
61                 std::string name,
62                 std::function<bool (boost::filesystem::path)> confirm_overwrite
63                 );
64
65 private:
66         void kdm_write_type_changed ();
67         void advanced_clicked ();
68         void write_to_changed ();
69         void email_changed ();
70         void add_email_addresses_clicked ();
71
72         KDMChoice* _type;
73         NameFormatEditor* _container_name_format;
74         NameFormatEditor* _filename_format;
75         wxCheckBox* _write_to;
76 #ifdef DCPOMATIC_USE_OWN_PICKER
77         DirPickerCtrl* _folder;
78 #else
79         wxDirPickerCtrl* _folder;
80 #endif
81         wxRadioButton* _write_flat;
82         wxRadioButton* _write_folder;
83         wxRadioButton* _write_zip;
84         wxCheckBox* _email;
85         bool _forensic_mark_video;
86         bool _forensic_mark_audio;
87         boost::optional<int> _forensic_mark_audio_up_to;
88         std::vector<std::string> _extra_addresses;
89 };