Lines Matching refs:XYPOSITION

89 typedef float XYPOSITION;  typedef
109 XYPOSITION x;
110 XYPOSITION y;
112 constexpr explicit Point(XYPOSITION x_=0, XYPOSITION y_=0) noexcept : x(x_), y(y_) { in x()
116 return Point(static_cast<XYPOSITION>(x_), static_cast<XYPOSITION>(y_)); in FromInts()
129 XYPOSITION left;
130 XYPOSITION top;
131 XYPOSITION right;
132 XYPOSITION bottom;
134 …constexpr explicit PRectangle(XYPOSITION left_=0, XYPOSITION top_=0, XYPOSITION right_=0, XYPOSITI…
139 return PRectangle(static_cast<XYPOSITION>(left_), static_cast<XYPOSITION>(top_), in FromInts()
140 static_cast<XYPOSITION>(right_), static_cast<XYPOSITION>(bottom_)); in FromInts()
166 void Move(XYPOSITION xDelta, XYPOSITION yDelta) noexcept { in Move()
172 XYPOSITION Width() const noexcept { return right - left; } in Width()
173 XYPOSITION Height() const noexcept { return bottom - top; } in Height()
373 …virtual void DrawTextNoClip(PRectangle rc, Font &font_, XYPOSITION ybase, const char *s, int len, …
374 …virtual void DrawTextClipped(PRectangle rc, Font &font_, XYPOSITION ybase, const char *s, int len,…
375 …virtual void DrawTextTransparent(PRectangle rc, Font &font_, XYPOSITION ybase, const char *s, int …
376 virtual void MeasureWidths(Font &font_, const char *s, int len, XYPOSITION *positions)=0;
377 virtual XYPOSITION WidthText(Font &font_, const char *s, int len)=0;
378 virtual XYPOSITION Ascent(Font &font_)=0;
379 virtual XYPOSITION Descent(Font &font_)=0;
380 virtual XYPOSITION InternalLeading(Font &font_)=0;
381 virtual XYPOSITION Height(Font &font_)=0;
382 virtual XYPOSITION AverageCharWidth(Font &font_)=0;