Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: ash/wm/workspace/phantom_window_controller.h

Issue 101773004: Refactor PhantomWindowController so that the PhantomWindowController owns the phantom window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/wm/gestures/system_pinch_handler.cc ('k') | ash/wm/workspace/phantom_window_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef ASH_WM_WORKSPACE_PHANTOM_WINDOW_CONTROLLER_H_ 5 #ifndef ASH_WM_WORKSPACE_PHANTOM_WINDOW_CONTROLLER_H_
6 #define ASH_WM_WORKSPACE_PHANTOM_WINDOW_CONTROLLER_H_ 6 #define ASH_WM_WORKSPACE_PHANTOM_WINDOW_CONTROLLER_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "ui/gfx/animation/animation_delegate.h"
13 #include "ui/gfx/rect.h" 12 #include "ui/gfx/rect.h"
14 13
15 namespace aura { 14 namespace aura {
16 class Window; 15 class Window;
17 } 16 }
18 17
19 namespace gfx {
20 class SlideAnimation;
21 }
22
23 namespace views { 18 namespace views {
24 class Widget; 19 class Widget;
25 } 20 }
26 21
27 namespace ash { 22 namespace ash {
28 namespace internal { 23 namespace internal {
29 24
30 // PhantomWindowController is responsible for showing a phantom representation 25 // PhantomWindowController is responsible for showing a phantom representation
31 // of a window. It's used used during dragging a window to show a snap location. 26 // of a window. It's used to show a preview of how snapping or docking a window
32 class ASH_EXPORT PhantomWindowController : public gfx::AnimationDelegate { 27 // will affect the window's bounds.
28 class ASH_EXPORT PhantomWindowController {
33 public: 29 public:
34 explicit PhantomWindowController(aura::Window* window); 30 explicit PhantomWindowController(aura::Window* window);
31
32 // Hides the phantom window without any animation.
35 virtual ~PhantomWindowController(); 33 virtual ~PhantomWindowController();
36 34
37 // Bounds last passed to Show().
38 const gfx::Rect& bounds_in_screen() const { return bounds_in_screen_; }
39
40 // Animates the phantom window towards |bounds_in_screen|. 35 // Animates the phantom window towards |bounds_in_screen|.
41 // Creates two (if start bounds intersect any root window other than the 36 // Creates two (if start bounds intersect any root window other than the
42 // root window that matches the target bounds) or one (otherwise) phantom 37 // root window that matches the target bounds) or one (otherwise) phantom
43 // widgets to display animated rectangle in each root. 38 // widgets to display animated rectangle in each root.
44 // This does not immediately show the window. 39 // This does not immediately show the window.
45 void Show(const gfx::Rect& bounds_in_screen); 40 void Show(const gfx::Rect& bounds_in_screen);
46 41
47 // Hides the phantom.
48 void Hide();
49
50 // Returns true if the phantom is showing.
51 bool IsShowing() const;
52
53 // If set, the phantom window is stacked below this window, otherwise it 42 // If set, the phantom window is stacked below this window, otherwise it
54 // is stacked above the window passed to the constructor. 43 // is stacked above the window passed to the constructor.
55 void set_phantom_below_window(aura::Window* phantom_below_window) { 44 void set_phantom_below_window(aura::Window* phantom_below_window) {
56 phantom_below_window_ = phantom_below_window; 45 phantom_below_window_ = phantom_below_window;
57 } 46 }
58 47
59 // gfx::AnimationDelegate overrides:
60 virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE;
61
62 private: 48 private:
63 FRIEND_TEST_ALL_PREFIXES(WorkspaceWindowResizerTest, PhantomWindowShow); 49 friend class PhantomWindowControllerTest;
64 50
65 // Creates, shows and returns a phantom widget at |bounds| 51 // Creates, shows and returns a phantom widget at |bounds|
66 // with kShellWindowId_ShelfContainer in |root_window| as a parent. 52 // with kShellWindowId_ShelfContainer in |root_window| as a parent.
67 views::Widget* CreatePhantomWidget(aura::Window* root_window, 53 scoped_ptr<views::Widget> CreatePhantomWidget(
68 const gfx::Rect& bounds_in_screen); 54 aura::Window* root_window,
55 const gfx::Rect& bounds_in_screen);
69 56
70 // Window the phantom is placed beneath. 57 // Window the phantom is placed beneath.
71 aura::Window* window_; 58 aura::Window* window_;
72 59
73 // If set, the phantom window should get stacked below this window. 60 // If set, the phantom window should get stacked below this window.
74 aura::Window* phantom_below_window_; 61 aura::Window* phantom_below_window_;
75 62
76 // Initially the bounds of |window_| (in screen coordinates). 63 // Target bounds of the animation in screen coordinates.
77 // Each time Show() is invoked |start_bounds_| is then reset to the bounds of 64 gfx::Rect target_bounds_in_screen_;
78 // |phantom_widget_| and |bounds_| is set to the value passed into Show().
79 // The animation animates between these two values.
80 gfx::Rect start_bounds_;
81 65
82 // Target bounds of the animation in screen coordinates. 66 // Phantom representation of the window which is in the root window matching
83 gfx::Rect bounds_in_screen_; 67 // |target_bounds_in_screen_|.
68 scoped_ptr<views::Widget> phantom_widget_in_target_root_;
84 69
85 // The primary phantom representation of the window. It is parented by the 70 // Phantom representation of the window which is in the root window matching
86 // root window matching the target bounds. 71 // the window's initial bounds. This allows animations to progress from one
87 views::Widget* phantom_widget_; 72 // display to the other. NULL if the phantom window starts and ends in the
88 73 // same root window.
89 // If the animation starts on another display, this is the secondary phantom 74 scoped_ptr<views::Widget> phantom_widget_in_start_root_;
90 // representation of the window used on the initial display, otherwise this is
91 // NULL. This allows animation to progress from one display into the other.
92 views::Widget* phantom_widget_start_;
93
94 // Used to transition the bounds.
95 scoped_ptr<gfx::SlideAnimation> animation_;
96 75
97 DISALLOW_COPY_AND_ASSIGN(PhantomWindowController); 76 DISALLOW_COPY_AND_ASSIGN(PhantomWindowController);
98 }; 77 };
99 78
100 } // namespace internal 79 } // namespace internal
101 } // namespace ash 80 } // namespace ash
102 81
103 #endif // ASH_WM_WORKSPACE_PHANTOM_WINDOW_CONTROLLER_H_ 82 #endif // ASH_WM_WORKSPACE_PHANTOM_WINDOW_CONTROLLER_H_
OLDNEW
« no previous file with comments | « ash/wm/gestures/system_pinch_handler.cc ('k') | ash/wm/workspace/phantom_window_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698