Split KDM from/until into KDMTimingPanel.
authorCarl Hetherington <cth@carlh.net>
Mon, 5 Oct 2015 22:36:57 +0000 (23:36 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 9 Oct 2015 12:44:48 +0000 (13:44 +0100)
src/wx/kdm_dialog.cc
src/wx/kdm_dialog.h
src/wx/kdm_timing_panel.cc [new file with mode: 0644]
src/wx/kdm_timing_panel.h [new file with mode: 0644]
src/wx/wscript

index 83648080871cab300bbb8a45322a34d0d8ad54a1..e9ad96b8d34f741c75436ab22436a161d30c95c3 100644 (file)
@@ -22,6 +22,7 @@
 #include "screen_dialog.h"
 #include "wx_util.h"
 #include "screens_panel.h"
+#include "kdm_timing_panel.h"
 #include "lib/cinema.h"
 #include "lib/config.h"
 #include "lib/film.h"
@@ -33,8 +34,6 @@
 #include <wx/filepicker.h>
 #endif
 #include <wx/treectrl.h>
-#include <wx/datectrl.h>
-#include <wx/timectrl.h>
 #include <wx/stdpaths.h>
 #include <wx/listctrl.h>
 #include <iostream>
@@ -69,27 +68,8 @@ KDMDialog::KDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
        h = new wxStaticText (this, wxID_ANY, S_("KDM|Timing"));
        h->SetFont (subheading_font);
        vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
-
-       wxFlexGridSizer* table = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
-       add_label_to_sizer (table, this, _("From"), true);
-       wxDateTime from;
-       from.SetToCurrent ();
-       _from_date = new wxDatePickerCtrl (this, wxID_ANY, from);
-       table->Add (_from_date, 1, wxEXPAND);
-       _from_time = new wxTimePickerCtrl (this, wxID_ANY, from);
-       table->Add (_from_time, 1, wxEXPAND);
-
-       add_label_to_sizer (table, this, _("Until"), true);
-       wxDateTime to = from;
-       /* 1 week from now */
-       to.Add (wxDateSpan (0, 0, 1, 0));
-       _until_date = new wxDatePickerCtrl (this, wxID_ANY, to);
-       table->Add (_until_date, 1, wxEXPAND);
-       _until_time = new wxTimePickerCtrl (this, wxID_ANY, to);
-       table->Add (_until_time, 1, wxEXPAND);
-
-       vertical->Add (table, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
-
+       _timing = new KDMTimingPanel (this);
+       vertical->Add (_timing);
 
        /* Sub-heading: CPL */
        h = new wxStaticText (this, wxID_ANY, _("CPL"));
@@ -106,7 +86,7 @@ KDMDialog::KDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
        vertical->Add (s, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP + 2);
 
        /* CPL details */
-       table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+       wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
        add_label_to_sizer (table, this, _("DCP directory"), true);
        _dcp_directory = new wxStaticText (this, wxID_ANY, "");
        table->Add (_dcp_directory);
@@ -202,29 +182,6 @@ KDMDialog::setup_sensitivity ()
        _folder->Enable (_write_to->GetValue ());
 }
 
-boost::posix_time::ptime
-KDMDialog::from () const
-{
-       return posix_time (_from_date, _from_time);
-}
-
-boost::posix_time::ptime
-KDMDialog::posix_time (wxDatePickerCtrl* date_picker, wxTimePickerCtrl* time_picker)
-{
-       wxDateTime const date = date_picker->GetValue ();
-       wxDateTime const time = time_picker->GetValue ();
-       return boost::posix_time::ptime (
-               boost::gregorian::date (date.GetYear(), date.GetMonth() + 1, date.GetDay()),
-               boost::posix_time::time_duration (time.GetHour(), time.GetMinute(), time.GetSecond())
-               );
-}
-
-boost::posix_time::ptime
-KDMDialog::until () const
-{
-       return posix_time (_until_date, _until_time);
-}
-
 boost::filesystem::path
 KDMDialog::cpl () const
 {
@@ -322,3 +279,15 @@ KDMDialog::screens () const
 {
        return _screens->screens ();
 }
+
+boost::posix_time::ptime
+KDMDialog::from () const
+{
+       return _timing->from ();
+}
+
+boost::posix_time::ptime
+KDMDialog::until () const
+{
+       return _timing->until ();
+}
index 5588aa9f235ecf2f9a9d3a98a4d9d876eb7df156..365d05a99672c2bd803904f7de4da56c7571ffbd 100644 (file)
@@ -26,8 +26,6 @@
 #include <map>
 
 class wxTreeCtrl;
-class wxDatePickerCtrl;
-class wxTimePickerCtrl;
 class wxDirPickerCtrl;
 class DirPickerCtrl;
 
@@ -35,6 +33,7 @@ class Cinema;
 class Screen;
 class Film;
 class ScreensPanel;
+class KDMTimingPanel;
 struct CPLSummary;
 
 class KDMDialog : public wxDialog
@@ -43,7 +42,6 @@ public:
        KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
 
        std::list<boost::shared_ptr<Screen> > screens () const;
-
        /** @return KDM from time in local time */
        boost::posix_time::ptime from () const;
        /** @return KDM until time in local time */
@@ -60,13 +58,8 @@ private:
        void update_cpl_summary ();
        void cpl_browse_clicked ();
 
-       static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
-
        ScreensPanel* _screens;
-       wxDatePickerCtrl* _from_date;
-       wxDatePickerCtrl* _until_date;
-       wxTimePickerCtrl* _from_time;
-       wxTimePickerCtrl* _until_time;
+       KDMTimingPanel* _timing;
        wxChoice* _cpl;
        wxButton* _cpl_browse;
        wxStaticText* _dcp_directory;
diff --git a/src/wx/kdm_timing_panel.cc b/src/wx/kdm_timing_panel.cc
new file mode 100644 (file)
index 0000000..02b4a94
--- /dev/null
@@ -0,0 +1,70 @@
+/*
+    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_timing_panel.h"
+#include "wx_util.h"
+#include <wx/datectrl.h>
+#include <wx/timectrl.h>
+
+KDMTimingPanel::KDMTimingPanel (wxWindow* parent)
+       : wxPanel (parent, wxID_ANY)
+{
+       wxFlexGridSizer* table = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+       add_label_to_sizer (table, this, _("From"), true);
+       wxDateTime from;
+       from.SetToCurrent ();
+       _from_date = new wxDatePickerCtrl (this, wxID_ANY, from);
+       table->Add (_from_date, 1, wxEXPAND);
+       _from_time = new wxTimePickerCtrl (this, wxID_ANY, from);
+       table->Add (_from_time, 1, wxEXPAND);
+
+       add_label_to_sizer (table, this, _("Until"), true);
+       wxDateTime to = from;
+       /* 1 week from now */
+       to.Add (wxDateSpan (0, 0, 1, 0));
+       _until_date = new wxDatePickerCtrl (this, wxID_ANY, to);
+       table->Add (_until_date, 1, wxEXPAND);
+       _until_time = new wxTimePickerCtrl (this, wxID_ANY, to);
+       table->Add (_until_time, 1, wxEXPAND);
+
+       SetSizer (table);
+}
+
+boost::posix_time::ptime
+KDMTimingPanel::from () const
+{
+       return posix_time (_from_date, _from_time);
+}
+
+boost::posix_time::ptime
+KDMTimingPanel::posix_time (wxDatePickerCtrl* date_picker, wxTimePickerCtrl* time_picker)
+{
+       wxDateTime const date = date_picker->GetValue ();
+       wxDateTime const time = time_picker->GetValue ();
+       return boost::posix_time::ptime (
+               boost::gregorian::date (date.GetYear(), date.GetMonth() + 1, date.GetDay()),
+               boost::posix_time::time_duration (time.GetHour(), time.GetMinute(), time.GetSecond())
+               );
+}
+
+boost::posix_time::ptime
+KDMTimingPanel::until () const
+{
+       return posix_time (_until_date, _until_time);
+}
diff --git a/src/wx/kdm_timing_panel.h b/src/wx/kdm_timing_panel.h
new file mode 100644 (file)
index 0000000..7e60729
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+    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 <wx/wx.h>
+#include <boost/date_time/posix_time/posix_time.hpp>
+
+class wxDatePickerCtrl;
+class wxTimePickerCtrl;
+
+class KDMTimingPanel : public wxPanel
+{
+public:
+       KDMTimingPanel (wxWindow* parent);
+
+       /** @return KDM from time in local time */
+       boost::posix_time::ptime from () const;
+       /** @return KDM until time in local time */
+       boost::posix_time::ptime until () const;
+
+private:
+       static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
+
+       wxDatePickerCtrl* _from_date;
+       wxDatePickerCtrl* _until_date;
+       wxTimePickerCtrl* _from_time;
+       wxTimePickerCtrl* _until_time;
+};
index 094962ed586abaadc881b719ca5c8ca241bea5e8..551ec20f99c0d092db397cf3cbca9b9e10386689 100644 (file)
@@ -54,6 +54,7 @@ sources = """
           hints_dialog.cc
           job_manager_view.cc
           kdm_dialog.cc
+          kdm_timing_panel.cc
           key_dialog.cc
           make_chain_dialog.cc
           new_film_dialog.cc