| 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 "ash/common/system/tray/tray_popup_header_button.h" | 5 #include "ash/common/system/tray/tray_popup_header_button.h" |
| 6 | 6 |
| 7 #include "ash/common/ash_constants.h" | 7 #include "ash/common/ash_constants.h" |
| 8 #include "ash/common/system/tray/tray_constants.h" | 8 #include "ash/common/system/tray/tray_constants.h" |
| 9 #include "ui/base/resource/resource_bundle.h" | 9 #include "ui/base/resource/resource_bundle.h" |
| 10 #include "ui/views/background.h" | 10 #include "ui/views/background.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 bundle.GetImageNamed(disabled_resource_id_hover).ToImageSkia()); | 50 bundle.GetImageNamed(disabled_resource_id_hover).ToImageSkia()); |
| 51 } | 51 } |
| 52 | 52 |
| 53 TrayPopupHeaderButton::~TrayPopupHeaderButton() {} | 53 TrayPopupHeaderButton::~TrayPopupHeaderButton() {} |
| 54 | 54 |
| 55 const char* TrayPopupHeaderButton::GetClassName() const { | 55 const char* TrayPopupHeaderButton::GetClassName() const { |
| 56 return kViewClassName; | 56 return kViewClassName; |
| 57 } | 57 } |
| 58 | 58 |
| 59 gfx::Size TrayPopupHeaderButton::GetPreferredSize() const { | 59 gfx::Size TrayPopupHeaderButton::GetPreferredSize() const { |
| 60 int size = GetTrayConstant(TRAY_POPUP_ITEM_MIN_HEIGHT); | 60 return gfx::Size(kTrayPopupItemMinHeight, kTrayPopupItemMinHeight); |
| 61 return gfx::Size(size, size); | |
| 62 } | 61 } |
| 63 | 62 |
| 64 void TrayPopupHeaderButton::StateChanged(ButtonState old_state) { | 63 void TrayPopupHeaderButton::StateChanged(ButtonState old_state) { |
| 65 if (state() == STATE_HOVERED || state() == STATE_PRESSED) { | 64 if (state() == STATE_HOVERED || state() == STATE_PRESSED) { |
| 66 set_background(views::Background::CreateSolidBackground( | 65 set_background(views::Background::CreateSolidBackground( |
| 67 kTrayPopupHoverBackgroundColor)); | 66 kTrayPopupHoverBackgroundColor)); |
| 68 } else { | 67 } else { |
| 69 set_background(nullptr); | 68 set_background(nullptr); |
| 70 } | 69 } |
| 71 SchedulePaint(); | 70 SchedulePaint(); |
| 72 } | 71 } |
| 73 | 72 |
| 74 void TrayPopupHeaderButton::Initialize(const gfx::ImageSkia& icon, | 73 void TrayPopupHeaderButton::Initialize(const gfx::ImageSkia& icon, |
| 75 int accessible_name_id) { | 74 int accessible_name_id) { |
| 76 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); | 75 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); |
| 77 SetImage(views::Button::STATE_NORMAL, icon); | 76 SetImage(views::Button::STATE_NORMAL, icon); |
| 78 SetImageAlignment(views::ImageButton::ALIGN_CENTER, | 77 SetImageAlignment(views::ImageButton::ALIGN_CENTER, |
| 79 views::ImageButton::ALIGN_MIDDLE); | 78 views::ImageButton::ALIGN_MIDDLE); |
| 80 SetAccessibleName(bundle.GetLocalizedString(accessible_name_id)); | 79 SetAccessibleName(bundle.GetLocalizedString(accessible_name_id)); |
| 81 SetFocusForPlatform(); | 80 SetFocusForPlatform(); |
| 82 | 81 |
| 83 SetFocusPainter(views::Painter::CreateSolidFocusPainter( | 82 SetFocusPainter(views::Painter::CreateSolidFocusPainter( |
| 84 kFocusBorderColor, gfx::Insets(1, 2, 2, 3))); | 83 kFocusBorderColor, gfx::Insets(1, 2, 2, 3))); |
| 85 } | 84 } |
| 86 | 85 |
| 87 } // namespace ash | 86 } // namespace ash |
| OLD | NEW |