blob: a70807e5381dcf70dcf001b6981d8a5d2ecacbaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_GFX_POINT_H__
#define BASE_GFX_POINT_H__
#include "build/build_config.h"
#ifdef UNIT_TEST
#include <iostream>
#endif
#if defined(OS_WIN)
typedef struct tagPOINT POINT;
#elif defined(OS_MACOSX)
#include <ApplicationServices/ApplicationServices.h>
#endif
namespace gfx {
//
// A point has an x and y coordinate.
//
class Point {
public:
Point();
Point(int x, int y);
#if defined(OS_WIN)
explicit Point(const POINT& point);
#elif defined(OS_MACOSX)
explicit Point(const CGPoint& point);
#endif
~Point() {}
int x() const { return x_; }
int y() const { return y_; }
void SetPoint(int x, int y) {
x_ = x;
y_ = y;
}
void set_x(int x) { x_ = x; }
void set_y(int y) { y_ = y; }
bool operator==(const Point& rhs) const {
return x_ == rhs.x_ && y_ == rhs.y_;
}
bool operator!=(const Point& rhs) const {
return !(*this == rhs);
}
#if defined(OS_WIN)
POINT ToPOINT() const;
#elif defined(OS_MACOSX)
CGPoint ToCGPoint() const;
#endif
private:
int x_;
int y_;
};
} // namespace gfx
#ifdef UNIT_TEST
inline std::ostream& operator<<(std::ostream& out, const gfx::Point& p) {
return out << p.x() << "," << p.y();
}
#endif // #ifdef UNIT_TEST
#endif // BASE_GFX_POINT_H__
|