summaryrefslogtreecommitdiff
path: root/src/wx/monitor_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-29 11:03:38 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-29 20:53:49 +0200
commit29f84e2b8785585885e0658bdf9938967547460f (patch)
tree785850881e76729a892e4c3e720d37d35e6829ca /src/wx/monitor_dialog.h
parent39fb8198febde1937019db1c300ec363aab5aa56 (diff)
Remove Monitor / EDID code that was used for the swaroop variant.
Diffstat (limited to 'src/wx/monitor_dialog.h')
-rw-r--r--src/wx/monitor_dialog.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/wx/monitor_dialog.h b/src/wx/monitor_dialog.h
deleted file mode 100644
index 00804f47d..000000000
--- a/src/wx/monitor_dialog.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- Copyright (C) 2012 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 "table_dialog.h"
-#include "lib/edid.h"
-#include <boost/optional.hpp>
-
-class MonitorDialog : public TableDialog
-{
-public:
- explicit MonitorDialog (wxWindow *);
-
- void set (Monitor);
- boost::optional<Monitor> get () const;
-
-private:
- wxTextCtrl* _manufacturer_id;
- wxTextCtrl* _manufacturer_product_code;
- wxTextCtrl* _serial_number;
- wxTextCtrl* _week_of_manufacture;
- wxTextCtrl* _year_of_manufacture;
-};