1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/pen.h
3 // Purpose: wxPen class
4 // Author: David Elliott
6 // Created: 2003/08/02 (stubs from 22.03.2003)
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_COCOA_PEN_H__
13 #define __WX_COCOA_PEN_H__
15 #include "wx/gdiobj.h"
16 #include "wx/gdicmn.h"
18 class WXDLLIMPEXP_FWD_CORE wxColour
;
19 class WXDLLIMPEXP_FWD_CORE wxBitmap
;
21 // ========================================================================
23 // ========================================================================
24 class WXDLLIMPEXP_CORE wxPen
: public wxGDIObject
28 wxPen(const wxColour
& col
, int width
= 1, wxPenStyle style
= wxPENSTYLE_SOLID
);
29 #if FUTURE_WXWIN_COMPATIBILITY_3_0
30 wxDEPRECATED_FUTURE( wxPen(const wxColour
& col
, int width
, int style
) );
32 wxPen(const wxBitmap
& stipple
, int width
);
35 // FIXME: operator==() is wrong
36 bool operator==(const wxPen
& pen
) const { return m_refData
== pen
.m_refData
; }
37 bool operator!=(const wxPen
& pen
) const { return !(*this == pen
); }
39 void SetColour(const wxColour
& col
) ;
40 void SetColour(unsigned char r
, unsigned char g
, unsigned char b
) ;
42 void SetWidth(int width
);
43 void SetStyle(wxPenStyle style
);
44 void SetStipple(const wxBitmap
& stipple
);
45 void SetDashes(int nb_dashes
, const wxDash
*dash
);
46 void SetJoin(wxPenJoin join
);
47 void SetCap(wxPenCap cap
);
49 wxColour
GetColour() const;
51 wxPenStyle
GetStyle() const;
52 wxPenJoin
GetJoin() const;
53 wxPenCap
GetCap() const;
54 int GetDashes(wxDash
**ptr
) const;
55 wxBitmap
*GetStipple() const;
57 #if FUTURE_WXWIN_COMPATIBILITY_3_0
58 wxDEPRECATED_FUTURE( void SetStyle(int style
) )
59 { SetStyle((wxPenStyle
)style
); }
63 WX_NSColor
GetNSColor();
64 int GetCocoaLineDash(const CGFloat
**pattern
);
67 wxGDIRefData
*CreateGDIRefData() const;
68 wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
70 DECLARE_DYNAMIC_CLASS(wxPen
)
73 #endif // __WX_COCOA_PEN_H__