Lines Matching refs:point
71 const CLST_Rect operator+=(const CFX_PointF& point) {
72 left += point.x;
73 right += point.x;
74 top += point.y;
75 bottom += point.y;
80 const CLST_Rect operator-=(const CFX_PointF& point) {
81 left -= point.x;
82 right -= point.x;
83 top -= point.y;
84 bottom -= point.y;
89 CLST_Rect operator+(const CFX_PointF& point) const {
90 return CLST_Rect(left + point.x, top + point.y, right + point.x,
91 bottom + point.y);
94 CLST_Rect operator-(const CFX_PointF& point) const {
95 return CLST_Rect(left - point.x, top - point.y, right - point.x,
96 bottom - point.y);
145 CFX_PointF InnerToOuter(const CFX_PointF& point) const { in InnerToOuter() argument
146 return CFX_PointF(point.x + GetBTPoint().x, GetBTPoint().y - point.y); in InnerToOuter()
148 CFX_PointF OuterToInner(const CFX_PointF& point) const { in OuterToInner() argument
149 return CFX_PointF(point.x - GetBTPoint().x, GetBTPoint().y - point.y); in OuterToInner()
227 void OnMouseDown(const CFX_PointF& point, bool bShift, bool bCtrl);
228 void OnMouseMove(const CFX_PointF& point, bool bShift, bool bCtrl);
238 void SetScrollPos(const CFX_PointF& point);
245 int32_t GetItemIndex(const CFX_PointF& point) const;
268 CFX_PointF InToOut(const CFX_PointF& point) const;
269 CFX_PointF OutToIn(const CFX_PointF& point) const;