Home | History | Annotate | Download | only in gdiplus

Lines Matching refs:pen

4  * GDI+ Pen class
33 class Pen: public GdiplusBase
39 Pen(const Color& color, REAL width = 1.0f):
46 Pen(const Brush *brush, REAL width = 1.0f):
53 ~Pen()
57 Pen* Clone() const
63 Pen *result = new Pen(clonePen, lastStatus);
80 // TODO: implement Pen::GetBrush()
83 // // where is the pen brush allocated (static,member,new,other)?
324 Pen(GpPen *pen, Status status): nativePen(pen), lastStatus(status) {}
325 Pen(const Pen& pen);
326 Pen& operator=(const Pen&);