Some renaming of certificate -> recipient.
[dcpomatic.git] / src / wx / screen_dialog.cc
index f94400be7fed94ff873601d5f7740a714fe41089..36e093ab87ba76085f11beed449fa3d3c9884752 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-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
 
 */
 
-#include <wx/filepicker.h>
-#include <wx/validate.h>
-#include <dcp/exceptions.h>
-#include "lib/compose.hpp"
 #include "screen_dialog.h"
 #include "wx_util.h"
+#include "download_certificate_dialog.h"
+#include "lib/compose.hpp"
+#include "lib/util.h"
+#include <dcp/exceptions.h>
+#include <wx/filepicker.h>
+#include <wx/validate.h>
+#include <iostream>
 
 using std::string;
 using std::cout;
-using boost::shared_ptr;
+using boost::optional;
 
-ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, shared_ptr<dcp::Certificate> certificate)
-       : wxDialog (parent, wxID_ANY, std_to_wx (title))
-       , _certificate (certificate)
+ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional<dcp::Certificate> recipient)
+       : TableDialog (parent, std_to_wx (title), 2, 1, true)
+       , _recipient (recipient)
 {
-       wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6);
-       table->AddGrowableCol (1, 1);
-
-       add_label_to_sizer (table, this, "Name", true);
-       _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1));
-       table->Add (_name, 1, wxEXPAND);
-
-       add_label_to_sizer (table, this, "Certificate", true);
-       _certificate_load = new wxButton (this, wxID_ANY, wxT ("Load from file..."));
-       table->Add (_certificate_load, 1, wxEXPAND);
-
-       table->AddSpacer (0);
-       _certificate_text = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxSize (320, 256), wxTE_MULTILINE | wxTE_READONLY);
-       if (certificate) {
-               _certificate_text->SetValue (certificate->certificate ());
+       add (_("Name"), true);
+       _name = add (new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1)));
+
+       add (_("Recipient certificate"), true);
+       wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
+       _recipient_thumbprint = new wxStaticText (this, wxID_ANY, wxT (""));
+       wxFont font = _recipient_thumbprint->GetFont ();
+       font.SetFamily (wxFONTFAMILY_TELETYPE);
+       _recipient_thumbprint->SetFont (font);
+       if (recipient) {
+               _recipient_thumbprint->SetLabel (std_to_wx (recipient->thumbprint ()));
        }
-       wxFont font = wxSystemSettings::GetFont (wxSYS_ANSI_FIXED_FONT);
-       font.SetPointSize (font.GetPointSize() / 2);
-       _certificate_text->SetFont (font);
-       table->Add (_certificate_text, 1, wxEXPAND);
-
-       wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
-       overall_sizer->Add (table, 1, wxEXPAND | wxALL, 6);
-       
-       wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
-       if (buttons) {
-               overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
-       }
-
-       SetSizer (overall_sizer);
-       overall_sizer->Layout ();
-       overall_sizer->SetSizeHints (this);
+       _get_recipient_from_file = new wxButton (this, wxID_ANY, _("Get from file..."));
+       _download_recipient = new wxButton (this, wxID_ANY, _("Download..."));
+       s->Add (_recipient_thumbprint, 1, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
+       s->Add (_get_recipient_from_file, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_X_GAP);
+       s->Add (_download_recipient, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_X_GAP);
+       add (s);
 
-       _certificate_load->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::load_certificate, this));
+       _get_recipient_from_file->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::get_recipient_from_file, this));
+       _download_recipient->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::download_recipient, this));
 
        setup_sensitivity ();
+       layout ();
 }
 
 string
@@ -76,34 +67,52 @@ ScreenDialog::name () const
        return wx_to_std (_name->GetValue());
 }
 
-shared_ptr<dcp::Certificate>
-ScreenDialog::certificate () const
+optional<dcp::Certificate>
+ScreenDialog::recipient () const
 {
-       return _certificate;
+       return _recipient;
 }
 
 void
-ScreenDialog::load_certificate ()
+ScreenDialog::load_recipient (boost::filesystem::path file)
 {
-       wxFileDialog* d = new wxFileDialog (this, _("Select Certificate File"));
+       try {
+               _recipient = dcp::Certificate (dcp::file_to_string (file));
+               _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ()));
+       } catch (dcp::MiscError& e) {
+               error_dialog (this, wxString::Format (_("Could not read certificate file (%s)"), std_to_wx(e.what()).data()));
+       }
+}
 
+void
+ScreenDialog::get_recipient_from_file ()
+{
+       wxFileDialog* d = new wxFileDialog (this, _("Select Certificate File"));
        if (d->ShowModal () == wxID_OK) {
-               try {
-                       _certificate.reset (new dcp::Certificate (boost::filesystem::path (wx_to_std (d->GetPath ()))));
-                       _certificate_text->SetValue (_certificate->certificate ());
-               } catch (dcp::MiscError& e) {
-                       error_dialog (this, String::compose ("Could not read certificate file (%1)", e.what()));
-               }
+               load_recipient (boost::filesystem::path (wx_to_std (d->GetPath ())));
        }
-       
        d->Destroy ();
 
        setup_sensitivity ();
 }
 
+void
+ScreenDialog::download_recipient ()
+{
+       DownloadCertificateDialog* d = new DownloadCertificateDialog (this);
+       if (d->ShowModal() == wxID_OK) {
+               _recipient = d->certificate ();
+               _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ()));
+       }
+       d->Destroy ();
+       setup_sensitivity ();
+}
+
 void
 ScreenDialog::setup_sensitivity ()
 {
        wxButton* ok = dynamic_cast<wxButton*> (FindWindowById (wxID_OK, this));
-       ok->Enable (_certificate);
+       if (ok) {
+               ok->Enable (static_cast<bool>(_recipient));
+       }
 }