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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
|
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/bind.h"
#include "base/strings/sys_string_conversions.h"
#include "base/threading/thread_task_runner_handle.h"
#include "chrome/browser/ui/autofill/autofill_dialog_models.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_textfield.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_tooltip_controller.h"
#include "chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.h"
#include "chrome/browser/ui/cocoa/chrome_style.h"
#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_button.h"
#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_control_utils.h"
#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h"
#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.h"
#import "chrome/browser/ui/cocoa/key_equivalent_constants.h"
#import "chrome/browser/ui/cocoa/l10n_util.h"
#import "chrome/browser/ui/cocoa/spinner_view.h"
#include "chrome/browser/ui/cocoa/themed_window.h"
#include "chrome/grit/generated_resources.h"
#include "components/autofill/core/browser/ui/card_unmask_prompt_controller.h"
#include "components/grit/components_scaled_resources.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/web_contents.h"
#include "skia/ext/skia_utils_mac.h"
#import "ui/base/cocoa/controls/hyperlink_button_cell.h"
#include "ui/base/cocoa/window_size_constants.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/color_palette.h"
#include "ui/native_theme/native_theme.h"
namespace {
const CGFloat kButtonGap = 6.0f;
const CGFloat kButtonsToRetriableErrorGap = 12.0f;
const CGFloat kCvcInputWidth = 64.0f;
const CGFloat kCvcInputToImageGap = 8.0f;
const CGFloat kDialogContentMinWidth = 210.0f;
const CGFloat kInputRowToInstructionsGap = 16.0f;
const CGFloat kInstructionsToTitleGap = 8.0f;
const CGFloat kPermanentErrorExteriorPadding = 12.0f;
const CGFloat kPermanentErrorHorizontalPadding = 16.0f;
const CGFloat kPermanentErrorVerticalPadding = 12.0f;
const CGFloat kProgressToInstructionsGap = 24.0f;
const CGFloat kRetriableErrorToInputRowGap = 4.0f;
const CGFloat kSeparatorHeight = 1.0f;
const CGFloat kSpinnerSize = 16.0f;
const CGFloat kSpinnerToProgressTextGap = 8.0f;
const CGFloat kYearToCvcGap = 12.0f;
const SkColor kPermanentErrorTextColor = SK_ColorWHITE;
// TODO(bondd): Unify colors with Views version and AutofillMessageView.
const SkColor kShadingColor = SkColorSetRGB(0xf2, 0xf2, 0xf2);
const SkColor kSubtleBorderColor = SkColorSetRGB(0xdf, 0xdf, 0xdf);
} // namespace
namespace autofill {
#pragma mark CardUnmaskPromptViewBridge
CardUnmaskPromptViewBridge::CardUnmaskPromptViewBridge(
CardUnmaskPromptController* controller,
content::WebContents* web_contents)
: controller_(controller),
web_contents_(web_contents),
weak_ptr_factory_(this) {
view_controller_.reset(
[[CardUnmaskPromptViewCocoa alloc] initWithBridge:this]);
}
CardUnmaskPromptViewBridge::~CardUnmaskPromptViewBridge() {
}
void CardUnmaskPromptViewBridge::Show() {
// Setup the constrained window that will show the view.
base::scoped_nsobject<NSWindow> window([[ConstrainedWindowCustomWindow alloc]
initWithContentRect:[[view_controller_ view] bounds]]);
[window setContentView:[view_controller_ view]];
base::scoped_nsobject<CustomConstrainedWindowSheet> sheet(
[[CustomConstrainedWindowSheet alloc] initWithCustomWindow:window]);
constrained_window_ =
CreateAndShowWebModalDialogMac(this, web_contents_, sheet);
}
void CardUnmaskPromptViewBridge::ControllerGone() {
controller_ = nullptr;
PerformClose();
}
void CardUnmaskPromptViewBridge::DisableAndWaitForVerification() {
[view_controller_ setProgressOverlayText:
l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_VERIFICATION_IN_PROGRESS)
showSpinner:YES];
}
void CardUnmaskPromptViewBridge::GotVerificationResult(
const base::string16& error_message,
bool allow_retry) {
if (error_message.empty()) {
[view_controller_ setProgressOverlayText:
l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_VERIFICATION_SUCCESS)
showSpinner:NO];
base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
FROM_HERE, base::Bind(&CardUnmaskPromptViewBridge::PerformClose,
weak_ptr_factory_.GetWeakPtr()),
base::TimeDelta::FromSeconds(1));
} else {
[view_controller_ setProgressOverlayText:base::string16() showSpinner:NO];
if (allow_retry) {
// TODO(bondd): Views version never hides |errorLabel_|. When Views
// decides when to hide it then do the same thing here.
[view_controller_ setRetriableErrorMessage:error_message];
} else {
[view_controller_ setPermanentErrorMessage:error_message];
}
}
}
void CardUnmaskPromptViewBridge::OnConstrainedWindowClosed(
ConstrainedWindowMac* window) {
if (controller_)
controller_->OnUnmaskDialogClosed();
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, this);
}
CardUnmaskPromptController* CardUnmaskPromptViewBridge::GetController() {
return controller_;
}
content::WebContents* CardUnmaskPromptViewBridge::GetWebContents() {
return web_contents_;
}
void CardUnmaskPromptViewBridge::PerformClose() {
constrained_window_->CloseWebContentsModalDialog();
}
} // autofill
#pragma mark CardUnmaskPromptViewCocoa
@implementation CardUnmaskPromptViewCocoa {
base::scoped_nsobject<NSBox> permanentErrorBox_;
base::scoped_nsobject<NSView> expirationView_;
base::scoped_nsobject<NSView> inputRowView_;
base::scoped_nsobject<NSView> progressOverlayView_;
base::scoped_nsobject<NSView> storageView_;
base::scoped_nsobject<NSTextField> titleLabel_;
base::scoped_nsobject<NSTextField> permanentErrorLabel_;
base::scoped_nsobject<NSTextField> instructionsLabel_;
base::scoped_nsobject<AutofillTextField> cvcInput_;
base::scoped_nsobject<AutofillPopUpButton> monthPopup_;
base::scoped_nsobject<AutofillPopUpButton> yearPopup_;
base::scoped_nsobject<NSImageView> cvcImageView_;
base::scoped_nsobject<NSButton> newCardButton_;
base::scoped_nsobject<NSButton> cancelButton_;
base::scoped_nsobject<NSButton> verifyButton_;
base::scoped_nsobject<NSButton> storageCheckbox_;
base::scoped_nsobject<AutofillTooltipController> storageTooltip_;
base::scoped_nsobject<NSTextField> errorLabel_;
base::scoped_nsobject<NSTextField> progressOverlayLabel_;
base::scoped_nsobject<SpinnerView> progressOverlaySpinner_;
int monthPopupDefaultIndex_;
int yearPopupDefaultIndex_;
// Owns |self|.
autofill::CardUnmaskPromptViewBridge* bridge_;
}
+ (AutofillPopUpButton*)buildDatePopupWithModel:(ui::ComboboxModel&)model {
AutofillPopUpButton* popup =
[[AutofillPopUpButton alloc] initWithFrame:NSZeroRect pullsDown:NO];
for (int i = 0; i < model.GetItemCount(); ++i) {
[popup addItemWithTitle:base::SysUTF16ToNSString(model.GetItemAt(i))];
}
[popup sizeToFit];
return popup;
}
+ (base::scoped_nsobject<NSBox>)createPlainBox {
base::scoped_nsobject<NSBox> box([[NSBox alloc] initWithFrame:NSZeroRect]);
[box setBoxType:NSBoxCustom];
[box setBorderType:NSNoBorder];
[box setTitlePosition:NSNoTitle];
return box;
}
// Set |view|'s frame to the minimum dimensions required to contain all of its
// subviews.
+ (void)sizeToFitView:(NSView*)view {
NSRect frame = NSZeroRect;
for (NSView* child in [view subviews]) {
frame = NSUnionRect(frame, [child frame]);
}
[view setFrame:frame];
}
+ (void)verticallyCenterSubviewsInView:(NSView*)view {
CGFloat height = NSHeight([view frame]);
for (NSView* child in [view subviews]) {
[child setFrameOrigin:NSMakePoint(
NSMinX([child frame]),
ceil((height - NSHeight([child frame])) * 0.5))];
}
}
- (id)initWithBridge:(autofill::CardUnmaskPromptViewBridge*)bridge {
DCHECK(bridge);
if ((self = [super initWithNibName:nil bundle:nil]))
bridge_ = bridge;
return self;
}
- (void)updateProgressOverlayOrigin {
// Center |progressOverlayView_| horizontally in the dialog, and position it
// a fixed distance below |instructionsLabel_|.
CGFloat viewMinY = NSMinY([instructionsLabel_ frame]) -
kProgressToInstructionsGap -
NSHeight([progressOverlayView_ frame]);
[progressOverlayView_
setFrameOrigin:NSMakePoint(
NSMidX([[self view] frame]) -
NSWidth([progressOverlayView_ frame]) / 2.0,
viewMinY)];
}
- (void)setProgressOverlayText:(const base::string16&)text
showSpinner:(BOOL)showSpinner {
if (!text.empty()) {
NSAttributedString* attributedString =
constrained_window::GetAttributedLabelString(
SysUTF16ToNSString(text), chrome_style::kTextFontStyle,
NSNaturalTextAlignment, NSLineBreakByWordWrapping);
[progressOverlayLabel_ setAttributedStringValue:attributedString];
[progressOverlayLabel_ sizeToFit];
CGFloat labelMinX = showSpinner
? NSMaxX([progressOverlaySpinner_ frame]) +
kSpinnerToProgressTextGap
: 0;
[progressOverlayLabel_ setFrameOrigin:NSMakePoint(labelMinX, 0)];
[CardUnmaskPromptViewCocoa sizeToFitView:progressOverlayView_];
[self updateProgressOverlayOrigin];
}
[progressOverlayView_ setHidden:text.empty()];
[progressOverlaySpinner_ setHidden:!showSpinner];
[inputRowView_ setHidden:!text.empty()];
[errorLabel_ setHidden:!text.empty()];
[storageCheckbox_ setHidden:!text.empty()];
[[storageTooltip_ view] setHidden:!text.empty()];
[self updateVerifyButtonEnabled];
}
- (void)setInputsEnabled:(BOOL)enabled {
[cvcInput_ setEnabled:enabled];
[monthPopup_ setEnabled:enabled];
[yearPopup_ setEnabled:enabled];
[newCardButton_ setEnabled:enabled];
[storageCheckbox_ setEnabled:enabled];
}
- (void)setRetriableErrorMessage:(const base::string16&)text {
NSAttributedString* attributedString =
constrained_window::GetAttributedLabelString(
SysUTF16ToNSString(text), chrome_style::kTextFontStyle,
NSNaturalTextAlignment, NSLineBreakByWordWrapping);
[errorLabel_ setAttributedStringValue:attributedString];
// If there is more than one input showing, don't mark anything as invalid
// since we don't know the location of the problem.
if (!text.empty() &&
!bridge_->GetController()->ShouldRequestExpirationDate()) {
[cvcInput_ setValidityMessage:@"invalid"];
// Show "New card?" button, which when clicked will cause this dialog to
// ask for expiration date.
[self createNewCardButton];
[inputRowView_ addSubview:newCardButton_];
}
[self performLayoutAndDisplay:YES];
}
- (void)setPermanentErrorMessage:(const base::string16&)text {
if (!text.empty()) {
if (!permanentErrorBox_) {
permanentErrorBox_ = [CardUnmaskPromptViewCocoa createPlainBox];
[permanentErrorBox_
setFillColor:skia::SkColorToCalibratedNSColor(gfx::kGoogleRed700)];
[permanentErrorBox_
setContentViewMargins:NSMakeSize(kPermanentErrorHorizontalPadding,
kPermanentErrorVerticalPadding)];
permanentErrorLabel_.reset([constrained_window::CreateLabel() retain]);
[permanentErrorLabel_ setAutoresizingMask:NSViewWidthSizable];
[permanentErrorLabel_ setTextColor:skia::SkColorToCalibratedNSColor(
kPermanentErrorTextColor)];
[permanentErrorBox_ addSubview:permanentErrorLabel_];
[[self view] addSubview:permanentErrorBox_];
}
NSAttributedString* attributedString =
constrained_window::GetAttributedLabelString(
SysUTF16ToNSString(text), chrome_style::kTextFontStyle,
NSNaturalTextAlignment, NSLineBreakByWordWrapping);
[permanentErrorLabel_ setAttributedStringValue:attributedString];
}
[permanentErrorBox_ setHidden:text.empty()];
[self setInputsEnabled:NO];
[self updateVerifyButtonEnabled];
[self setRetriableErrorMessage:base::string16()];
}
- (void)updateVerifyButtonEnabled {
BOOL enable = ![inputRowView_ isHidden] &&
![[permanentErrorLabel_ stringValue] length] &&
bridge_->GetController()->InputCvcIsValid(
base::SysNSStringToUTF16([cvcInput_ stringValue])) &&
[self expirationDateIsValid];
[verifyButton_ setEnabled:enable];
}
- (void)onVerify:(id)sender {
bridge_->GetController()->OnUnmaskResponse(
base::SysNSStringToUTF16([cvcInput_ stringValue]),
base::SysNSStringToUTF16([monthPopup_ titleOfSelectedItem]),
base::SysNSStringToUTF16([yearPopup_ titleOfSelectedItem]),
[storageCheckbox_ state] == NSOnState);
}
- (void)onCancel:(id)sender {
bridge_->PerformClose();
}
- (void)onNewCard:(id)sender {
autofill::CardUnmaskPromptController* controller = bridge_->GetController();
controller->NewCardLinkClicked();
// |newCardButton_| will never be shown again for this dialog.
[newCardButton_ removeFromSuperview];
newCardButton_.reset();
[self createExpirationView];
[inputRowView_ addSubview:expirationView_];
[cvcInput_ setStringValue:@""];
[cvcInput_ setValidityMessage:@""];
[self setRetriableErrorMessage:base::string16()];
[self updateInstructionsText];
[self updateVerifyButtonEnabled];
[self performLayoutAndDisplay:YES];
}
- (BOOL)expirationDateIsValid {
if (!bridge_->GetController()->ShouldRequestExpirationDate())
return true;
return bridge_->GetController()->InputExpirationIsValid(
base::SysNSStringToUTF16([monthPopup_ titleOfSelectedItem]),
base::SysNSStringToUTF16([yearPopup_ titleOfSelectedItem]));
}
- (void)onExpirationDateChanged:(id)sender {
if ([self expirationDateIsValid]) {
if ([monthPopup_ invalid]) {
[monthPopup_ setValidityMessage:@""];
[yearPopup_ setValidityMessage:@""];
[self setRetriableErrorMessage:base::string16()];
}
} else if ([monthPopup_ indexOfSelectedItem] != monthPopupDefaultIndex_ &&
[yearPopup_ indexOfSelectedItem] != yearPopupDefaultIndex_) {
[monthPopup_ setValidityMessage:@"invalid"];
[yearPopup_ setValidityMessage:@"invalid"];
[self setRetriableErrorMessage:
l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_INVALID_EXPIRATION_DATE)];
}
[self updateVerifyButtonEnabled];
}
// Called when text in CVC input field changes.
- (void)controlTextDidChange:(NSNotification*)notification {
if (bridge_->GetController()->InputCvcIsValid(
base::SysNSStringToUTF16([cvcInput_ stringValue])))
[cvcInput_ setValidityMessage:@""];
[self updateVerifyButtonEnabled];
}
- (void)updateInstructionsText {
NSAttributedString* instructionsString =
constrained_window::GetAttributedLabelString(
SysUTF16ToNSString(
bridge_->GetController()->GetInstructionsMessage()),
chrome_style::kTextFontStyle, NSNaturalTextAlignment,
NSLineBreakByWordWrapping);
[instructionsLabel_ setAttributedStringValue:instructionsString];
}
- (void)createNewCardButton {
DCHECK(!newCardButton_);
newCardButton_.reset([[HyperlinkButtonCell
buttonWithString:l10n_util::GetNSString(
IDS_AUTOFILL_CARD_UNMASK_NEW_CARD_LINK)] retain]);
[newCardButton_ setTarget:self];
[newCardButton_ setAction:@selector(onNewCard:)];
[newCardButton_ sizeToFit];
}
- (void)createExpirationView {
DCHECK(!expirationView_);
expirationView_.reset([[NSView alloc] initWithFrame:NSZeroRect]);
// Add expiration month.
autofill::MonthComboboxModel monthModel;
monthPopupDefaultIndex_ = monthModel.GetDefaultIndex();
monthPopup_.reset(
[CardUnmaskPromptViewCocoa buildDatePopupWithModel:monthModel]);
[monthPopup_ setTarget:self];
[monthPopup_ setAction:@selector(onExpirationDateChanged:)];
[expirationView_ addSubview:monthPopup_];
// Add separator between month and year.
base::scoped_nsobject<NSTextField> separatorLabel(
[constrained_window::CreateLabel() retain]);
NSAttributedString* separatorString =
constrained_window::GetAttributedLabelString(
SysUTF16ToNSString(l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_EXPIRATION_DATE_SEPARATOR)),
chrome_style::kTextFontStyle, NSNaturalTextAlignment,
NSLineBreakByWordWrapping);
[separatorLabel setAttributedStringValue:separatorString];
[separatorLabel sizeToFit];
[expirationView_ addSubview:separatorLabel];
// Add expiration year.
autofill::YearComboboxModel yearModel;
yearPopupDefaultIndex_ = yearModel.GetDefaultIndex();
yearPopup_.reset(
[CardUnmaskPromptViewCocoa buildDatePopupWithModel:yearModel]);
[yearPopup_ setTarget:self];
[yearPopup_ setAction:@selector(onExpirationDateChanged:)];
[expirationView_ addSubview:yearPopup_];
// Lay out month, separator, and year within |expirationView_|.
[separatorLabel setFrameOrigin:NSMakePoint(NSMaxX([monthPopup_ frame]), 0)];
[yearPopup_ setFrameOrigin:NSMakePoint(NSMaxX([separatorLabel frame]), 0)];
NSRect expirationFrame = NSUnionRect([monthPopup_ frame], [yearPopup_ frame]);
expirationFrame.size.width += kYearToCvcGap;
[expirationView_ setFrame:expirationFrame];
[CardUnmaskPromptViewCocoa verticallyCenterSubviewsInView:expirationView_];
}
- (void)createStorageViewWithController:
(autofill::CardUnmaskPromptController*)controller {
DCHECK(!storageView_);
storageView_.reset([[NSView alloc] initWithFrame:NSZeroRect]);
[storageView_ setAutoresizingMask:NSViewWidthSizable];
base::scoped_nsobject<NSBox> box([CardUnmaskPromptViewCocoa createPlainBox]);
[box setAutoresizingMask:NSViewWidthSizable];
[box setFillColor:skia::SkColorToCalibratedNSColor(kShadingColor)];
[box setContentViewMargins:NSMakeSize(chrome_style::kHorizontalPadding,
chrome_style::kClientBottomPadding)];
[storageView_ addSubview:box];
// Add "Store card on this device" checkbox.
storageCheckbox_.reset([[NSButton alloc] initWithFrame:NSZeroRect]);
[storageCheckbox_ setButtonType:NSSwitchButton];
[storageCheckbox_
setTitle:base::SysUTF16ToNSString(l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_PROMPT_STORAGE_CHECKBOX))];
[storageCheckbox_
setState:(controller->GetStoreLocallyStartState() ? NSOnState
: NSOffState)];
[storageCheckbox_ sizeToFit];
[box addSubview:storageCheckbox_];
// Add "?" icon with tooltip.
storageTooltip_.reset([[AutofillTooltipController alloc]
initWithArrowLocation:info_bubble::kTopRight]);
[storageTooltip_ setImage:ui::ResourceBundle::GetSharedInstance()
.GetNativeImageNamed(IDR_AUTOFILL_TOOLTIP_ICON)
.ToNSImage()];
[storageTooltip_
setMessage:base::SysUTF16ToNSString(l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_PROMPT_STORAGE_TOOLTIP))];
[box addSubview:[storageTooltip_ view]];
[[storageTooltip_ view] setFrameOrigin:
NSMakePoint(NSMaxX([storageCheckbox_ frame]) + kButtonGap, 0)];
// Add horizontal separator.
base::scoped_nsobject<NSBox> separator(
[CardUnmaskPromptViewCocoa createPlainBox]);
[separator setAutoresizingMask:NSViewWidthSizable];
[separator setFillColor:skia::SkColorToCalibratedNSColor(kSubtleBorderColor)];
[storageView_ addSubview:separator];
[box sizeToFit];
[separator setFrame:NSMakeRect(0, NSMaxY([box frame]), NSWidth([box frame]),
kSeparatorHeight)];
[CardUnmaskPromptViewCocoa sizeToFitView:storageView_];
}
// +---------------------------------------------------------------------------+
// | titleLabel_ (Single line.) |
// |---------------------------------------------------------------------------|
// | permanentErrorBox_ (Multiline, may be hidden.) |
// |---------------------------------------------------------------------------|
// | instructionsLabel_ (Multiline.) |
// |---------------------------------------------------------------------------|
// | monthPopup_ yearPopup_ cvcInput_ cvcImageView_ newCardButton_ |
// | (All enclosed in inputRowView_. month, year, and newCard may be |
// | hidden.) |
// |---------------------------------------------------------------------------|
// | errorLabel_ (Multiline. Always takes up space for one line even if empty. |
// | Hidden when progressOverlayView_ is displayed.) |
// |---------------------------------------------------------------------------|
// | [Cancel] [Verify] |
// |---------------------------------------------------------------------------|
// | separator (NSBox.) |
// | storageCheckbox_ storageTooltip_ (Both enclosed in another NSBox. |
// | Checkbox and tooltip may be hidden.) |
// | (Both NSBoxes are enclosed in storageView_. Will all be nil if |
// | !CanStoreLocally()). |
// +---------------------------------------------------------------------------+
//
// progressOverlayView_:
// (Displayed below instructionsLabel_, may be hidden.
// progressOverlaySpinner_ may be hidden while progressOverlayLabel_
// is shown.)
// +---------------------------------------------------------------------------+
// | progressOverlaySpinner_ progressOverlayLabel_ |
// +---------------------------------------------------------------------------+
- (void)performLayoutAndDisplay:(BOOL)display {
// Lay out |inputRowView_| contents.
// |expirationView_| may be nil, which will result in |cvcInput_| getting an
// x value of 0.
[cvcInput_ setFrame:NSMakeRect(NSMaxX([expirationView_ frame]), 0,
kCvcInputWidth, NSHeight([cvcInput_ frame]))];
[cvcImageView_
setFrameOrigin:NSMakePoint(
NSMaxX([cvcInput_ frame]) + kCvcInputToImageGap, 0)];
[newCardButton_
setFrameOrigin:NSMakePoint(
NSMaxX([cvcImageView_ frame]) + kButtonGap, 0)];
[CardUnmaskPromptViewCocoa sizeToFitView:inputRowView_];
[CardUnmaskPromptViewCocoa verticallyCenterSubviewsInView:inputRowView_];
// Calculate dialog content width.
CGFloat contentWidth =
std::max(NSWidth([titleLabel_ frame]), NSWidth([inputRowView_ frame]));
contentWidth = std::max(contentWidth,
NSWidth(NSUnionRect([storageCheckbox_ frame],
[[storageTooltip_ view] frame])));
contentWidth = std::max(contentWidth, kDialogContentMinWidth);
CGFloat contentMinX = chrome_style::kHorizontalPadding;
CGFloat contentMaxX = contentMinX + contentWidth;
CGFloat dialogWidth = contentMaxX + chrome_style::kHorizontalPadding;
CGFloat verifyMinY =
storageView_ ? NSMaxY([storageView_ frame]) + chrome_style::kRowPadding
: chrome_style::kClientBottomPadding;
[verifyButton_
setFrameOrigin:NSMakePoint(contentMaxX - NSWidth([verifyButton_ frame]),
verifyMinY)];
[cancelButton_
setFrameOrigin:NSMakePoint(NSMinX([verifyButton_ frame]) - kButtonGap -
NSWidth([cancelButton_ frame]),
NSMinY([verifyButton_ frame]))];
[errorLabel_ setFrame:NSMakeRect(contentMinX, NSMaxY([cancelButton_ frame]) +
kButtonsToRetriableErrorGap,
contentWidth, 0)];
cocoa_l10n_util::WrapOrSizeToFit(errorLabel_);
[inputRowView_ setFrameOrigin:NSMakePoint(contentMinX,
NSMaxY([errorLabel_ frame]) +
kRetriableErrorToInputRowGap)];
[instructionsLabel_
setFrame:NSMakeRect(contentMinX, NSMaxY([inputRowView_ frame]) +
kInputRowToInstructionsGap,
contentWidth, 0)];
cocoa_l10n_util::WrapOrSizeToFit(instructionsLabel_);
// Lay out permanent error box.
CGFloat titleMinY;
if (permanentErrorBox_ && ![permanentErrorBox_ isHidden]) {
[permanentErrorBox_
setFrame:NSMakeRect(0, NSMaxY([instructionsLabel_ frame]) +
kPermanentErrorExteriorPadding,
dialogWidth, 0)];
cocoa_l10n_util::WrapOrSizeToFit(permanentErrorLabel_);
[permanentErrorBox_ sizeToFit];
titleMinY =
NSMaxY([permanentErrorBox_ frame]) + kPermanentErrorExteriorPadding;
} else {
titleMinY = NSMaxY([instructionsLabel_ frame]) + kInstructionsToTitleGap;
}
[titleLabel_ setFrameOrigin:NSMakePoint(contentMinX, titleMinY)];
// Set dialog size.
[[self view]
setFrameSize:NSMakeSize(dialogWidth, NSMaxY([titleLabel_ frame]) +
chrome_style::kTitleTopPadding)];
[self updateProgressOverlayOrigin];
NSRect frameRect =
[[[self view] window] frameRectForContentRect:[[self view] frame]];
[[[self view] window] setFrame:frameRect display:display];
}
- (void)loadView {
autofill::CardUnmaskPromptController* controller = bridge_->GetController();
DCHECK(controller);
base::scoped_nsobject<NSView> mainView(
[[NSView alloc] initWithFrame:NSZeroRect]);
inputRowView_.reset([[NSView alloc] initWithFrame:NSZeroRect]);
[mainView addSubview:inputRowView_];
if (controller->CanStoreLocally()) {
[self createStorageViewWithController:controller];
[mainView addSubview:storageView_];
}
// Add progress overlay.
progressOverlayView_.reset([[NSView alloc] initWithFrame:NSZeroRect]);
[progressOverlayView_ setHidden:YES];
[mainView addSubview:progressOverlayView_];
progressOverlayLabel_.reset([constrained_window::CreateLabel() retain]);
NSColor* throbberBlueColor = skia::SkColorToCalibratedNSColor(
ui::NativeTheme::GetInstanceForNativeUi()->GetSystemColor(
ui::NativeTheme::kColorId_ThrobberSpinningColor));
[progressOverlayLabel_ setTextColor:throbberBlueColor];
[progressOverlayView_ addSubview:progressOverlayLabel_];
progressOverlaySpinner_.reset([[SpinnerView alloc]
initWithFrame:NSMakeRect(0, 0, kSpinnerSize, kSpinnerSize)]);
[progressOverlayView_ addSubview:progressOverlaySpinner_];
// Add title label.
titleLabel_.reset([constrained_window::CreateLabel() retain]);
NSAttributedString* titleString =
constrained_window::GetAttributedLabelString(
SysUTF16ToNSString(controller->GetWindowTitle()),
chrome_style::kTitleFontStyle, NSNaturalTextAlignment,
NSLineBreakByWordWrapping);
[titleLabel_ setAttributedStringValue:titleString];
[titleLabel_ sizeToFit];
[mainView addSubview:titleLabel_];
// Add instructions label.
instructionsLabel_.reset([constrained_window::CreateLabel() retain]);
[self updateInstructionsText];
[mainView addSubview:instructionsLabel_];
// Add expiration date.
if (controller->ShouldRequestExpirationDate()) {
[self createExpirationView];
[inputRowView_ addSubview:expirationView_];
}
// Add CVC text input.
cvcInput_.reset([[AutofillTextField alloc] initWithFrame:NSZeroRect]);
[[cvcInput_ cell]
setPlaceholderString:l10n_util::GetNSString(
IDS_AUTOFILL_DIALOG_PLACEHOLDER_CVC)];
[[cvcInput_ cell] setScrollable:YES];
[cvcInput_ setDelegate:self];
[cvcInput_ sizeToFit];
[inputRowView_ addSubview:cvcInput_];
// Add CVC image.
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
NSImage* cvcImage =
rb.GetNativeImageNamed(controller->GetCvcImageRid()).ToNSImage();
cvcImageView_.reset([[NSImageView alloc] initWithFrame:NSZeroRect]);
[cvcImageView_ setImage:cvcImage];
[cvcImageView_ setFrameSize:[cvcImage size]];
[inputRowView_ addSubview:cvcImageView_];
// Add error message label.
errorLabel_.reset([constrained_window::CreateLabel() retain]);
[errorLabel_
setTextColor:skia::SkColorToCalibratedNSColor(gfx::kGoogleRed700)];
[mainView addSubview:errorLabel_];
// Add cancel button.
cancelButton_.reset(
[[ConstrainedWindowButton alloc] initWithFrame:NSZeroRect]);
[cancelButton_ setTitle:l10n_util::GetNSStringWithFixup(IDS_CANCEL)];
[cancelButton_ setKeyEquivalent:kKeyEquivalentEscape];
[cancelButton_ setTarget:self];
[cancelButton_ setAction:@selector(onCancel:)];
[cancelButton_ sizeToFit];
[mainView addSubview:cancelButton_];
// Add verify button.
verifyButton_.reset(
[[ConstrainedWindowButton alloc] initWithFrame:NSZeroRect]);
[verifyButton_ setTitle:l10n_util::FixUpWindowsStyleLabel(
controller->GetOkButtonLabel())];
[verifyButton_ setKeyEquivalent:kKeyEquivalentReturn];
[verifyButton_ setTarget:self];
[verifyButton_ setAction:@selector(onVerify:)];
[verifyButton_ sizeToFit];
[self updateVerifyButtonEnabled];
[mainView addSubview:verifyButton_];
[self setView:mainView];
[self performLayoutAndDisplay:NO];
}
@end
|