summaryrefslogtreecommitdiff
path: root/src/wx/screen_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-04-01 22:51:54 +0100
committerCarl Hetherington <cth@carlh.net>2014-04-01 22:51:54 +0100
commit854f2e5bbb7ffb9758b823af87034033033f3cb8 (patch)
tree54e5fe000e5f961ca65e2c2aba81749d9601226d /src/wx/screen_dialog.h
parent1eeba876ce09cedfa4c779bf3554372c01dc34c5 (diff)
parent931fa4ef2dbfb7c9f726c4dd41eea79621b49906 (diff)
Merge master.
Diffstat (limited to 'src/wx/screen_dialog.h')
-rw-r--r--src/wx/screen_dialog.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/wx/screen_dialog.h b/src/wx/screen_dialog.h
index 0cd7d3c49..5c6d964b8 100644
--- a/src/wx/screen_dialog.h
+++ b/src/wx/screen_dialog.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2014 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
@@ -20,8 +20,11 @@
#include <wx/wx.h>
#include <boost/shared_ptr.hpp>
#include <dcp/certificates.h>
+#include "table_dialog.h"
-class ScreenDialog : public wxDialog
+class Progress;
+
+class ScreenDialog : public TableDialog
{
public:
ScreenDialog (wxWindow *, std::string, std::string name = "", boost::shared_ptr<dcp::Certificate> c = boost::shared_ptr<dcp::Certificate> ());
@@ -30,11 +33,15 @@ public:
boost::shared_ptr<dcp::Certificate> certificate () const;
private:
- void load_certificate ();
+ void select_certificate ();
+ void load_certificate (boost::filesystem::path);
+ void download_certificate ();
void setup_sensitivity ();
wxTextCtrl* _name;
- wxButton* _certificate_load;
+ wxChoice* _manufacturer;
+ wxButton* _load_certificate;
+ wxButton* _download_certificate;
wxTextCtrl* _certificate_text;
boost::shared_ptr<dcp::Certificate> _certificate;