Supporters update.
[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 CheckBox;
34 class DirPickerCtrl;
35 class Job;
36 class KDMTimingPanel;
37 class Log;
38 class wxDirPickerCtrl;
39 class wxRadioButton;
40
41
42 class DKDMOutputPanel : public wxPanel
43 {
44 public:
45         DKDMOutputPanel (wxWindow* parent);
46
47         void setup_sensitivity ();
48
49         boost::filesystem::path directory () const;
50
51         std::pair<std::shared_ptr<Job>, int> make (
52                 std::list<KDMWithMetadataPtr > kdms,
53                 std::string name,
54                 std::function<bool (boost::filesystem::path)> confirm_overwrite
55                 );
56
57 private:
58         NameFormatEditor* _filename_format;
59         CheckBox* _write_to;
60 #ifdef DCPOMATIC_USE_OWN_PICKER
61         DirPickerCtrl* _folder;
62 #else
63         wxDirPickerCtrl* _folder;
64 #endif
65         CheckBox* _email;
66 };