OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_DEVTOOLS_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_ |
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "ui/gfx/insets.h" | 9 #include "ui/gfx/insets.h" |
10 #include "ui/gfx/rect.h" | 10 #include "ui/gfx/rect.h" |
11 #include "ui/gfx/size.h" | 11 #include "ui/gfx/size.h" |
12 | 12 |
13 // This class knows how to resize both DevTools and inspected WebContents | 13 // This class knows how to resize both DevTools and inspected WebContents |
14 // inside a browser window hierarchy. | 14 // inside a browser window hierarchy. |
15 class DevToolsContentsResizingStrategy { | 15 class DevToolsContentsResizingStrategy { |
16 public: | 16 public: |
17 DevToolsContentsResizingStrategy(); | 17 DevToolsContentsResizingStrategy(); |
18 DevToolsContentsResizingStrategy( | 18 DevToolsContentsResizingStrategy( |
19 const gfx::Insets& insets, | 19 const gfx::Insets& insets, |
20 const gfx::Size& min_size); | 20 const gfx::Size& min_size); |
| 21 explicit DevToolsContentsResizingStrategy(const gfx::Rect& bounds); |
21 | 22 |
22 void CopyFrom(const DevToolsContentsResizingStrategy& strategy); | 23 void CopyFrom(const DevToolsContentsResizingStrategy& strategy); |
23 bool Equals(const DevToolsContentsResizingStrategy& strategy); | 24 bool Equals(const DevToolsContentsResizingStrategy& strategy); |
24 | 25 |
25 const gfx::Insets& insets() const { return insets_; } | 26 const gfx::Insets& insets() const { return insets_; } |
26 const gfx::Size& min_size() const { return min_size_; } | 27 const gfx::Size& min_size() const { return min_size_; } |
| 28 const gfx::Rect& bounds() const { return bounds_; } |
27 | 29 |
28 private: | 30 private: |
29 // Insets of contents inside DevTools. | 31 // Insets of contents inside DevTools. |
30 gfx::Insets insets_; | 32 gfx::Insets insets_; |
31 | 33 |
32 // Minimum size of contents. | 34 // Minimum size of contents. |
33 gfx::Size min_size_; | 35 gfx::Size min_size_; |
34 | 36 |
| 37 // Contents bounds. When non-empty, used instead of insets. |
| 38 gfx::Rect bounds_; |
| 39 |
35 DISALLOW_COPY_AND_ASSIGN(DevToolsContentsResizingStrategy); | 40 DISALLOW_COPY_AND_ASSIGN(DevToolsContentsResizingStrategy); |
36 }; | 41 }; |
37 | 42 |
38 // Applies contents resizing strategy, producing bounds for devtools and | 43 // Applies contents resizing strategy, producing bounds for devtools and |
39 // page contents views. Generally, page contents view is placed atop of devtools | 44 // page contents views. Generally, page contents view is placed atop of devtools |
40 // inside a common parent view, which size should be passed in |container_size|. | 45 // inside a common parent view, which size should be passed in |container_size|. |
41 // When unknown, providing empty rect as previous devtools and contents bounds | 46 // When unknown, providing empty rect as previous devtools and contents bounds |
42 // is allowed. | 47 // is allowed. |
43 void ApplyDevToolsContentsResizingStrategy( | 48 void ApplyDevToolsContentsResizingStrategy( |
44 const DevToolsContentsResizingStrategy& strategy, | 49 const DevToolsContentsResizingStrategy& strategy, |
45 const gfx::Size& container_size, | 50 const gfx::Size& container_size, |
46 const gfx::Rect& old_devtools_bounds, | 51 const gfx::Rect& old_devtools_bounds, |
47 const gfx::Rect& old_contents_bounds, | 52 const gfx::Rect& old_contents_bounds, |
48 gfx::Rect* new_devtools_bounds, | 53 gfx::Rect* new_devtools_bounds, |
49 gfx::Rect* new_contents_bounds); | 54 gfx::Rect* new_contents_bounds); |
50 | 55 |
51 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_ | 56 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_ |
OLD | NEW |