1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPen class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/gdicmn.h"
16 #include "wx/gdiobj.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 class WXDLLIMPEXP_FWD_CORE wxPen
;
23 class WXDLLIMPEXP_FWD_CORE wxColour
;
24 class WXDLLIMPEXP_FWD_CORE wxBitmap
;
26 typedef char wxX11Dash
;
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 class WXDLLIMPEXP_CORE wxPen
: public wxGDIObject
37 wxPen( const wxColour
&colour
, int width
= 1, int style
= wxSOLID
);
38 wxPen( const wxBitmap
&stipple
, int width
);
41 bool operator == ( const wxPen
& pen
) const;
42 bool operator != (const wxPen
& pen
) const { return !(*this == pen
); }
44 void SetColour( const wxColour
&colour
);
45 void SetColour( unsigned char red
, unsigned char green
, unsigned char blue
);
46 void SetCap( int capStyle
);
47 void SetJoin( int joinStyle
);
48 void SetStyle( int style
);
49 void SetWidth( int width
);
50 void SetDashes( int number_of_dashes
, const wxDash
*dash
);
51 void SetStipple( wxBitmap
*stipple
);
53 wxColour
&GetColour() const;
58 int GetDashes(wxDash
**ptr
) const;
59 int GetDashCount() const;
60 wxDash
* GetDash() const;
61 wxBitmap
* GetStipple() const;
64 virtual wxGDIRefData
*CreateGDIRefData() const;
65 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
67 DECLARE_DYNAMIC_CLASS(wxPen
)