summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-16 22:52:55 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-16 22:52:55 +0100
commite45fe284b7c334d64c2fe105c0564c5015d3747f (patch)
treef98907d190b9d79376f7dc7a601e22c13c42b614 /src/wx/kdm_dialog.cc
parent4ed8eafd541c2c5867795db56c440e444cc0aeff (diff)
Allow specification of DCP to build KDMs for (#235).
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc46
1 files changed, 43 insertions, 3 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index 02b91a1e2..5410f6cec 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -21,8 +21,10 @@
#include <wx/datectrl.h>
#include <wx/timectrl.h>
#include <wx/stdpaths.h>
+#include <wx/listctrl.h>
#include "lib/cinema.h"
#include "lib/config.h"
+#include "lib/film.h"
#include "kdm_dialog.h"
#include "cinema_dialog.h"
#include "screen_dialog.h"
@@ -37,10 +39,11 @@ using std::string;
using std::map;
using std::list;
using std::pair;
+using std::cout;
using std::make_pair;
using boost::shared_ptr;
-KDMDialog::KDMDialog (wxWindow* parent)
+KDMDialog::KDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
: wxDialog (parent, wxID_ANY, _("Make KDMs"))
{
wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
@@ -91,6 +94,31 @@ KDMDialog::KDMDialog (wxWindow* parent)
_until_time = new wxTimePickerCtrl (this, wxID_ANY);
table->Add (_until_time, 1, wxEXPAND);
+ vertical->Add (table, 0, wxEXPAND | wxALL, 6);
+
+ _dcps = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL);
+ wxListItem ip;
+ ip.SetId (0);
+ ip.SetText (_("DCP"));
+ ip.SetWidth (400);
+ _dcps->InsertColumn (0, ip);
+ vertical->Add (_dcps, 0, wxEXPAND | wxALL, 6);
+
+ list<boost::filesystem::path> dcps = film->dcps ();
+ for (list<boost::filesystem::path>::const_iterator i = dcps.begin(); i != dcps.end(); ++i) {
+ wxListItem item;
+ int const n = _dcps->GetItemCount ();
+ item.SetId (n);
+ _dcps->InsertItem (item);
+ _dcps->SetItem (n, 0, std_to_wx (i->string ()));
+
+ if (dcps.size() == 1 || i->string() == film->dcp_name ()) {
+ _dcps->SetItemState (n, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
+ }
+ }
+
+ table = new wxFlexGridSizer (3, 2, 6);
+
_write_to = new wxRadioButton (this, wxID_ANY, _("Write to"));
table->Add (_write_to, 1, wxEXPAND);
@@ -126,6 +154,9 @@ KDMDialog::KDMDialog (wxWindow* parent)
_edit_screen->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_screen_clicked, this));
_remove_screen->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_screen_clicked, this));
+ _dcps->Bind (wxEVT_COMMAND_LIST_ITEM_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
+ _dcps->Bind (wxEVT_COMMAND_LIST_ITEM_DESELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
+
_write_to->Bind (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
_email->Bind (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
@@ -175,6 +206,7 @@ KDMDialog::setup_sensitivity ()
{
bool const sc = selected_cinemas().size() == 1;
bool const ss = selected_screens().size() == 1;
+ bool const sd = _dcps->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED) != -1;
_edit_cinema->Enable (sc);
_remove_cinema->Enable (sc);
@@ -184,7 +216,7 @@ KDMDialog::setup_sensitivity ()
_remove_screen->Enable (ss);
wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK));
- ok->Enable (sc || ss);
+ ok->Enable ((sc || ss) && sd);
_folder->Enable (_write_to->GetValue ());
}
@@ -382,7 +414,15 @@ KDMDialog::until () const
return posix_time (_until_date, _until_time);
}
-string
+boost::filesystem::path
+KDMDialog::dcp () const
+{
+ int const item = _dcps->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+ assert (item >= 0);
+ return wx_to_std (_dcps->GetItemText (item));
+}
+
+boost::filesystem::path
KDMDialog::directory () const
{
return wx_to_std (_folder->GetPath ());