Lines Matching refs:nativePen

36         nativePen = NULL;

38 width, unit, &nativePen);
45 nativePen = NULL;
47 width, unit, &nativePen);
52 DllExports::GdipDeletePen(nativePen);
59 lastResult = DllExports::GdipClonePen(nativePen, &clonePen);
66 return SetStatus(DllExports::GdipSetPenWidth(nativePen, width));
73 SetStatus(DllExports::GdipGetPenWidth(nativePen, &width));
87 return SetStatus(DllExports::GdipSetPenLineCap197819(nativePen,
95 return SetStatus(DllExports::GdipSetPenLineCap(nativePen,
102 return SetStatus(DllExports::GdipSetPenStartCap(nativePen, startCap));
107 return SetStatus(DllExports::GdipSetPenEndCap(nativePen, endCap));
113 return SetStatus(DllExports::GdipSetPenDashCap197819(nativePen,
119 return SetStatus(DllExports::GdipSetPenDashCap(nativePen, dashCap));
127 SetStatus(DllExports::GdipGetPenStartCap(nativePen, &startCap));
136 SetStatus(DllExports::GdipGetPenEndCap(nativePen, &endCap));
146 SetStatus(DllExports::GdipGetPenDashCap197819(nativePen,
156 SetStatus(DllExports::GdipGetPenDashCap(nativePen, &dashCap));
167 return SetStatus(DllExports::GdipSetPenLineJoin(nativePen, lineJoin));
174 SetStatus(DllExports::GdipGetPenLineJoin(nativePen, &lineJoin));
185 return SetStatus(DllExports::GdipSetPenCustomStartCap(nativePen, nativeCap));
193 return SetStatus(DllExports::GdipGetPenCustomStartCap(nativePen, &(customCap->nativeCap)));
202 return SetStatus(DllExports::GdipSetPenCustomEndCap(nativePen, nativeCap));
210 return SetStatus(DllExports::GdipGetPenCustomEndCap(nativePen, &(customCap->nativeCap)));
215 return SetStatus(DllExports::GdipSetPenMiterLimit(nativePen, miterLimit));
222 SetStatus(DllExports::GdipGetPenMiterLimit(nativePen, &miterLimit));
230 return SetStatus(DllExports::GdipSetPenMode(nativePen, penAlignment));
237 SetStatus(DllExports::GdipGetPenMode(nativePen, &penAlignment));
245 return SetStatus(DllExports::GdipSetPenTransform(nativePen,
251 return SetStatus(DllExports::GdipGetPenTransform(nativePen, matrix->nativeMatrix));
256 return SetStatus(DllExports::GdipResetPenTransform(nativePen));
262 return SetStatus(DllExports::GdipMultiplyPenTransform(nativePen,
271 return SetStatus(DllExports::GdipTranslatePenTransform(nativePen,
279 return SetStatus(DllExports::GdipScalePenTransform(nativePen,
286 return SetStatus(DllExports::GdipRotatePenTransform(nativePen,
293 SetStatus(DllExports::GdipGetPenFillType(nativePen, &type));
300 return SetStatus(DllExports::GdipSetPenColor(nativePen,
306 return SetStatus(DllExports::GdipSetPenBrushFill(nativePen,
326 SetStatus(DllExports::GdipGetPenColor(nativePen,
372 SetStatus(DllExports::GdipGetPenBrushFill(nativePen, &nativeBrush));
383 SetStatus(DllExports::GdipGetPenDashStyle(nativePen, &dashStyle));
390 return SetStatus(DllExports::GdipSetPenDashStyle(nativePen, dashStyle));
397 SetStatus(DllExports::GdipGetPenDashOffset(nativePen, &dashOffset));
404 return SetStatus(DllExports::GdipSetPenDashOffset(nativePen, dashOffset));
409 return SetStatus(DllExports::GdipSetPenDashArray(nativePen, dashArray,
417 SetStatus(DllExports::GdipGetPenDashCount(nativePen, &count));
428 return SetStatus(DllExports::GdipGetPenDashArray(nativePen,
436 return SetStatus(DllExports::GdipSetPenCompoundArray(nativePen, compoundArray,
444 SetStatus(DllExports::GdipGetPenCompoundCount(nativePen, &count));
455 return SetStatus(DllExports::GdipGetPenCompoundArray(nativePen,
495 Pen(GpPen* nativePen, Status status)
498 SetNativePen(nativePen);
501 VOID SetNativePen(GpPen* nativePen)
503 this->nativePen = nativePen;
515 GpPen* nativePen;