Searched refs:RectCG (Results 1 – 3 of 3) sorted by relevance
/dports/devel/upp/upp/uppsrc/CtrlCore/ |
H A D | CocoDraw.mm | 89 RectCG SystemDraw::Convert(int x, int y, int cx, int cy) 94 return RectCG(x, y, cx, cy); 97 RectCG SystemDraw::Convert(const Rect& r) 102 RectCG SystemDraw::MakeRectCG(const Rect& r) const 105 return RectCG(r.left, r.top, sz.cx, sz.cy);
|
H A D | Coco.h | 4 struct RectCG; // represents CGRect, used to isolate Cocoa/AppKit includes 49 RectCG MakeRectCG(const Rect& r) const; 52 RectCG Convert(int x, int y, int cx, int cy); 53 RectCG Convert(const Rect& r);
|
H A D | CocoMM.h | 65 struct RectCG { struct 70 RectCG(int x, int y, int cx, int cy) : x(x), y(y), cx(cx), cy(cy) {} in RectCG() argument 71 RectCG();
|