]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/pen.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPen class
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin: fixed operator=(), ==(), !=()
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/gdiobj.h"
16 #include "wx/bitmap.h"
17 #include "wx/colour.h"
19 typedef WXDWORD wxMSWDash
;
21 class WXDLLEXPORT wxPen
;
23 // VZ: this class should be made private
24 class WXDLLEXPORT wxPenRefData
: public wxGDIRefData
28 wxPenRefData(const wxPenRefData
& data
);
29 virtual ~wxPenRefData();
31 bool operator==(const wxPenRefData
& data
) const
33 // we intentionally don't compare m_hPen fields here
34 return m_style
== data
.m_style
&&
35 m_width
== data
.m_width
&&
36 m_join
== data
.m_join
&&
37 m_cap
== data
.m_cap
&&
38 m_colour
== data
.m_colour
&&
39 (m_style
!= wxSTIPPLE
|| m_stipple
== data
.m_stipple
) &&
40 (m_style
!= wxUSER_DASH
||
41 (m_nbDash
== data
.m_nbDash
&&
42 memcmp(m_dash
, data
.m_dash
, m_nbDash
*sizeof(wxDash
)) == 0));
57 friend class WXDLLEXPORT wxPen
;
60 // DECLARE_NO_COPY_CLASS(wxPenRefData)
61 // because copy constructor is explicitly declared above;
62 // but no copy assignment operator is defined, so declare
63 // it private to prevent the compiler from defining it:
64 wxPenRefData
& operator=(const wxPenRefData
&);
67 #define M_PENDATA ((wxPenRefData *)m_refData)
68 #define wxPENDATA(x) ((wxPenRefData *)(x).m_refData)
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 class WXDLLEXPORT wxPen
: public wxGDIObject
78 wxPen(const wxColour
& col
, int width
= 1, int style
= wxSOLID
);
79 wxPen(const wxBitmap
& stipple
, int width
);
82 bool operator==(const wxPen
& pen
) const
84 const wxPenRefData
*penData
= (wxPenRefData
*)pen
.m_refData
;
86 // an invalid pen is only equal to another invalid pen
87 return m_refData
? penData
&& *M_PENDATA
== *penData
: !penData
;
90 bool operator!=(const wxPen
& pen
) const { return !(*this == pen
); }
92 virtual bool Ok() const { return (m_refData
!= NULL
); }
94 // Override in order to recreate the pen
95 void SetColour(const wxColour
& col
);
96 void SetColour(unsigned char r
, unsigned char g
, unsigned char b
);
98 void SetWidth(int width
);
99 void SetStyle(int style
);
100 void SetStipple(const wxBitmap
& stipple
);
101 void SetDashes(int nb_dashes
, const wxDash
*dash
);
102 void SetJoin(int join
);
103 void SetCap(int cap
);
105 wxColour
& GetColour() const { return (M_PENDATA
? M_PENDATA
->m_colour
: wxNullColour
); };
106 int GetWidth() const { return (M_PENDATA
? M_PENDATA
->m_width
: 0); };
107 int GetStyle() const { return (M_PENDATA
? M_PENDATA
->m_style
: 0); };
108 int GetJoin() const { return (M_PENDATA
? M_PENDATA
->m_join
: 0); };
109 int GetCap() const { return (M_PENDATA
? M_PENDATA
->m_cap
: 0); };
110 int GetDashes(wxDash
**ptr
) const
112 *ptr
= (M_PENDATA
? (wxDash
*)M_PENDATA
->m_dash
: (wxDash
*) NULL
);
113 return (M_PENDATA
? M_PENDATA
->m_nbDash
: 0);
115 wxDash
* GetDash() const { return (M_PENDATA
? (wxDash
*)M_PENDATA
->m_dash
: (wxDash
*)NULL
); };
116 inline int GetDashCount() const { return (M_PENDATA
? M_PENDATA
->m_nbDash
: 0); };
118 inline wxBitmap
*GetStipple() const { return (M_PENDATA
? (& M_PENDATA
->m_stipple
) : (wxBitmap
*) NULL
); };
121 bool RealizeResource();
122 bool FreeResource(bool force
= false);
123 WXHANDLE
GetResourceHandle() const;
128 DECLARE_DYNAMIC_CLASS(wxPen
)