1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
14 #include "wx/object.h"
15 #include "wx/string.h"
16 #include "wx/gdiobj.h"
17 #include "wx/gdicmn.h"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
23 class WXDLLIMPEXP_FWD_CORE wxPen
;
25 #if defined(__WXGTK127__)
26 typedef gint8 wxGTKDash
;
28 typedef gchar wxGTKDash
;
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 class WXDLLIMPEXP_CORE wxPen
: public wxGDIObject
40 wxPen( const wxColour
&colour
, int width
= 1, int style
= wxSOLID
);
43 bool operator==(const wxPen
& pen
) const;
44 bool operator!=(const wxPen
& pen
) const { return !(*this == pen
); }
46 void SetColour( const wxColour
&colour
);
47 void SetColour( unsigned char red
, unsigned char green
, unsigned char blue
);
48 void SetCap( int capStyle
);
49 void SetJoin( int joinStyle
);
50 void SetStyle( int style
);
51 void SetWidth( int width
);
52 void SetDashes( int number_of_dashes
, const wxDash
*dash
);
54 wxColour
&GetColour() const;
59 int GetDashes(wxDash
**ptr
) const;
60 int GetDashCount() const;
61 wxDash
* GetDash() const;
64 virtual wxGDIRefData
*CreateGDIRefData() const;
65 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
67 DECLARE_DYNAMIC_CLASS(wxPen
)