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 UI_GFX_RECT_F_H_ | 5 #ifndef UI_GFX_RECT_F_H_ |
6 #define UI_GFX_RECT_F_H_ | 6 #define UI_GFX_RECT_F_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ui/gfx/point_f.h" | 10 #include "ui/gfx/point_f.h" |
11 #include "ui/gfx/rect_base.h" | 11 #include "ui/gfx/rect_base.h" |
12 #include "ui/gfx/size_f.h" | 12 #include "ui/gfx/size_f.h" |
| 13 #include "ui/gfx/vector2d_f.h" |
13 | 14 |
14 namespace gfx { | 15 namespace gfx { |
15 | 16 |
16 class InsetsF; | 17 class InsetsF; |
17 | 18 |
18 // A floating version of gfx::Rect. | 19 // A floating version of gfx::Rect. |
19 class UI_EXPORT RectF : public RectBase<RectF, PointF, SizeF, InsetsF, float> { | 20 class UI_EXPORT RectF |
| 21 : public RectBase<RectF, PointF, SizeF, InsetsF, Vector2dF, float> { |
20 public: | 22 public: |
21 RectF(); | 23 RectF(); |
22 RectF(float width, float height); | 24 RectF(float width, float height); |
23 RectF(float x, float y, float width, float height); | 25 RectF(float x, float y, float width, float height); |
24 explicit RectF(const gfx::SizeF& size); | 26 explicit RectF(const gfx::SizeF& size); |
25 RectF(const gfx::PointF& origin, const gfx::SizeF& size); | 27 RectF(const gfx::PointF& origin, const gfx::SizeF& size); |
26 | 28 |
27 ~RectF(); | 29 ~RectF(); |
28 | 30 |
29 /// Scales the rectangle by |scale|. | 31 /// Scales the rectangle by |scale|. |
(...skipping 13 matching lines...) Expand all Loading... |
43 | 45 |
44 inline bool operator==(const RectF& lhs, const RectF& rhs) { | 46 inline bool operator==(const RectF& lhs, const RectF& rhs) { |
45 return lhs.origin() == rhs.origin() && lhs.size() == rhs.size(); | 47 return lhs.origin() == rhs.origin() && lhs.size() == rhs.size(); |
46 } | 48 } |
47 | 49 |
48 inline bool operator!=(const RectF& lhs, const RectF& rhs) { | 50 inline bool operator!=(const RectF& lhs, const RectF& rhs) { |
49 return !(lhs == rhs); | 51 return !(lhs == rhs); |
50 } | 52 } |
51 | 53 |
52 #if !defined(COMPILER_MSVC) | 54 #if !defined(COMPILER_MSVC) |
53 extern template class RectBase<RectF, PointF, SizeF, InsetsF, float>; | 55 extern template class RectBase<RectF, PointF, SizeF, InsetsF, Vector2dF, float>; |
54 #endif | 56 #endif |
55 | 57 |
56 } // namespace gfx | 58 } // namespace gfx |
57 | 59 |
58 #endif // UI_GFX_RECT_F_H_ | 60 #endif // UI_GFX_RECT_F_H_ |
OLD | NEW |