Supporters update.
[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 CheckBox;
33 class DirPickerCtrl;
34 class Job;
35 class KDMChoice;
36 class NameFormatEditor;
37 class wxDirPickerCtrl;
38 class wxRadioButton;
39
40
41 class KDMOutputPanel : public wxPanel
42 {
43 public:
44         KDMOutputPanel (wxWindow* parent);
45
46         void setup_sensitivity ();
47
48         boost::filesystem::path directory () const;
49         dcp::Formulation formulation () const;
50         bool forensic_mark_video () const {
51                 return _forensic_mark_video;
52         }
53         bool forensic_mark_audio () const {
54                 return _forensic_mark_audio;
55         }
56         boost::optional<int> forensic_mark_audio_up_to () const {
57                 return _forensic_mark_audio_up_to;
58         }
59
60         std::pair<std::shared_ptr<Job>, int> make (
61                 std::list<KDMWithMetadataPtr> screen_kdms,
62                 std::string name,
63                 std::function<bool (boost::filesystem::path)> confirm_overwrite
64                 );
65
66         bool method_selected() const;
67
68         void set_annotation_text(std::string text);
69         std::string annotation_text() const;
70
71         boost::signals2::signal<void ()> MethodChanged;
72
73 private:
74         void kdm_write_type_changed ();
75         void advanced_clicked ();
76         void write_to_changed ();
77         void email_changed ();
78         void add_email_addresses_clicked ();
79
80         KDMChoice* _type;
81         wxTextCtrl* _annotation_text;
82         NameFormatEditor* _container_name_format;
83         NameFormatEditor* _filename_format;
84         CheckBox* _write_to;
85 #ifdef DCPOMATIC_USE_OWN_PICKER
86         DirPickerCtrl* _folder;
87 #else
88         wxDirPickerCtrl* _folder;
89 #endif
90         wxRadioButton* _write_flat;
91         wxRadioButton* _write_folder;
92         wxRadioButton* _write_zip;
93         CheckBox* _email;
94         bool _forensic_mark_video;
95         bool _forensic_mark_audio;
96         boost::optional<int> _forensic_mark_audio_up_to;
97         std::vector<std::string> _extra_addresses;
98 };