diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-08-25 21:02:00 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-08-25 21:02:00 +0200 |
| commit | 451ab9374cc32483489cdde27a9382b546cdecf5 (patch) | |
| tree | fa55bd207248cbfeb12af39c93c8107fd85a1614 /src/wx/export_subtitles_dialog.cc | |
| parent | 5d3c9573914a61db10b24ce7e0cef00902c2912c (diff) | |
Move subtitle export to its own dialogue.
Diffstat (limited to 'src/wx/export_subtitles_dialog.cc')
| -rw-r--r-- | src/wx/export_subtitles_dialog.cc | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/src/wx/export_subtitles_dialog.cc b/src/wx/export_subtitles_dialog.cc new file mode 100644 index 000000000..83e08feb4 --- /dev/null +++ b/src/wx/export_subtitles_dialog.cc @@ -0,0 +1,86 @@ +/* + Copyright (C) 2017-2020 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + + +#include "check_box.h" +#include "export_subtitles_dialog.h" +#include "file_picker_ctrl.h" +#include "wx_util.h" +#include "lib/warnings.h" +DCPOMATIC_DISABLE_WARNINGS +#include <wx/filepicker.h> +DCPOMATIC_ENABLE_WARNINGS +#include <boost/bind.hpp> + + +using std::string; +using boost::bind; + + +ExportSubtitlesDialog::ExportSubtitlesDialog (wxWindow* parent, string name) + : TableDialog (parent, _("Export subtitles"), 2, 1, true) + , _initial_name (name) +{ + _split_reels = new CheckBox (this, _("Write reels into separate files")); + add (_split_reels, false); + add_spacer (); + + add (_("Output file"), true); + /* Don't warn overwrite here, because on Linux (at least) if we specify a filename like foo + the wxFileDialog will check that foo exists, but we will add an extension so we actually + need to check if foo.mov (or similar) exists. I can't find a way to make wxWidgets do this, + so disable its check and the caller will have to do it themselves. + */ + _file = new FilePickerCtrl (this, _("Select output file"), _("Subtitle files (.xml)|*.xml"), false, false); + _file->SetPath (_initial_name); + add (_file); + + _file->Bind (wxEVT_FILEPICKER_CHANGED, bind(&ExportSubtitlesDialog::file_changed, this)); + + layout (); + + wxButton* ok = dynamic_cast<wxButton *>(FindWindowById(wxID_OK, this)); + ok->Enable (false); +} + + +boost::filesystem::path +ExportSubtitlesDialog::path () const +{ + wxFileName fn (_file->GetPath()); + fn.SetExt (".xml"); + return wx_to_std (fn.GetFullPath()); +} + + +bool +ExportSubtitlesDialog::split_reels () const +{ + return _split_reels->GetValue (); +} + + +void +ExportSubtitlesDialog::file_changed () +{ + wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this)); + DCPOMATIC_ASSERT (ok); + ok->Enable (path().is_absolute()); +} |
