| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ui/app_list/views/signin_view.h" | 5 #include "ui/app_list/views/signin_view.h" |
| 6 | 6 |
| 7 #include "ui/app_list/signin_delegate.h" | 7 #include "ui/app_list/signin_delegate.h" |
| 8 #include "ui/base/resource/resource_bundle.h" | 8 #include "ui/base/resource/resource_bundle.h" |
| 9 #include "ui/gfx/font.h" | 9 #include "ui/gfx/font.h" |
| 10 #include "ui/views/background.h" | 10 #include "ui/views/background.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 text->SetFont(*text_font_); | 78 text->SetFont(*text_font_); |
| 79 text->SetMultiLine(true); | 79 text->SetMultiLine(true); |
| 80 text->SetHorizontalAlignment(gfx::ALIGN_LEFT); | 80 text->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
| 81 layout->StartRowWithPadding(0, kNormalSetId, 0, | 81 layout->StartRowWithPadding(0, kNormalSetId, 0, |
| 82 kHeadingPadding - title_descender); | 82 kHeadingPadding - title_descender); |
| 83 layout->AddView(text); | 83 layout->AddView(text); |
| 84 | 84 |
| 85 views::LabelButton* signin_button = new views::LabelButton( | 85 views::LabelButton* signin_button = new views::LabelButton( |
| 86 this, | 86 this, |
| 87 delegate_->GetSigninButtonText()); | 87 delegate_->GetSigninButtonText()); |
| 88 signin_button->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON); | 88 signin_button->SetStyle(views::Button::STYLE_BLUE_BUTTON); |
| 89 signin_button->SetFont(*button_font_); |
| 89 layout->StartRowWithPadding(0, kButtonSetId, 0, | 90 layout->StartRowWithPadding(0, kButtonSetId, 0, |
| 90 kButtonPadding - text_descender); | 91 kButtonPadding - text_descender); |
| 91 layout->AddView(signin_button); | 92 layout->AddView(signin_button); |
| 92 | 93 |
| 93 layout->StartRow(1, kNormalSetId); | 94 layout->StartRow(1, kNormalSetId); |
| 94 learn_more_link_ = new views::Link(delegate_->GetLearnMoreLinkText()); | 95 learn_more_link_ = new views::Link(delegate_->GetLearnMoreLinkText()); |
| 95 learn_more_link_->set_listener(this); | 96 learn_more_link_->set_listener(this); |
| 96 learn_more_link_->SetFont(*text_font_); | 97 learn_more_link_->SetFont(*text_font_); |
| 97 learn_more_link_->SetUnderline(false); | 98 learn_more_link_->SetUnderline(false); |
| 98 layout->AddView(learn_more_link_, | 99 layout->AddView(learn_more_link_, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 126 if (source == learn_more_link_) | 127 if (source == learn_more_link_) |
| 127 delegate_->OpenLearnMore(); | 128 delegate_->OpenLearnMore(); |
| 128 else if (source == settings_link_) | 129 else if (source == settings_link_) |
| 129 delegate_->OpenSettings(); | 130 delegate_->OpenSettings(); |
| 130 else | 131 else |
| 131 NOTREACHED(); | 132 NOTREACHED(); |
| 132 } | 133 } |
| 133 } | 134 } |
| 134 | 135 |
| 135 } // namespace app_list | 136 } // namespace app_list |
| OLD | NEW |