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