OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/views/payments/payment_sheet_view_controller.h" |
| 6 |
| 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/ui/views/payments/payment_request_dialog.h" |
| 9 #include "chrome/browser/ui/views/payments/payment_request_views_util.h" |
| 10 #include "chrome/grit/generated_resources.h" |
| 11 #include "ui/base/l10n/l10n_util.h" |
| 12 #include "ui/views/controls/button/md_text_button.h" |
| 13 #include "ui/views/layout/grid_layout.h" |
| 14 |
| 15 namespace { |
| 16 |
| 17 // The tag for the button that navigates to the Order Summary sheet. |
| 18 constexpr int kOrderSummaryTag = 0; |
| 19 |
| 20 } |
| 21 |
| 22 namespace payments { |
| 23 |
| 24 PaymentSheetViewController::PaymentSheetViewController( |
| 25 PaymentRequestImpl* impl, PaymentRequestDialog* dialog) |
| 26 : PaymentRequestSheetController(impl, dialog) {} |
| 27 |
| 28 std::unique_ptr<views::View> PaymentSheetViewController::CreateView() { |
| 29 views::View* content_view = new views::View; |
| 30 |
| 31 views::GridLayout* layout = new views::GridLayout(content_view); |
| 32 content_view->SetLayoutManager(layout); |
| 33 views::ColumnSet* columns = layout->AddColumnSet(0); |
| 34 columns->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, |
| 35 0, views::GridLayout::USE_PREF, 0, 0); |
| 36 |
| 37 layout->StartRow(0, 0); |
| 38 views::LabelButton* order_summary_button = |
| 39 views::MdTextButton::CreateSecondaryUiBlueButton( |
| 40 this, base::ASCIIToUTF16("Order Summary")); |
| 41 order_summary_button->set_tag(kOrderSummaryTag); |
| 42 layout->AddView(order_summary_button); |
| 43 |
| 44 return payments::CreatePaymentView( |
| 45 l10n_util::GetStringUTF16(IDS_PAYMENT_REQUEST_PAYMENT_SHEET_TITLE), |
| 46 content_view); |
| 47 } |
| 48 |
| 49 void PaymentSheetViewController::ButtonPressed( |
| 50 views::Button* sender, const ui::Event& event) { |
| 51 DCHECK_EQ(kOrderSummaryTag, sender->tag()); |
| 52 |
| 53 dialog()->ShowOrderSummary(); |
| 54 } |
| 55 |
| 56 } // namespace payments |
OLD | NEW |