OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Defines a simple integer rectangle class. The containment semantics | 5 // Defines a simple integer rectangle class. The containment semantics |
6 // are array-like; that is, the coordinate (x, y) is considered to be | 6 // are array-like; that is, the coordinate (x, y) is considered to be |
7 // contained by the rectangle, but the coordinate (x + width, y) is not. | 7 // contained by the rectangle, but the coordinate (x + width, y) is not. |
8 // The class will happily let you create malformed rectangles (that is, | 8 // The class will happily let you create malformed rectangles (that is, |
9 // rectangles with negative width and/or height), but there will be assertions | 9 // rectangles with negative width and/or height), but there will be assertions |
10 // in the operations (such as Contains()) to complain in this case. | 10 // in the operations (such as Contains()) to complain in this case. |
(...skipping 21 matching lines...) Loading... |
32 Rect(); | 32 Rect(); |
33 Rect(int width, int height); | 33 Rect(int width, int height); |
34 Rect(int x, int y, int width, int height); | 34 Rect(int x, int y, int width, int height); |
35 #if defined(OS_WIN) | 35 #if defined(OS_WIN) |
36 explicit Rect(const RECT& r); | 36 explicit Rect(const RECT& r); |
37 #elif defined(OS_MACOSX) | 37 #elif defined(OS_MACOSX) |
38 explicit Rect(const CGRect& r); | 38 explicit Rect(const CGRect& r); |
39 #elif defined(USE_X11) | 39 #elif defined(USE_X11) |
40 explicit Rect(const GdkRectangle& r); | 40 explicit Rect(const GdkRectangle& r); |
41 #endif | 41 #endif |
42 Rect(const gfx::Size& size); | 42 explicit Rect(const gfx::Size& size); |
43 Rect(const gfx::Point& origin, const gfx::Size& size); | 43 Rect(const gfx::Point& origin, const gfx::Size& size); |
44 | 44 |
45 ~Rect() {} | 45 ~Rect() {} |
46 | 46 |
47 #if defined(OS_WIN) | 47 #if defined(OS_WIN) |
48 Rect& operator=(const RECT& r); | 48 Rect& operator=(const RECT& r); |
49 #elif defined(OS_MACOSX) | 49 #elif defined(OS_MACOSX) |
50 Rect& operator=(const CGRect& r); | 50 Rect& operator=(const CGRect& r); |
51 #elif defined(USE_X11) | 51 #elif defined(USE_X11) |
52 Rect& operator=(const GdkRectangle& r); | 52 Rect& operator=(const GdkRectangle& r); |
53 #endif | 53 #endif |
54 | 54 |
55 int x() const { return origin_.x(); } | 55 int x() const { return origin_.x(); } |
56 void set_x(int x) { origin_.set_x(x); } | 56 void set_x(int x) { origin_.set_x(x); } |
57 | 57 |
58 int y() const { return origin_.y(); } | 58 int y() const { return origin_.y(); } |
59 void set_y(int y) { origin_.set_y(y); } | 59 void set_y(int y) { origin_.set_y(y); } |
60 | 60 |
61 int width() const { return size_.width(); } | 61 int width() const { return size_.width(); } |
62 void set_width(int width); | 62 void set_width(int width) { size_.set_width(width); } |
63 | 63 |
64 int height() const { return size_.height(); } | 64 int height() const { return size_.height(); } |
65 void set_height(int height); | 65 void set_height(int height) { size_.set_height(height); } |
66 | 66 |
67 const gfx::Point& origin() const { return origin_; } | 67 const gfx::Point& origin() const { return origin_; } |
68 void set_origin(const gfx::Point& origin) { origin_ = origin; } | 68 void set_origin(const gfx::Point& origin) { origin_ = origin; } |
69 | 69 |
70 const gfx::Size& size() const { return size_; } | 70 const gfx::Size& size() const { return size_; } |
71 void set_size(const gfx::Size& size) { size_ = size; } | 71 void set_size(const gfx::Size& size) { size_ = size; } |
72 | 72 |
73 int right() const { return x() + width(); } | 73 int right() const { return x() + width(); } |
74 int bottom() const { return y() + height(); } | 74 int bottom() const { return y() + height(); } |
75 | 75 |
(...skipping 86 matching lines...) Loading... |
162 private: | 162 private: |
163 gfx::Point origin_; | 163 gfx::Point origin_; |
164 gfx::Size size_; | 164 gfx::Size size_; |
165 }; | 165 }; |
166 | 166 |
167 } // namespace gfx | 167 } // namespace gfx |
168 | 168 |
169 std::ostream& operator<<(std::ostream& out, const gfx::Rect& r); | 169 std::ostream& operator<<(std::ostream& out, const gfx::Rect& r); |
170 | 170 |
171 #endif // GFX_RECT_H_ | 171 #endif // GFX_RECT_H_ |
OLD | NEW |