1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/desktop_background/desktop_background_view.h"
#include <limits>
#include "ash/ash_export.h"
#include "ash/shell.h"
#include "ash/shell_window_ids.h"
#include "base/utf_string_conversions.h"
#include "grit/ui_resources.h"
#include "ui/aura/root_window.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/image/image.h"
#include "ui/views/widget/widget.h"
namespace ash {
namespace internal {
// For our scaling ratios we need to round positive numbers.
static int RoundPositive(double x) {
return static_cast<int>(floor(x + 0.5));
}
////////////////////////////////////////////////////////////////////////////////
// DesktopBackgroundView, public:
DesktopBackgroundView::DesktopBackgroundView() {
wallpaper_ = *ui::ResourceBundle::GetSharedInstance().GetImageNamed(
IDR_AURA_WALLPAPER_1).ToSkBitmap();
wallpaper_.buildMipMap(false);
}
DesktopBackgroundView::~DesktopBackgroundView() {
}
////////////////////////////////////////////////////////////////////////////////
// DesktopBackgroundView, views::View overrides:
void DesktopBackgroundView::OnPaint(gfx::Canvas* canvas) {
// Scale the image while maintaining the aspect ratio, cropping as
// necessary to fill the background. Ideally the image should be larger
// than the largest display supported, if not we will center it rather than
// streching to avoid upsampling artifacts (Note that we could tile too, but
// decided not to do this at the moment).
gfx::Rect wallpaper_rect(0, 0, wallpaper_.width(), wallpaper_.height());
if (wallpaper_.width() > width() && wallpaper_.height() > height()) {
// The dimension with the smallest ratio must be cropped, the other one
// is preserved. Both are set in gfx::Size cropped_size.
double horizontal_ratio = static_cast<double>(width()) /
static_cast<double>(wallpaper_.width());
double vertical_ratio = static_cast<double>(height()) /
static_cast<double>(wallpaper_.height());
gfx::Size cropped_size;
if (vertical_ratio > horizontal_ratio) {
cropped_size = gfx::Size(
RoundPositive(static_cast<double>(width()) / vertical_ratio),
wallpaper_.height());
} else {
cropped_size = gfx::Size(wallpaper_.width(),
RoundPositive(static_cast<double>(height()) / horizontal_ratio));
}
gfx::Rect wallpaper_cropped_rect = wallpaper_rect.Center(cropped_size);
canvas->DrawBitmapInt(wallpaper_,
wallpaper_cropped_rect.x(), wallpaper_cropped_rect.y(),
wallpaper_cropped_rect.width(), wallpaper_cropped_rect.height(),
0, 0, width(), height(),
true);
} else {
// Center the wallpaper in the destination rectangle (Skia will crop
// as needed). We might decide later to tile small solid color images.
canvas->DrawBitmapInt(wallpaper_, (width() - wallpaper_.width()) / 2,
(height() - wallpaper_.height()) / 2);
}
}
bool DesktopBackgroundView::OnMousePressed(const views::MouseEvent& event) {
return true;
}
void DesktopBackgroundView::OnMouseReleased(const views::MouseEvent& event) {
if (event.IsRightMouseButton())
Shell::GetInstance()->ShowBackgroundMenu(GetWidget(), event.location());
}
views::Widget* CreateDesktopBackground() {
views::Widget* desktop_widget = new views::Widget;
views::Widget::InitParams params(
views::Widget::InitParams::TYPE_WINDOW_FRAMELESS);
DesktopBackgroundView* view = new DesktopBackgroundView;
params.delegate = view;
params.parent =
Shell::GetInstance()->GetContainer(
ash::internal::kShellWindowId_DesktopBackgroundContainer);
desktop_widget->Init(params);
desktop_widget->SetContentsView(view);
desktop_widget->Show();
desktop_widget->GetNativeView()->SetName("DesktopBackgroundView");
return desktop_widget;
}
} // namespace internal
} // namespace ash
|