/reactos/base/applications/mspaint/ |
H A D | drawing.cpp | 13 Line(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF color, int thickness) in Line() argument 15 HPEN oldPen = (HPEN) SelectObject(hdc, CreatePen(PS_SOLID, thickness, color)); in Line() 27 HPEN oldPen = (HPEN) SelectObject(hdc, CreatePen(PS_SOLID, thickness, fg)); in Rect() 171 if (thickness <= 1) in Brush() 173 Line(hdc, x1, y1, x2, y2, color, thickness); in Brush() 184 (x1 * (b - a) + x2 * a) / b - (thickness / 2), in Brush() 185 (y1 * (b - a) + y2 * a) / b - (thickness / 2), in Brush() 208 offsetTop = { (thickness - 1) / 2, -(thickness - 1) / 2 }; in Brush() 209 offsetBottom = { -thickness / 2, thickness / 2 }; in Brush() 213 offsetTop = { -thickness / 2, -thickness / 2 }; in Brush() [all …]
|
H A D | toolsmodel.cpp | 84 INT thickness = GetLineWidth(); in MakeLineThickerOrThinner() local 85 SetLineWidth(bThinner ? max(1, thickness - 1) : (thickness + 1)); in MakeLineThickerOrThinner() 90 INT thickness = GetPenWidth(); in MakePenThickerOrThinner() local 91 SetPenWidth(bThinner ? max(1, thickness - 1) : (thickness + 1)); in MakePenThickerOrThinner() 96 INT thickness = GetBrushWidth(); in MakeBrushThickerOrThinner() local 97 SetBrushWidth(bThinner ? max(1, thickness - 1) : (thickness + 1)); in MakeBrushThickerOrThinner() 102 INT thickness = GetAirBrushRadius(); in MakeAirBrushThickerOrThinner() local 103 SetAirBrushRadius(bThinner ? max(1, thickness - 1) : (thickness + 1)); in MakeAirBrushThickerOrThinner() 108 INT thickness = GetRubberRadius(); in MakeRubberThickerOrThinner() local 109 SetRubberRadius(bThinner ? max(1, thickness - 1) : (thickness + 1)); in MakeRubberThickerOrThinner()
|
H A D | drawing.h | 10 void Line(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF color, int thickness); 12 void Rect(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, int thickness, int… 14 void Ellp(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, int thickness, int… 16 void RRect(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, int thickness, in… 18 void Poly(HDC hdc, POINT *lpPoints, int nCount, COLORREF fg, COLORREF bg, int thickness, int style,… 20 void Bezier(HDC hdc, POINT p1, POINT p2, POINT p3, POINT p4, COLORREF color, int thickness); 30 void Brush(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF color, LONG style, INT thickness);
|
/reactos/win32ss/gdi/ntgdi/ |
H A D | freetype.c | 7206 INT underline_position, thickness; in IntExtTextOutW() local 7215 thickness = 1; in IntExtTextOutW() 7221 thickness = in IntExtTextOutW() 7223 if (thickness <= 0) in IntExtTextOutW() 7224 thickness = 1; in IntExtTextOutW() 7230 vecA64.y = (-underline_position - thickness / 2) << 6; in IntExtTextOutW() 7232 vecB64.y = vecA64.y + (thickness << 6); in IntExtTextOutW() 7266 vecB64.y = vecA64.y + (thickness << 6); in IntExtTextOutW()
|
/reactos/media/fonts/doc/FreeFont/ |
H A D | CREDITS.txt | 87 for Times based on the rule thickness of Times = , , + , / , < , 90 fonts. That is, the rule thickness of these glyphs is around 85% of
|
/reactos/modules/rostests/testdata/ |
H A D | freefont.txt | 87 for Times based on the rule thickness of Times = , , + , / , < , 90 fonts. That is, the rule thickness of these glyphs is around 85% of
|