diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-06 10:39:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-09 13:44:48 +0100 |
| commit | 22917c031a262ce6e90252a65d6f70a340fafbed (patch) | |
| tree | 7eb2fdd0336097dfcd1f8f580c91011339c7bb7c /src/wx/kdm_output_panel.cc | |
| parent | bdd2c3396318d64a7c1c2ad870e1ba7a1352c16d (diff) | |
Split KDM output stuff into a separate panel.
Diffstat (limited to 'src/wx/kdm_output_panel.cc')
| -rw-r--r-- | src/wx/kdm_output_panel.cc | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/src/wx/kdm_output_panel.cc b/src/wx/kdm_output_panel.cc new file mode 100644 index 000000000..fd97d1c3b --- /dev/null +++ b/src/wx/kdm_output_panel.cc @@ -0,0 +1,92 @@ +/* + Copyright (C) 2015 Carl Hetherington <cth@carlh.net> + + This program 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. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "kdm_output_panel.h" +#include "wx_util.h" +#include <dcp/types.h> +#ifdef DCPOMATIC_USE_OWN_DIR_PICKER +#include "dir_picker_ctrl.h" +#else +#include <wx/filepicker.h> +#endif +#include <wx/stdpaths.h> + +KDMOutputPanel::KDMOutputPanel (wxWindow* parent, bool interop) + : wxPanel (parent, wxID_ANY) +{ + wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, 0); + + add_label_to_sizer (table, this, _("KDM type"), true); + _type = new wxChoice (this, wxID_ANY); + _type->Append ("Modified Transitional 1", ((void *) dcp::MODIFIED_TRANSITIONAL_1)); + if (!interop) { + _type->Append ("DCI Any", ((void *) dcp::DCI_ANY)); + _type->Append ("DCI Specific", ((void *) dcp::DCI_SPECIFIC)); + } + table->Add (_type, 1, wxEXPAND); + _type->SetSelection (0); + + _write_to = new wxRadioButton (this, wxID_ANY, _("Write to")); + table->Add (_write_to, 1, wxEXPAND); + +#ifdef DCPOMATIC_USE_OWN_DIR_PICKER + _folder = new DirPickerCtrl (this); +#else + _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1)); +#endif + + _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir()); + + table->Add (_folder, 1, wxEXPAND); + + _email = new wxRadioButton (this, wxID_ANY, _("Send by email")); + table->Add (_email, 1, wxEXPAND); + table->AddSpacer (0); + + _write_to->SetValue (true); + + _write_to->Bind (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMOutputPanel::setup_sensitivity, this)); + _email->Bind (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMOutputPanel::setup_sensitivity, this)); + + SetSizer (table); +} + +void +KDMOutputPanel::setup_sensitivity () +{ + _folder->Enable (_write_to->GetValue ()); +} + +boost::filesystem::path +KDMOutputPanel::directory () const +{ + return wx_to_std (_folder->GetPath ()); +} + +bool +KDMOutputPanel::write_to () const +{ + return _write_to->GetValue (); +} + +dcp::Formulation +KDMOutputPanel::formulation () const +{ + return (dcp::Formulation) reinterpret_cast<intptr_t> (_type->GetClientData (_type->GetSelection())); +} |
