diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-07 17:11:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-09 13:44:58 +0100 |
| commit | f29f405000752ad568de1e304640a4edac8214bc (patch) | |
| tree | cb4990c7e7d90ddc6d5fddb9a69f3379a693c3fa /src/wx/job_view_dialog.h | |
| parent | bf0b74f67b87b2361529cefaae45533e5935a9c4 (diff) | |
Basics of job view when sending KDM emails from dcpomatic_kdm.
Diffstat (limited to 'src/wx/job_view_dialog.h')
| -rw-r--r-- | src/wx/job_view_dialog.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/wx/job_view_dialog.h b/src/wx/job_view_dialog.h new file mode 100644 index 000000000..0282d9848 --- /dev/null +++ b/src/wx/job_view_dialog.h @@ -0,0 +1,34 @@ +/* + 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 "table_dialog.h" +#include <boost/shared_ptr.hpp> + +class JobView; +class Job; + +class JobViewDialog : public TableDialog +{ +public: + JobViewDialog (wxWindow* parent, wxString title, boost::shared_ptr<Job> job); + ~JobViewDialog (); + +private: + JobView* _view; +}; |
