| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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 "ash/common/system/tray/tray_image_item.h" | |
| 6 | |
| 7 #include "ash/common/shelf/wm_shelf_util.h" | |
| 8 #include "ash/common/system/tray/system_tray.h" | |
| 9 #include "ash/common/system/tray/tray_constants.h" | |
| 10 #include "ash/common/system/tray/tray_item_view.h" | |
| 11 #include "ash/common/system/tray/tray_utils.h" | |
| 12 #include "ash/resources/vector_icons/vector_icons.h" | |
| 13 #include "ui/gfx/image/image.h" | |
| 14 #include "ui/gfx/paint_vector_icon.h" | |
| 15 #include "ui/views/controls/image_view.h" | |
| 16 #include "ui/views/layout/box_layout.h" | |
| 17 | |
| 18 namespace ash { | |
| 19 | |
| 20 TrayImageItem::TrayImageItem(SystemTray* system_tray, | |
| 21 const gfx::VectorIcon& icon, | |
| 22 UmaType uma_type) | |
| 23 : SystemTrayItem(system_tray, uma_type), | |
| 24 icon_(icon), | |
| 25 icon_color_(kTrayIconColor), | |
| 26 tray_view_(nullptr) {} | |
| 27 | |
| 28 TrayImageItem::~TrayImageItem() {} | |
| 29 | |
| 30 views::View* TrayImageItem::tray_view() { | |
| 31 return tray_view_; | |
| 32 } | |
| 33 | |
| 34 views::View* TrayImageItem::CreateTrayView(LoginStatus status) { | |
| 35 CHECK(!tray_view_); | |
| 36 tray_view_ = new TrayItemView(this); | |
| 37 tray_view_->CreateImageView(); | |
| 38 UpdateImageOnImageView(); | |
| 39 tray_view_->SetVisible(GetInitialVisibility()); | |
| 40 return tray_view_; | |
| 41 } | |
| 42 | |
| 43 views::View* TrayImageItem::CreateDefaultView(LoginStatus status) { | |
| 44 return nullptr; | |
| 45 } | |
| 46 | |
| 47 views::View* TrayImageItem::CreateDetailedView(LoginStatus status) { | |
| 48 return nullptr; | |
| 49 } | |
| 50 | |
| 51 void TrayImageItem::UpdateAfterLoginStatusChange(LoginStatus status) {} | |
| 52 | |
| 53 void TrayImageItem::UpdateAfterShelfAlignmentChange(ShelfAlignment alignment) { | |
| 54 SetTrayImageItemBorder(tray_view_, alignment); | |
| 55 } | |
| 56 | |
| 57 void TrayImageItem::DestroyTrayView() { | |
| 58 tray_view_ = nullptr; | |
| 59 } | |
| 60 | |
| 61 void TrayImageItem::DestroyDefaultView() {} | |
| 62 | |
| 63 void TrayImageItem::DestroyDetailedView() {} | |
| 64 | |
| 65 void TrayImageItem::SetIconColor(SkColor color) { | |
| 66 icon_color_ = color; | |
| 67 UpdateImageOnImageView(); | |
| 68 } | |
| 69 | |
| 70 void TrayImageItem::UpdateImageOnImageView() { | |
| 71 if (!tray_view_) | |
| 72 return; | |
| 73 | |
| 74 tray_view_->image_view()->SetImage( | |
| 75 gfx::CreateVectorIcon(icon_, kTrayIconSize, icon_color_)); | |
| 76 } | |
| 77 | |
| 78 } // namespace ash | |
| OLD | NEW |