blob: 73f97cf298a2abc5b2ce7cc5029bc9579a54f3fd (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// 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.
#ifndef ASH_WM_SHADOW_CONTROLLER_H_
#define ASH_WM_SHADOW_CONTROLLER_H_
#pragma once
#include <map>
#include "ash/ash_export.h"
#include "ash/wm/scoped_observer.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/linked_ptr.h"
#include "ui/aura/env_observer.h"
#include "ui/aura/window_observer.h"
namespace aura {
class Window;
}
namespace gfx {
class Rect;
}
namespace ash {
namespace internal {
class Shadow;
// ShadowController observes changes to windows and creates and updates drop
// shadows as needed.
class ASH_EXPORT ShadowController : public aura::EnvObserver,
public aura::WindowObserver {
public:
class TestApi {
public:
explicit TestApi(ShadowController* controller) : controller_(controller) {}
~TestApi() {}
Shadow* GetShadowForWindow(aura::Window* window) {
return controller_->GetShadowForWindow(window);
}
private:
ShadowController* controller_; // not owned
DISALLOW_COPY_AND_ASSIGN(TestApi);
};
explicit ShadowController();
virtual ~ShadowController();
// aura::EnvObserver override:
virtual void OnWindowInitialized(aura::Window* window) OVERRIDE;
// aura::WindowObserver overrides:
virtual void OnWindowPropertyChanged(
aura::Window* window, const void* key, intptr_t old) OVERRIDE;
virtual void OnWindowBoundsChanged(
aura::Window* window, const gfx::Rect& bounds) OVERRIDE;
virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE;
private:
typedef std::map<aura::Window*, linked_ptr<Shadow> > WindowShadowMap;
// Checks if |window| is visible and contains a property requesting a shadow.
bool ShouldShowShadowForWindow(aura::Window* window) const;
// Returns |window|'s shadow from |window_shadows_|, or NULL if no shadow
// exists.
Shadow* GetShadowForWindow(aura::Window* window);
// Updates the shadow styles for windows when activation changes.
void HandleWindowActivationChange(aura::Window* gaining_active,
aura::Window* losing_active);
// Shows or hides |window|'s shadow as needed (creating the shadow if
// necessary).
void HandlePossibleShadowVisibilityChange(aura::Window* window);
// Creates a new shadow for |window| and stores it in |window_shadows_|. The
// shadow's bounds are initialized and it is added to the window's layer.
void CreateShadowForWindow(aura::Window* window);
WindowShadowMap window_shadows_;
ScopedObserver<aura::Window, aura::WindowObserver> observer_manager_;
DISALLOW_COPY_AND_ASSIGN(ShadowController);
};
} // namespace internal
} // namespace ash
#endif // ASH_WM_SHADOW_CONTROLLER_H_
|