blob: a7ec1f00aba960c02b54a4f005406bbd1c8c9c91 (
plain)
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
|
// Copyright (c) 2013 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.
#ifndef COMPONENTS_WALLPAPER_WALLPAPER_RESIZER_H_
#define COMPONENTS_WALLPAPER_WALLPAPER_RESIZER_H_
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "components/wallpaper/wallpaper_layout.h"
#include "components/wallpaper/wallpaper_resizer_observer.h"
#include "skia/ext/image_operations.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/image/image_skia.h"
namespace base {
class SequencedWorkerPool;
}
namespace wallpaper {
class WallpaperResizerObserver;
// Stores the current wallpaper data and resize it to |target_size| if needed.
class WALLPAPER_EXPORT WallpaperResizer {
public:
// Returns a unique identifier corresponding to |image|, suitable for
// comparison against the value returned by original_image_id(). If the image
// is modified, its ID will change.
static uint32_t GetImageId(const gfx::ImageSkia& image);
WallpaperResizer(const gfx::ImageSkia& image,
const gfx::Size& target_size,
WallpaperLayout layout,
base::SequencedWorkerPool* worker_pool_ptr);
~WallpaperResizer();
const gfx::ImageSkia& image() const { return image_; }
uint32_t original_image_id() const { return original_image_id_; }
WallpaperLayout layout() const { return layout_; }
base::SequencedWorkerPool* worker_pool() const { return worker_pool_; }
// Called on the UI thread to run Resize() on the worker pool and post an
// OnResizeFinished() task back to the UI thread on completion.
void StartResize();
// Add/Remove observers.
void AddObserver(WallpaperResizerObserver* observer);
void RemoveObserver(WallpaperResizerObserver* observer);
private:
// Copies |resized_bitmap| to |image_| and notifies observers after Resize()
// has finished running.
void OnResizeFinished(SkBitmap* resized_bitmap);
ObserverList<WallpaperResizerObserver> observers_;
// Image that should currently be used for wallpaper. It initially
// contains the original image and is updated to contain the resized
// image by OnResizeFinished().
gfx::ImageSkia image_;
// Unique identifier corresponding to the original (i.e. pre-resize) |image_|.
uint32_t original_image_id_;
gfx::Size target_size_;
WallpaperLayout layout_;
base::SequencedWorkerPool* worker_pool_;
base::WeakPtrFactory<WallpaperResizer> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(WallpaperResizer);
};
} // namespace wallpaper
#endif // COMPONENTS_WALLPAPER_WALLPAPER_RESIZER_H_
|