Move render_view_context_menu.* and related files out of tab_contents.
[chromium-blink-merge.git] / ash / wm / resize_shadow_controller.h
blob1eccf4c836428046b2aa5f2ab15990903c955dc4
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.
5 #ifndef ASH_WM_RESIZE_SHADOW_CONTROLLER_H_
6 #define ASH_WM_RESIZE_SHADOW_CONTROLLER_H_
8 #include <map>
10 #include "ash/ash_export.h"
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h"
13 #include "base/memory/linked_ptr.h"
14 #include "ui/aura/window_observer.h"
16 namespace aura {
17 class Window;
20 namespace ash {
21 namespace internal {
23 class ResizeShadow;
25 // ResizeShadowController observes changes to resizable windows and shows
26 // a resize handle visual effect when the cursor is near the edges.
27 class ASH_EXPORT ResizeShadowController : public aura::WindowObserver {
28 public:
29 ResizeShadowController();
30 virtual ~ResizeShadowController();
32 // Shows the appropriate shadow for a given |window| and |hit_test| location.
33 void ShowShadow(aura::Window* window, int hit_test);
35 // Hides the shadow for a |window|, if it has one.
36 void HideShadow(aura::Window* window);
38 ResizeShadow* GetShadowForWindowForTest(aura::Window* window);
40 // aura::WindowObserver overrides:
41 virtual void OnWindowBoundsChanged(
42 aura::Window* window,
43 const gfx::Rect& old_bounds,
44 const gfx::Rect& new_bounds) OVERRIDE;
45 virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE;
47 private:
48 typedef std::map<aura::Window*, linked_ptr<ResizeShadow> > WindowShadowMap;
50 // Creates a shadow for a given window and returns it. |window_shadows_|
51 // owns the memory.
52 ResizeShadow* CreateShadow(aura::Window* window);
54 // Returns the resize shadow for |window| or NULL if no shadow exists.
55 ResizeShadow* GetShadowForWindow(aura::Window* window);
57 WindowShadowMap window_shadows_;
59 DISALLOW_COPY_AND_ASSIGN(ResizeShadowController);
62 } // namespace internal
63 } // namespace ash
65 #endif // ASH_WM_RESIZE_SHADOW_CONTROLLER_H_