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

Side by Side Diff: ui/gfx/rect.h

Issue 7977025: aura: Make 'ui' buildable without gtk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 3 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 | « ui/gfx/platform_font_pango.cc ('k') | ui/gfx/rect.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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.
11 11
12 #ifndef UI_GFX_RECT_H_ 12 #ifndef UI_GFX_RECT_H_
13 #define UI_GFX_RECT_H_ 13 #define UI_GFX_RECT_H_
14 #pragma once 14 #pragma once
15 15
16 #include <iosfwd> 16 #include <iosfwd>
17 17
18 #include "ui/gfx/point.h" 18 #include "ui/gfx/point.h"
19 #include "ui/gfx/size.h" 19 #include "ui/gfx/size.h"
20 20
21 #if defined(OS_WIN) 21 #if defined(OS_WIN)
22 typedef struct tagRECT RECT; 22 typedef struct tagRECT RECT;
23 #elif defined(USE_X11) 23 #elif defined(TOOLKIT_USES_GTK)
24 typedef struct _GdkRectangle GdkRectangle; 24 typedef struct _GdkRectangle GdkRectangle;
25 #endif 25 #endif
26 26
27 #if defined(USE_WAYLAND) 27 #if defined(USE_WAYLAND)
28 typedef struct _cairo_rectangle_int cairo_rectangle_int_t; 28 typedef struct _cairo_rectangle_int cairo_rectangle_int_t;
29 #endif 29 #endif
30 30
31 namespace gfx { 31 namespace gfx {
32 32
33 class Insets; 33 class Insets;
34 34
35 class UI_EXPORT Rect { 35 class UI_EXPORT Rect {
36 public: 36 public:
37 Rect(); 37 Rect();
38 Rect(int width, int height); 38 Rect(int width, int height);
39 Rect(int x, int y, int width, int height); 39 Rect(int x, int y, int width, int height);
40 #if defined(OS_WIN) 40 #if defined(OS_WIN)
41 explicit Rect(const RECT& r); 41 explicit Rect(const RECT& r);
42 #elif defined(OS_MACOSX) 42 #elif defined(OS_MACOSX)
43 explicit Rect(const CGRect& r); 43 explicit Rect(const CGRect& r);
44 #elif defined(USE_X11) 44 #elif defined(TOOLKIT_USES_GTK)
45 explicit Rect(const GdkRectangle& r); 45 explicit Rect(const GdkRectangle& r);
46 #endif 46 #endif
47 #if defined(USE_WAYLAND) 47 #if defined(USE_WAYLAND)
48 explicit Rect(const cairo_rectangle_int_t& r); 48 explicit Rect(const cairo_rectangle_int_t& r);
49 #endif 49 #endif
50 explicit Rect(const gfx::Size& size); 50 explicit Rect(const gfx::Size& size);
51 Rect(const gfx::Point& origin, const gfx::Size& size); 51 Rect(const gfx::Point& origin, const gfx::Size& size);
52 52
53 ~Rect() {} 53 ~Rect() {}
54 54
55 #if defined(OS_WIN) 55 #if defined(OS_WIN)
56 Rect& operator=(const RECT& r); 56 Rect& operator=(const RECT& r);
57 #elif defined(OS_MACOSX) 57 #elif defined(OS_MACOSX)
58 Rect& operator=(const CGRect& r); 58 Rect& operator=(const CGRect& r);
59 #elif defined(USE_X11) 59 #elif defined(TOOLKIT_USES_GTK)
60 Rect& operator=(const GdkRectangle& r); 60 Rect& operator=(const GdkRectangle& r);
61 #endif 61 #endif
62 #if defined(USE_WAYLAND) 62 #if defined(USE_WAYLAND)
63 Rect& operator=(const cairo_rectangle_int_t& r); 63 Rect& operator=(const cairo_rectangle_int_t& r);
64 #endif 64 #endif
65 65
66 int x() const { return origin_.x(); } 66 int x() const { return origin_.x(); }
67 void set_x(int x) { origin_.set_x(x); } 67 void set_x(int x) { origin_.set_x(x); }
68 68
69 int y() const { return origin_.y(); } 69 int y() const { return origin_.y(); }
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 // the other rect's origin. If the origins are equal, then the 116 // the other rect's origin. If the origins are equal, then the
117 // shortest rect is less than the other. If the origin and the 117 // shortest rect is less than the other. If the origin and the
118 // height are equal, then the narrowest rect is less than. 118 // height are equal, then the narrowest rect is less than.
119 // This comparison is required to use Rects in sets, or sorted 119 // This comparison is required to use Rects in sets, or sorted
120 // vectors. 120 // vectors.
121 bool operator<(const Rect& other) const; 121 bool operator<(const Rect& other) const;
122 122
123 #if defined(OS_WIN) 123 #if defined(OS_WIN)
124 // Construct an equivalent Win32 RECT object. 124 // Construct an equivalent Win32 RECT object.
125 RECT ToRECT() const; 125 RECT ToRECT() const;
126 #elif defined(USE_X11) 126 #elif defined(TOOLKIT_USES_GTK)
127 GdkRectangle ToGdkRectangle() const; 127 GdkRectangle ToGdkRectangle() const;
128 #elif defined(OS_MACOSX) 128 #elif defined(OS_MACOSX)
129 // Construct an equivalent CoreGraphics object. 129 // Construct an equivalent CoreGraphics object.
130 CGRect ToCGRect() const; 130 CGRect ToCGRect() const;
131 #endif 131 #endif
132 #if defined(USE_WAYLAND) 132 #if defined(USE_WAYLAND)
133 cairo_rectangle_int_t ToCairoRectangle() const; 133 cairo_rectangle_int_t ToCairoRectangle() const;
134 #endif 134 #endif
135 135
136 // Returns true if the point identified by point_x and point_y falls inside 136 // Returns true if the point identified by point_x and point_y falls inside
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 private: 188 private:
189 gfx::Point origin_; 189 gfx::Point origin_;
190 gfx::Size size_; 190 gfx::Size size_;
191 }; 191 };
192 192
193 UI_EXPORT std::ostream& operator<<(std::ostream& out, const gfx::Rect& r); 193 UI_EXPORT std::ostream& operator<<(std::ostream& out, const gfx::Rect& r);
194 194
195 } // namespace gfx 195 } // namespace gfx
196 196
197 #endif // UI_GFX_RECT_H_ 197 #endif // UI_GFX_RECT_H_
OLDNEW
« no previous file with comments | « ui/gfx/platform_font_pango.cc ('k') | ui/gfx/rect.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698