1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/crypto_module_password_dialog_view.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/views/chrome_layout_provider.h"
#include "chrome/grit/generated_resources.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/mojom/dialog_button.mojom.h"
#include "ui/base/mojom/ui_base_types.mojom-shared.h"
#include "ui/events/event.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/box_layout_view.h"
#include "ui/views/widget/widget.h"
////////////////////////////////////////////////////////////////////////////////
// CryptoModulePasswordDialogView, public:
CryptoModulePasswordDialogView::CryptoModulePasswordDialogView(
const std::string& slot_name,
CryptoModulePasswordReason reason,
const std::string& hostname,
CryptoModulePasswordCallback callback)
: callback_(std::move(callback)) {
SetButtonLabel(
ui::mojom::DialogButton::kOk,
l10n_util::GetStringUTF16(IDS_CRYPTO_MODULE_AUTH_DIALOG_OK_BUTTON_LABEL));
constexpr bool kAccepted = true;
constexpr bool kCancelled = false;
SetAcceptCallback(
base::BindOnce(&CryptoModulePasswordDialogView::DialogAcceptedOrCancelled,
base::Unretained(this), kAccepted));
SetCancelCallback(
base::BindOnce(&CryptoModulePasswordDialogView::DialogAcceptedOrCancelled,
base::Unretained(this), kCancelled));
SetCloseCallback(
base::BindOnce(&CryptoModulePasswordDialogView::DialogAcceptedOrCancelled,
base::Unretained(this), kCancelled));
SetModalType(ui::mojom::ModalType::kWindow);
set_margins(ChromeLayoutProvider::Get()->GetDialogInsetsForContentType(
views::DialogContentType::kText, views::DialogContentType::kControl));
Init(hostname, slot_name, reason);
}
CryptoModulePasswordDialogView::~CryptoModulePasswordDialogView() = default;
////////////////////////////////////////////////////////////////////////////////
// CryptoModulePasswordDialogView, private:
views::View* CryptoModulePasswordDialogView::GetInitiallyFocusedView() {
return password_entry_;
}
std::u16string CryptoModulePasswordDialogView::GetWindowTitle() const {
return l10n_util::GetStringUTF16(IDS_CRYPTO_MODULE_AUTH_DIALOG_TITLE);
}
void CryptoModulePasswordDialogView::ContentsChanged(
views::Textfield* sender,
const std::u16string& new_contents) {}
bool CryptoModulePasswordDialogView::HandleKeyEvent(
views::Textfield* sender,
const ui::KeyEvent& keystroke) {
return false;
}
void CryptoModulePasswordDialogView::Init(const std::string& hostname,
const std::string& slot_name,
CryptoModulePasswordReason reason) {
// Select an appropriate text for the reason.
std::string text;
const std::u16string& hostname16 = base::UTF8ToUTF16(hostname);
const std::u16string& slot16 = base::UTF8ToUTF16(slot_name);
switch (reason) {
case kCryptoModulePasswordCertEnrollment:
text = l10n_util::GetStringFUTF8(
IDS_CRYPTO_MODULE_AUTH_DIALOG_TEXT_CERT_ENROLLMENT, slot16,
hostname16);
break;
case kCryptoModulePasswordClientAuth:
text = l10n_util::GetStringFUTF8(
IDS_CRYPTO_MODULE_AUTH_DIALOG_TEXT_CLIENT_AUTH, slot16, hostname16);
break;
case kCryptoModulePasswordListCerts:
text = l10n_util::GetStringFUTF8(
IDS_CRYPTO_MODULE_AUTH_DIALOG_TEXT_LIST_CERTS, slot16);
break;
case kCryptoModulePasswordCertImport:
text = l10n_util::GetStringFUTF8(
IDS_CRYPTO_MODULE_AUTH_DIALOG_TEXT_CERT_IMPORT, slot16);
break;
case kCryptoModulePasswordCertExport:
text = l10n_util::GetStringFUTF8(
IDS_CRYPTO_MODULE_AUTH_DIALOG_TEXT_CERT_EXPORT, slot16);
break;
default:
NOTREACHED();
}
ChromeLayoutProvider* provider = ChromeLayoutProvider::Get();
SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::Orientation::kVertical, gfx::Insets(),
provider->GetDistanceMetric(views::DISTANCE_UNRELATED_CONTROL_VERTICAL)));
reason_label_ =
AddChildView(std::make_unique<views::Label>(base::UTF8ToUTF16(text)));
reason_label_->SetMultiLine(true);
reason_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
auto* password_container =
AddChildView(std::make_unique<views::BoxLayoutView>());
password_container->SetBetweenChildSpacing(
provider->GetDistanceMetric(views::DISTANCE_RELATED_LABEL_HORIZONTAL));
password_label_ = password_container->AddChildView(
std::make_unique<views::Label>(l10n_util::GetStringUTF16(
IDS_CRYPTO_MODULE_AUTH_DIALOG_PASSWORD_FIELD)));
password_entry_ =
password_container->AddChildView(std::make_unique<views::Textfield>());
password_entry_->SetTextInputType(ui::TEXT_INPUT_TYPE_PASSWORD);
password_entry_->set_controller(this);
password_entry_->GetViewAccessibility().SetName(*password_label_);
password_container->SetFlexForView(password_entry_, 1);
}
void CryptoModulePasswordDialogView::DialogAcceptedOrCancelled(bool accepted) {
CHECK(callback_);
std::string result =
accepted ? base::UTF16ToUTF8(password_entry_->GetText()) : std::string();
std::move(callback_).Run(result);
}
BEGIN_METADATA(CryptoModulePasswordDialogView)
END_METADATA
void ShowCryptoModulePasswordDialog(const std::string& slot_name,
bool retry,
CryptoModulePasswordReason reason,
const std::string& hostname,
gfx::NativeWindow parent,
CryptoModulePasswordCallback callback) {
CryptoModulePasswordDialogView* dialog = new CryptoModulePasswordDialogView(
slot_name, reason, hostname, std::move(callback));
views::DialogDelegate::CreateDialogWidget(dialog, nullptr, parent)->Show();
}
|