Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/views/desktop_ios_promotion/desktop_ios_promotion_vi ew.h" | 5 #include "chrome/browser/ui/views/desktop_ios_promotion/desktop_ios_promotion_bu bble_view.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/profiles/profile.h" | |
| 8 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 9 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_controll er.h" | 10 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_controll er.h" |
| 10 #include "chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h" | 11 #include "chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h" |
| 11 #include "chrome/grit/generated_resources.h" | 12 #include "chrome/grit/generated_resources.h" |
| 12 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 14 #include "ui/base/resource/resource_bundle.h" | |
| 13 #include "ui/views/controls/button/button.h" | 15 #include "ui/views/controls/button/button.h" |
| 14 #include "ui/views/controls/button/md_text_button.h" | 16 #include "ui/views/controls/button/md_text_button.h" |
| 15 #include "ui/views/controls/link.h" | |
| 16 #include "ui/views/layout/grid_layout.h" | 17 #include "ui/views/layout/grid_layout.h" |
| 17 #include "ui/views/layout/layout_constants.h" | 18 #include "ui/views/layout/layout_constants.h" |
| 18 | 19 |
| 19 namespace { | 20 namespace { |
| 20 | 21 |
| 21 int GetDesiredBubbleMaxWidth( | 22 int GetDesiredBubbleMaxWidth( |
| 22 desktop_ios_promotion::PromotionEntryPoint entry_point) { | 23 desktop_ios_promotion::PromotionEntryPoint entry_point) { |
| 23 if (entry_point == | 24 if (entry_point == |
| 24 desktop_ios_promotion::PromotionEntryPoint::SAVE_PASSWORD_BUBBLE) { | 25 desktop_ios_promotion::PromotionEntryPoint::SAVE_PASSWORD_BUBBLE) { |
| 25 return ManagePasswordsBubbleView::kDesiredBubbleWidth; | 26 return ManagePasswordsBubbleView::kDesiredBubbleWidth; |
| 26 } | 27 } |
| 27 return 0; | 28 return 0; |
| 28 } | 29 } |
| 29 | 30 |
| 30 } // namespace | 31 } // namespace |
| 31 | 32 |
| 32 DesktopIOSPromotionView::DesktopIOSPromotionView( | 33 DesktopIOSPromotionBubbleView::DesktopIOSPromotionBubbleView( |
| 33 desktop_ios_promotion::PromotionEntryPoint entry_point) { | 34 Profile* profile, |
| 34 promotion_controller_ = new DesktopIOSPromotionController(); | 35 desktop_ios_promotion::PromotionEntryPoint entry_point) |
| 35 int bubbleWidth = ::GetDesiredBubbleMaxWidth(entry_point); | 36 : recovery_phone_label_(new views::Label()), |
| 37 promotion_controller_( | |
| 38 new DesktopIOSPromotionController(profile, this, entry_point)) { | |
|
sky
2017/02/18 18:03:51
Use MakeUnique (see threads on chromium-dev for re
mrefaat
2017/02/18 19:12:00
Done.
| |
| 39 int bubble_width = | |
| 40 ::GetDesiredBubbleMaxWidth(promotion_controller_->entry_point()); | |
| 36 views::GridLayout* layout = new views::GridLayout(this); | 41 views::GridLayout* layout = new views::GridLayout(this); |
| 37 layout->set_minimum_size(gfx::Size(bubbleWidth, 0)); | 42 layout->set_minimum_size(gfx::Size(bubble_width, 0)); |
| 38 SetLayoutManager(layout); | 43 SetLayoutManager(layout); |
| 39 send_sms_button_ = views::MdTextButton::CreateSecondaryUiBlueButton( | 44 send_sms_button_ = views::MdTextButton::CreateSecondaryUiBlueButton( |
| 40 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_SEND_TO_PHONE)); | 45 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_SEND_TO_PHONE)); |
| 41 no_button_ = views::MdTextButton::CreateSecondaryUiButton( | 46 no_button_ = views::MdTextButton::CreateSecondaryUiButton( |
| 42 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_NO_THANKS)); | 47 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_NO_THANKS)); |
| 43 | 48 |
| 44 constexpr int kLabelColumnSet = 1; | 49 constexpr int kLabelColumnSet = 1; |
| 45 views::ColumnSet* column_set = layout->AddColumnSet(kLabelColumnSet); | 50 views::ColumnSet* column_set = layout->AddColumnSet(kLabelColumnSet); |
| 51 column_set->AddPaddingColumn(0, 8); | |
| 46 column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0, | 52 column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0, |
| 47 views::GridLayout::FIXED, bubbleWidth, 0); | 53 views::GridLayout::FIXED, bubble_width, 0); |
| 48 | 54 |
| 49 constexpr int kDoubleButtonColumnSet = 2; | 55 constexpr int kDoubleButtonColumnSet = 2; |
| 50 column_set = layout->AddColumnSet(kDoubleButtonColumnSet); | 56 column_set = layout->AddColumnSet(kDoubleButtonColumnSet); |
| 51 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, | 57 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, |
| 52 1, views::GridLayout::USE_PREF, 0, 0); | 58 1, views::GridLayout::USE_PREF, 0, 0); |
| 53 column_set->AddPaddingColumn(0, views::kRelatedButtonHSpacing); | 59 column_set->AddPaddingColumn(0, views::kRelatedButtonHSpacing); |
| 54 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, | 60 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, |
| 55 0, views::GridLayout::USE_PREF, 0, 0); | 61 0, views::GridLayout::USE_PREF, 0, 0); |
| 56 | 62 constexpr int kPhoneNumberColumnSet = 3; |
| 63 column_set = layout->AddColumnSet(kPhoneNumberColumnSet); | |
| 64 column_set->AddPaddingColumn(0, 32); | |
| 65 column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0, | |
| 66 views::GridLayout::FIXED, bubble_width, 0); | |
| 57 views::Label* label = | 67 views::Label* label = |
| 58 new views::Label(desktop_ios_promotion::GetPromoBubbleText(entry_point)); | 68 new views::Label(desktop_ios_promotion::GetPromoBubbleText( |
| 69 promotion_controller_->entry_point())); | |
| 70 label->SetEnabledColor(SK_ColorGRAY); | |
| 59 label->SetMultiLine(true); | 71 label->SetMultiLine(true); |
| 60 label->SetHorizontalAlignment(gfx::ALIGN_LEFT); | 72 label->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
| 61 layout->StartRow(0, kLabelColumnSet); | 73 layout->StartRow(0, kLabelColumnSet); |
| 62 layout->AddView(label); | 74 layout->AddView(label); |
| 75 layout->StartRow(0, kPhoneNumberColumnSet); | |
| 76 UpdateRecoveryPhoneLabel(); | |
| 77 ui::ResourceBundle* rb = &ui::ResourceBundle::GetSharedInstance(); | |
| 78 recovery_phone_label_->SetFontList( | |
| 79 rb->GetFontList(ui::ResourceBundle::BoldFont)); | |
| 80 recovery_phone_label_->SetEnabledColor(SK_ColorGRAY); | |
| 81 recovery_phone_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); | |
| 82 layout->AddView(recovery_phone_label_); | |
| 63 layout->AddPaddingRow(0, views::kUnrelatedControlVerticalSpacing); | 83 layout->AddPaddingRow(0, views::kUnrelatedControlVerticalSpacing); |
| 64 layout->StartRow(0, kDoubleButtonColumnSet); | 84 layout->StartRow(0, kDoubleButtonColumnSet); |
| 65 layout->AddView(send_sms_button_); | 85 layout->AddView(send_sms_button_); |
| 66 layout->AddView(no_button_); | 86 layout->AddView(no_button_); |
| 67 | 87 |
| 68 // TODO(crbug.com/676655): Log impression. | 88 promotion_controller_->OnPromotionShown(); |
| 69 } | 89 } |
| 70 | 90 |
| 71 void DesktopIOSPromotionView::ButtonPressed(views::Button* sender, | 91 DesktopIOSPromotionBubbleView::~DesktopIOSPromotionBubbleView() = default; |
| 72 const ui::Event& event) { | 92 |
| 93 void DesktopIOSPromotionBubbleView::ButtonPressed(views::Button* sender, | |
| 94 const ui::Event& event) { | |
| 73 if (sender == send_sms_button_) { | 95 if (sender == send_sms_button_) { |
| 74 promotion_controller_->OnSendSMSClicked(); | 96 promotion_controller_->OnSendSMSClicked(); |
| 75 } else if (sender == no_button_) { | 97 } else if (sender == no_button_) { |
| 76 promotion_controller_->OnNoThanksClicked(); | 98 promotion_controller_->OnNoThanksClicked(); |
| 77 } else { | 99 } else { |
| 78 NOTREACHED(); | 100 NOTREACHED(); |
| 79 } | 101 } |
| 80 GetWidget()->Close(); | 102 GetWidget()->Close(); |
| 81 } | 103 } |
| 104 | |
| 105 void DesktopIOSPromotionBubbleView::UpdateRecoveryPhoneLabel() { | |
| 106 recovery_phone_label_->SetText( | |
| 107 base::UTF8ToUTF16(promotion_controller_->GetUsersRecoveryPhoneNumber())); | |
| 108 } | |
| OLD | NEW |