Home
last modified time | relevance | path

Searched refs:PenStyle (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebCore/platform/graphics/
DPen.h39 enum PenStyle { enum
46 Pen(const Color &c = Color::black, unsigned w = 0, PenStyle ps = SolidLine);
50 PenStyle style() const;
54 void setStyle(PenStyle);
65 PenStyle m_style;
DPen.cpp31 Pen::Pen(const Color &color, unsigned width, PenStyle style) : m_style(style), m_width(width), m_co… in Pen()
45 Pen::PenStyle Pen::style() const in style()
60 void Pen::setStyle(PenStyle style) in setStyle()
/external/webkit/WebCore/platform/graphics/wx/
DPenWx.cpp50 static Pen::PenStyle wxPenStyleToPenStyle(int p) in wxPenStyleToPenStyle()
/external/webkit/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp137 static Qt::PenStyle toQPenStyle(StrokeStyle style) in toQPenStyle()