summaryrefslogtreecommitdiff
path: root/src/wx/tall_kdm_output_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-28 23:25:09 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-01 01:54:38 +0100
commit2a569aa08d8827a9a14dcd6db2c4ea1bbc8a32fd (patch)
tree74731487d34451c9811949163c669da08e3cdc3d /src/wx/tall_kdm_output_panel.cc
parent0073b9b1dd9f916f543012a5f53d37882960527d (diff)
Split KDMOutputPanel into TallKDMOutputPanel and a base.
The TallKDMOutputPanel is just responsible for layout out the controls.
Diffstat (limited to 'src/wx/tall_kdm_output_panel.cc')
-rw-r--r--src/wx/tall_kdm_output_panel.cc106
1 files changed, 106 insertions, 0 deletions
diff --git a/src/wx/tall_kdm_output_panel.cc b/src/wx/tall_kdm_output_panel.cc
new file mode 100644
index 000000000..1fb5cd958
--- /dev/null
+++ b/src/wx/tall_kdm_output_panel.cc
@@ -0,0 +1,106 @@
+/*
+ Copyright (C) 2015-2022 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 "confirm_kdm_email_dialog.h"
+#include "dcpomatic_button.h"
+#include "extra_kdm_email_dialog.h"
+#include "kdm_advanced_dialog.h"
+#include "kdm_choice.h"
+#include "tall_kdm_output_panel.h"
+#include "kdm_timing_panel.h"
+#include "name_format_editor.h"
+#include "wx_util.h"
+#include "lib/cinema.h"
+#include "lib/config.h"
+#include "lib/send_kdm_email_job.h"
+#include <dcp/exceptions.h>
+#include <dcp/types.h>
+#include <dcp/warnings.h>
+#ifdef DCPOMATIC_USE_OWN_PICKER
+#include "dir_picker_ctrl.h"
+#else
+LIBDCP_DISABLE_WARNINGS
+#include <wx/filepicker.h>
+LIBDCP_ENABLE_WARNINGS
+#endif
+LIBDCP_DISABLE_WARNINGS
+#include <wx/stdpaths.h>
+LIBDCP_ENABLE_WARNINGS
+
+
+using std::exception;
+using std::function;
+using std::list;
+using std::make_pair;
+using std::make_shared;
+using std::pair;
+using std::shared_ptr;
+using std::string;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
+
+
+TallKDMOutputPanel::TallKDMOutputPanel(wxWindow* parent)
+ : KDMOutputPanel(parent)
+{
+ auto table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, 0);
+ table->AddGrowableCol (1);
+
+ add_label_to_sizer (table, this, _("KDM type"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL);
+
+ auto type = new wxBoxSizer (wxHORIZONTAL);
+ type->Add (_type, 1, wxTOP, DCPOMATIC_CHOICE_TOP_PAD);
+ type->Add (_advanced, 0, wxLEFT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
+ table->Add (type, 1, wxTOP, DCPOMATIC_CHOICE_TOP_PAD);
+
+ add_label_to_sizer(table, this, _("Annotation text"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
+ table->Add(_annotation_text, 1, wxEXPAND);
+
+ add_label_to_sizer (table, this, _("Folder / ZIP name format"), true, 0, wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT);
+ table->Add (_container_name_format->panel(), 1, wxEXPAND);
+
+ auto format = create_label (this, _("Filename format"), true);
+ auto align = new wxBoxSizer (wxHORIZONTAL);
+#ifdef DCPOMATIC_OSX
+ align->Add (format, 0, wxTOP, 2);
+ table->Add (align, 0, wxALIGN_RIGHT | wxRIGHT, DCPOMATIC_SIZER_GAP - 2);
+#else
+ align->Add (format, 0, wxLEFT, DCPOMATIC_SIZER_GAP);
+ table->Add (align, 0, wxTOP | wxRIGHT | wxALIGN_TOP, DCPOMATIC_SIZER_GAP);
+#endif
+ table->Add (_filename_format->panel(), 1, wxEXPAND);
+ table->Add (_write_to, 1, wxEXPAND);
+ table->Add (_folder, 1, wxEXPAND);
+
+ auto write_options = new wxBoxSizer(wxVERTICAL);
+ write_options->Add (_write_flat, 1, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+ write_options->Add (_write_folder, 1, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+ write_options->Add (_write_zip, 1, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+ table->AddSpacer (0);
+ table->Add (write_options);
+
+ table->Add (_email, 1, wxEXPAND);
+ table->Add (_add_email_addresses);
+
+ SetSizer (table);
+}