cb9127a57585422b7948cbc7e2c5930fae92ac87
[dcpomatic.git] / src / wx / export_dialog.cc
1 /*
2     Copyright (C) 2017-2018 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 #include "export_dialog.h"
22 #include "file_picker_ctrl.h"
23 #include "wx_util.h"
24 #include "check_box.h"
25 #include <wx/filepicker.h>
26 #include <boost/bind.hpp>
27
28 using boost::bind;
29
30 #define FORMATS 2
31
32 wxString format_names[] = {
33         _("ProRes"),
34         _("MP4 / H.264")
35 };
36
37 wxString format_filters[] = {
38         _("MOV files (*.mov)|*.mov"),
39         _("MP4 files (*.mp4)|*.mp4"),
40 };
41
42 wxString format_extensions[] = {
43         "mov",
44         "mp4"
45 };
46
47 ExportFormat formats[] = {
48         EXPORT_FORMAT_PRORES,
49         EXPORT_FORMAT_H264,
50 };
51
52 ExportDialog::ExportDialog (wxWindow* parent)
53         : TableDialog (parent, _("Export film"), 2, 1, true)
54 {
55         add (_("Format"), true);
56         _format = new wxChoice (this, wxID_ANY);
57         add (_format);
58         add_spacer ();
59         _mixdown = new CheckBox (this, _("Mix audio down to stereo"));
60         add (_mixdown, false);
61         add_spacer ();
62         _split_reels = new CheckBox (this, _("Write reels into separate files"));
63         add (_split_reels, false);
64         _x264_crf_label[0] = add (_("Quality"), true);
65         _x264_crf = new wxSlider (this, wxID_ANY, 23, 0, 51, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL | wxSL_LABELS);
66         add (_x264_crf, false);
67         add_spacer ();
68         _x264_crf_label[1] = add (_("0 is best, 51 is worst"), false);
69         wxFont font = _x264_crf_label[1]->GetFont();
70         font.SetStyle(wxFONTSTYLE_ITALIC);
71         font.SetPointSize(font.GetPointSize() - 1);
72         _x264_crf_label[1]->SetFont(font);
73
74         add (_("Output file"), true);
75         _file = new FilePickerCtrl (this, _("Select output file"), format_filters[0], false);
76         add (_file);
77
78         for (int i = 0; i < FORMATS; ++i) {
79                 _format->Append (format_names[i]);
80         }
81         _format->SetSelection (0);
82
83         _x264_crf->Enable (false);
84         for (int i = 0; i < 2; ++i) {
85                 _x264_crf_label[i]->Enable (false);
86         }
87
88         _format->Bind (wxEVT_CHOICE, bind (&ExportDialog::format_changed, this));
89         _file->Bind (wxEVT_FILEPICKER_CHANGED, bind (&ExportDialog::file_changed, this));
90
91         layout ();
92
93         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
94         ok->Enable (false);
95 }
96
97 void
98 ExportDialog::format_changed ()
99 {
100         DCPOMATIC_ASSERT (_format->GetSelection() >= 0 && _format->GetSelection() < FORMATS);
101         _file->SetWildcard (format_filters[_format->GetSelection()]);
102         _file->SetPath ("");
103         _x264_crf->Enable (_format->GetSelection() == 1);
104         for (int i = 0; i < 2; ++i) {
105                 _x264_crf_label[i]->Enable (_format->GetSelection() == 1);
106         }
107 }
108
109 boost::filesystem::path
110 ExportDialog::path () const
111 {
112         wxFileName fn (_file->GetPath());
113         fn.SetExt (format_extensions[_format->GetSelection()]);
114         return wx_to_std (fn.GetFullPath());
115 }
116
117 ExportFormat
118 ExportDialog::format () const
119 {
120         DCPOMATIC_ASSERT (_format->GetSelection() >= 0 && _format->GetSelection() < FORMATS);
121         return formats[_format->GetSelection()];
122 }
123
124 bool
125 ExportDialog::mixdown_to_stereo () const
126 {
127         return _mixdown->GetValue ();
128 }
129
130 bool
131 ExportDialog::split_reels () const
132 {
133         return _split_reels->GetValue ();
134 }
135
136 int
137 ExportDialog::x264_crf () const
138 {
139         return _x264_crf->GetValue ();
140 }
141
142 void
143 ExportDialog::file_changed ()
144 {
145         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
146         ok->Enable (_file->GetPath().Length() > 0);
147 }