diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-15 20:16:42 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-15 20:16:42 +0000 |
| commit | 3a67f024a614687a811ecb5c96a56fc664f04c3a (patch) | |
| tree | ab8860e151c11b838d88d031c9bb6dc9c3630877 /src/wx/screen_dialog.cc | |
| parent | f6caaae7747ed481fbaddcaa6afcfdefbbfc545a (diff) | |
Add user interface for trusted devices.
Diffstat (limited to 'src/wx/screen_dialog.cc')
| -rw-r--r-- | src/wx/screen_dialog.cc | 114 |
1 files changed, 98 insertions, 16 deletions
diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc index 36e093ab8..a8cb1cbed 100644 --- a/src/wx/screen_dialog.cc +++ b/src/wx/screen_dialog.cc @@ -29,36 +29,109 @@ using std::string; using std::cout; +using std::vector; using boost::optional; +using boost::bind; + +class FileDialogWrapper +{ +public: + FileDialogWrapper (wxWindow* parent) + : _parent (parent) + { + _dialog = new wxFileDialog (parent, _("Select certificate file")); + } + + void set (dcp::Certificate) {} + + dcp::Certificate get () { + return dcp::Certificate (dcp::file_to_string (wx_to_std (_dialog->GetPath ()))); + } + + int ShowModal () + { + return _dialog->ShowModal (); + } + + void Destroy () + { + _dialog->Destroy (); + /* eek! */ + delete this; + } + +private: + wxWindow* _parent; + wxFileDialog* _dialog; +}; + +static string +column (dcp::Certificate c) +{ + return c.thumbprint (); +} ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional<dcp::Certificate> recipient) - : TableDialog (parent, std_to_wx (title), 2, 1, true) + : wxDialog (parent, wxID_ANY, std_to_wx (title)) , _recipient (recipient) { - add (_("Name"), true); - _name = add (new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1))); + wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); + SetSizer (overall_sizer); - add (_("Recipient certificate"), true); - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _recipient_thumbprint = new wxStaticText (this, wxID_ANY, wxT ("")); - wxFont font = _recipient_thumbprint->GetFont (); + _sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); + int r = 0; + + add_label_to_sizer (_sizer, this, _("Name"), true, wxGBPosition (r, 0)); + _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1)); + _sizer->Add (_name, wxGBPosition (r, 1)); + ++r; + + wxClientDC dc (this); + wxFont font = _name->GetFont (); font.SetFamily (wxFONTFAMILY_TELETYPE); + dc.SetFont (font); + wxSize size = dc.GetTextExtent (wxT ("1234567890123456789012345678")); + size.SetHeight (-1); + + add_label_to_sizer (_sizer, this, _("Recipient certificate"), true, wxGBPosition (r, 0)); + wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); + _recipient_thumbprint = new wxStaticText (this, wxID_ANY, wxT (""), wxDefaultPosition, size); _recipient_thumbprint->SetFont (font); - if (recipient) { - _recipient_thumbprint->SetLabel (std_to_wx (recipient->thumbprint ())); - } + set_recipient (recipient); _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); + _sizer->Add (s, wxGBPosition (r, 1)); + ++r; + + add_label_to_sizer (_sizer, this, _("Other trusted devices"), true, wxGBPosition (r, 0)); + ++r; + + vector<string> columns; + columns.push_back (wx_to_std (_("Thumbprint"))); + _trusted_device_list = new EditableList<dcp::Certificate, FileDialogWrapper> ( + this, columns, bind (&ScreenDialog::trusted_devices, this), bind (&ScreenDialog::set_trusted_devices, this, _1), bind (&column, _1), false + ); + + _sizer->Add (_trusted_device_list, wxGBPosition (r, 0), wxGBSpan (1, 3), wxEXPAND); + ++r; _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 (); + + overall_sizer->Add (_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); + + wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); + if (buttons) { + overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); + } + + overall_sizer->Layout (); + overall_sizer->SetSizeHints (this); } string @@ -77,8 +150,7 @@ void ScreenDialog::load_recipient (boost::filesystem::path file) { try { - _recipient = dcp::Certificate (dcp::file_to_string (file)); - _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ())); + set_recipient (dcp::Certificate (dcp::file_to_string (file))); } catch (dcp::MiscError& e) { error_dialog (this, wxString::Format (_("Could not read certificate file (%s)"), std_to_wx(e.what()).data())); } @@ -101,8 +173,7 @@ ScreenDialog::download_recipient () { DownloadCertificateDialog* d = new DownloadCertificateDialog (this); if (d->ShowModal() == wxID_OK) { - _recipient = d->certificate (); - _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ())); + set_recipient (d->certificate ()); } d->Destroy (); setup_sensitivity (); @@ -116,3 +187,14 @@ ScreenDialog::setup_sensitivity () ok->Enable (static_cast<bool>(_recipient)); } } + +void +ScreenDialog::set_recipient (optional<dcp::Certificate> r) +{ + _recipient = r; + + if (_recipient) { + _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ())); + _sizer->Layout (); + } +} |
