| OLD | NEW |
| 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_WINDOW_RESIZER_H_ | 5 #ifndef ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ |
| 6 #define ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ | 6 #define ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/wm/window_resizer.h" | 10 #include "ash/wm/window_resizer.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 public: | 30 public: |
| 31 // When dragging an attached window this is the min size we'll make sure is | 31 // When dragging an attached window this is the min size we'll make sure is |
| 32 // visible. In the vertical direction we take the max of this and that from | 32 // visible. In the vertical direction we take the max of this and that from |
| 33 // the delegate. | 33 // the delegate. |
| 34 static const int kMinOnscreenSize; | 34 static const int kMinOnscreenSize; |
| 35 | 35 |
| 36 // Min height we'll force on screen when dragging the caption. | 36 // Min height we'll force on screen when dragging the caption. |
| 37 // TODO: this should come from a property on the window. | 37 // TODO: this should come from a property on the window. |
| 38 static const int kMinOnscreenHeight; | 38 static const int kMinOnscreenHeight; |
| 39 | 39 |
| 40 // Snap region when dragging close to the edges. That is, as the window gets | 40 // Snap region when dragging close to the edges using mouse. That is, as the |
| 41 // this close to an edge of the screen it snaps to the edge. | 41 // window gets this close to an edge of the screen it snaps to the edge. |
| 42 static const int kScreenEdgeInset; | 42 static const int kScreenEdgeInset; |
| 43 | 43 |
| 44 virtual ~WorkspaceWindowResizer(); | 44 virtual ~WorkspaceWindowResizer(); |
| 45 | 45 |
| 46 static WorkspaceWindowResizer* Create( | 46 static WorkspaceWindowResizer* Create( |
| 47 aura::Window* window, | 47 aura::Window* window, |
| 48 const gfx::Point& location_in_parent, | 48 const gfx::Point& location_in_parent, |
| 49 int window_component, | 49 int window_component, |
| 50 const std::vector<aura::Window*>& attached_windows); | 50 const std::vector<aura::Window*>& attached_windows); |
| 51 | 51 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 // should attach. | 208 // should attach. |
| 209 MatchedEdge magnetism_edge_; | 209 MatchedEdge magnetism_edge_; |
| 210 | 210 |
| 211 DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizer); | 211 DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizer); |
| 212 }; | 212 }; |
| 213 | 213 |
| 214 } // namespace internal | 214 } // namespace internal |
| 215 } // namespace ash | 215 } // namespace ash |
| 216 | 216 |
| 217 #endif // ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ | 217 #endif // ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ |
| OLD | NEW |