| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "athena/system/background_controller.h" | 5 #include "athena/system/background_controller.h" |
| 6 | 6 |
| 7 #include "athena/system/public/system_ui.h" | 7 #include "athena/system/public/system_ui.h" |
| 8 #include "athena/util/fill_layout_manager.h" |
| 8 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 9 #include "ui/compositor/layer.h" | 10 #include "ui/compositor/layer.h" |
| 10 #include "ui/gfx/canvas.h" | 11 #include "ui/gfx/canvas.h" |
| 11 #include "ui/gfx/image/image_skia.h" | 12 #include "ui/gfx/image/image_skia.h" |
| 12 #include "ui/views/view.h" | 13 #include "ui/views/view.h" |
| 13 #include "ui/views/widget/widget.h" | 14 #include "ui/views/widget/widget.h" |
| 14 | 15 |
| 15 namespace athena { | 16 namespace athena { |
| 16 | 17 |
| 17 class BackgroundView : public views::View { | 18 class BackgroundView : public views::View { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 54 |
| 54 DISALLOW_COPY_AND_ASSIGN(BackgroundView); | 55 DISALLOW_COPY_AND_ASSIGN(BackgroundView); |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 BackgroundController::BackgroundController(aura::Window* background_container) { | 58 BackgroundController::BackgroundController(aura::Window* background_container) { |
| 58 views::Widget* background_widget = new views::Widget; | 59 views::Widget* background_widget = new views::Widget; |
| 59 views::Widget::InitParams params( | 60 views::Widget::InitParams params( |
| 60 views::Widget::InitParams::TYPE_WINDOW_FRAMELESS); | 61 views::Widget::InitParams::TYPE_WINDOW_FRAMELESS); |
| 61 params.parent = background_container; | 62 params.parent = background_container; |
| 62 background_widget->Init(params); | 63 background_widget->Init(params); |
| 64 FillLayoutManager::SetAlwaysFill(background_widget->GetNativeWindow()); |
| 63 background_widget->GetNativeWindow()->layer()->SetMasksToBounds(true); | 65 background_widget->GetNativeWindow()->layer()->SetMasksToBounds(true); |
| 64 background_view_ = new BackgroundView; | 66 background_view_ = new BackgroundView; |
| 65 background_widget->SetContentsView(background_view_); | 67 background_widget->SetContentsView(background_view_); |
| 66 background_widget->GetNativeView()->SetName("BackgroundWidget"); | 68 background_widget->GetNativeView()->SetName("BackgroundWidget"); |
| 67 background_widget->Show(); | 69 background_widget->Show(); |
| 68 } | 70 } |
| 69 | 71 |
| 70 BackgroundController::~BackgroundController() { | 72 BackgroundController::~BackgroundController() { |
| 71 // background_widget is owned by the container and will be deleted | 73 // background_widget is owned by the container and will be deleted |
| 72 // when the container is deleted. | 74 // when the container is deleted. |
| 73 } | 75 } |
| 74 | 76 |
| 75 void BackgroundController::SetImage(const gfx::ImageSkia& image) { | 77 void BackgroundController::SetImage(const gfx::ImageSkia& image) { |
| 76 // TODO(oshima): implement cross fede animation. | 78 // TODO(oshima): implement cross fede animation. |
| 77 background_view_->SetImage(image); | 79 background_view_->SetImage(image); |
| 78 } | 80 } |
| 79 | 81 |
| 80 } // namespace athena | 82 } // namespace athena |
| OLD | NEW |