Missing files.
authorCarl Hetherington <cth@carlh.net>
Mon, 3 Oct 2016 12:02:11 +0000 (13:02 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 3 Oct 2016 12:02:11 +0000 (13:02 +0100)
src/wx/batch_job_view.cc [new file with mode: 0644]
src/wx/batch_job_view.h [new file with mode: 0644]
src/wx/normal_job_view.cc [new file with mode: 0644]
src/wx/normal_job_view.h [new file with mode: 0644]

diff --git a/src/wx/batch_job_view.cc b/src/wx/batch_job_view.cc
new file mode 100644 (file)
index 0000000..2a5e690
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+    Copyright (C) 2012-2016 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 "batch_job_view.h"
+#include <wx/sizer.h>
+
+using boost::shared_ptr;
+
+BatchJobView::BatchJobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
+       : JobView (job, parent, container, table)
+{
+
+}
+
+int
+BatchJobView::insert_position () const
+{
+       return _table->GetEffectiveRowsCount() * _table->GetEffectiveColsCount();
+}
diff --git a/src/wx/batch_job_view.h b/src/wx/batch_job_view.h
new file mode 100644 (file)
index 0000000..d655968
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+    Copyright (C) 2012-2016 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 "job_view.h"
+
+class BatchJobView : public JobView
+{
+public:
+       BatchJobView (boost::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
+
+private:
+       int insert_position () const;
+};
diff --git a/src/wx/normal_job_view.cc b/src/wx/normal_job_view.cc
new file mode 100644 (file)
index 0000000..d02ad1f
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+    Copyright (C) 2012-2016 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 "normal_job_view.h"
+#include "lib/job.h"
+#include <wx/wx.h>
+
+using boost::shared_ptr;
+
+NormalJobView::NormalJobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
+       : JobView (job, parent, container, table)
+       , _pause (0)
+{
+
+}
+
+void
+NormalJobView::add_buttons (wxWindow* parent, wxSizer* sizer)
+{
+       _pause = new wxButton (parent, wxID_ANY, _("Pause"));
+       _pause->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&NormalJobView::pause_clicked, this));
+       sizer->Add (_pause, 1, wxALIGN_CENTER_VERTICAL);
+}
+
+int
+NormalJobView::insert_position () const
+{
+       return 0;
+}
+
+void
+NormalJobView::pause_clicked ()
+{
+       if (_job->paused()) {
+               _job->resume ();
+               _pause->SetLabel (_("Pause"));
+       } else {
+               _job->pause ();
+               _pause->SetLabel (_("Resume"));
+       }
+}
+
+void
+NormalJobView::finished ()
+{
+       JobView::finished ();
+       _pause->Enable (false);
+}
diff --git a/src/wx/normal_job_view.h b/src/wx/normal_job_view.h
new file mode 100644 (file)
index 0000000..0339e59
--- /dev/null
@@ -0,0 +1,39 @@
+/*
+    Copyright (C) 2012-2016 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 "job_view.h"
+
+class wxSizer;
+
+class NormalJobView : public JobView
+{
+public:
+       NormalJobView (boost::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
+
+       void setup ();
+
+private:
+       int insert_position () const;
+       void add_buttons (wxWindow* parent, wxSizer* sizer);
+       void pause_clicked ();
+       void finished ();
+
+       wxButton* _pause;
+};