D | fx_coordinates.h | 181 struct FX_RECT { struct 182 FX_RECT() : left(0), top(0), right(0), bottom(0) {} in FX_RECT() function 183 FX_RECT(int l, int t, int r, int b) : left(l), top(t), right(r), bottom(b) {} in FX_RECT() function 199 void Intersect(const FX_RECT& src); argument 200 void Intersect(int l, int t, int r, int b) { Intersect(FX_RECT(l, t, r, b)); } in Intersect() argument 209 bool operator==(const FX_RECT& src) const { argument 234 explicit CFX_FloatRect(const FX_RECT& rect); argument 254 FX_RECT GetInnerRect() const; 258 FX_RECT GetOuterRect() const; 262 FX_RECT GetClosestRect() const; [all …]
|