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 Ok() const { return IsOk(); }
44 bool IsOk() const { return m_refData
!= NULL
; }
46 bool operator == ( const wxPen
& pen
) const;
47 bool operator != (const wxPen
& pen
) const { return !(*this == pen
); }
49 void SetColour( const wxColour
&colour
);
50 void SetColour( unsigned char red
, unsigned char green
, unsigned char blue
);
51 void SetCap( int capStyle
);
52 void SetJoin( int joinStyle
);
53 void SetStyle( int style
);
54 void SetWidth( int width
);
55 void SetDashes( int number_of_dashes
, const wxDash
*dash
);
57 wxColour
&GetColour() const;
62 int GetDashes(wxDash
**ptr
) const;
63 int GetDashCount() const;
64 wxDash
* GetDash() const;
68 virtual wxObjectRefData
*CreateRefData() const;
69 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
71 DECLARE_DYNAMIC_CLASS(wxPen
)