Lines Matching refs:Point
29 #include <ui/Point.h>
69 inline Rect(const Point& lt, const Point& rb) {
127 void setLeftTop(const Point& lt) {
132 void setRightBottom(const Point& rb) {
137 // the following 4 functions return the 4 corners of the rect as Point
138 Point leftTop() const {
139 return Point(left, top);
141 Point rightBottom() const {
142 return Point(right, bottom);
144 Point rightTop() const {
145 return Point(right, top);
147 Point leftBottom() const {
148 return Point(left, bottom);
165 const Rect operator + (const Point& rhs) const;
166 const Rect operator - (const Point& rhs) const;
168 Rect& operator += (const Point& rhs) {
171 Rect& operator -= (const Point& rhs) {
181 Rect& offsetTo(const Point& p) {
184 Rect& offsetBy(const Point& dp) {