]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
4f535231 | 2 | // Name: wx/os2/pen.h |
0e320a79 | 3 | // Purpose: wxPen class |
cdf1e714 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
cdf1e714 | 6 | // Created: 10/10/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
cdf1e714 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_PEN_H_ | |
13 | #define _WX_PEN_H_ | |
14 | ||
0e320a79 | 15 | #include "wx/gdiobj.h" |
0e320a79 DW |
16 | #include "wx/bitmap.h" |
17 | ||
236a9de3 | 18 | typedef long wxPMDash; |
0e320a79 | 19 | |
b5dbe15d | 20 | class WXDLLIMPEXP_FWD_CORE wxPen; |
0e320a79 DW |
21 | |
22 | class WXDLLEXPORT wxPenRefData: public wxGDIRefData | |
23 | { | |
b5dbe15d | 24 | friend class WXDLLIMPEXP_FWD_CORE wxPen; |
0e320a79 DW |
25 | public: |
26 | wxPenRefData(); | |
fd368161 | 27 | wxPenRefData(const wxPenRefData& rData); |
d3c7fc99 | 28 | virtual ~wxPenRefData(); |
0e320a79 | 29 | |
55ccdb93 VZ |
30 | bool operator==(const wxPenRefData& data) const |
31 | { | |
32 | // we intentionally don't compare m_hPen fields here | |
33 | return m_nStyle == data.m_nStyle && | |
34 | m_nWidth == data.m_nWidth && | |
35 | m_nJoin == data.m_nJoin && | |
36 | m_nCap == data.m_nCap && | |
37 | m_vColour == data.m_vColour && | |
7aa920b5 VZ |
38 | (m_nStyle != wxSTIPPLE || m_vStipple.IsSameAs(data.m_vStipple)) && |
39 | (m_nStyle != wxUSER_DASH || | |
55ccdb93 VZ |
40 | (m_dash == data.m_dash && |
41 | memcmp(m_dash, data.m_dash, m_nbDash*sizeof(wxDash)) == 0)); | |
42 | } | |
43 | ||
0e320a79 | 44 | protected: |
fd368161 DW |
45 | int m_nWidth; |
46 | int m_nStyle; | |
47 | int m_nJoin; | |
48 | int m_nCap; | |
49 | wxBitmap m_vStipple; | |
9e878707 SN |
50 | int m_nbDash; |
51 | wxDash * m_dash; | |
fd368161 DW |
52 | wxColour m_vColour; |
53 | WXHPEN m_hPen;// in OS/2 GPI this will be the PS the pen is associated with | |
0e320a79 DW |
54 | }; |
55 | ||
56 | #define M_PENDATA ((wxPenRefData *)m_refData) | |
57 | ||
58 | // Pen | |
fd368161 | 59 | class WXDLLEXPORT wxPen : public wxGDIObject |
0e320a79 | 60 | { |
0e320a79 | 61 | public: |
fd368161 DW |
62 | wxPen(); |
63 | wxPen( const wxColour& rColour | |
4f535231 VZ |
64 | ,int nWidth = 1 |
65 | ,int nStyle = wxSOLID | |
fd368161 DW |
66 | ); |
67 | wxPen( const wxBitmap& rStipple | |
68 | ,int nWidth | |
69 | ); | |
d3c7fc99 | 70 | virtual ~wxPen(); |
fd368161 | 71 | |
0e70f525 | 72 | inline bool operator == (const wxPen& rPen) const |
55ccdb93 | 73 | { |
7aa920b5 | 74 | const wxPenRefData *penData = (wxPenRefData *)rPen.m_refData; |
55ccdb93 VZ |
75 | |
76 | // an invalid pen is only equal to another invalid pen | |
77 | return m_refData ? penData && *M_PENDATA == *penData : !penData; | |
78 | } | |
79 | ||
0e70f525 | 80 | inline bool operator != (const wxPen& rPen) const |
55ccdb93 | 81 | { return !(*this == rPen); } |
fd368161 | 82 | |
fd368161 DW |
83 | // |
84 | // Override in order to recreate the pen | |
85 | // | |
86 | void SetColour(const wxColour& rColour); | |
1a1498c0 | 87 | void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBlue); |
fd368161 DW |
88 | |
89 | void SetWidth(int nWidth); | |
90 | void SetStyle(int nStyle); | |
91 | void SetStipple(const wxBitmap& rStipple); | |
92 | void SetDashes( int nNbDashes | |
93 | ,const wxDash* pDash | |
94 | ); | |
95 | void SetJoin(int nJoin); | |
96 | void SetCap(int nCap); | |
97 | void SetPS(HPS hPS); | |
98 | ||
99 | inline wxColour& GetColour(void) const { return (M_PENDATA ? M_PENDATA->m_vColour : wxNullColour); }; | |
100 | inline int GetWidth(void) const { return (M_PENDATA ? M_PENDATA->m_nWidth : 0); }; | |
101 | inline int GetStyle(void) const { return (M_PENDATA ? M_PENDATA->m_nStyle : 0); }; | |
102 | inline int GetJoin(void) const { return (M_PENDATA ? M_PENDATA->m_nJoin : 0); }; | |
103 | inline int GetCap(void) const { return (M_PENDATA ? M_PENDATA->m_nCap : 0); }; | |
104 | inline int GetPS(void) const { return (M_PENDATA ? M_PENDATA->m_hPen : 0); }; | |
9e878707 SN |
105 | inline int GetDashes(wxDash **ptr) const |
106 | { | |
107 | *ptr = (M_PENDATA ? (wxDash*)M_PENDATA->m_dash : (wxDash*) NULL); | |
108 | return (M_PENDATA ? M_PENDATA->m_nbDash : 0); | |
109 | } | |
110 | inline wxDash* GetDash() const { return (M_PENDATA ? (wxDash*)M_PENDATA->m_dash : (wxDash*)NULL); }; | |
111 | inline int GetDashCount() const { return (M_PENDATA ? M_PENDATA->m_nbDash : 0); }; | |
c644b82e | 112 | |
fd368161 DW |
113 | inline wxBitmap* GetStipple(void) const { return (M_PENDATA ? (& M_PENDATA->m_vStipple) : (wxBitmap*) NULL); }; |
114 | ||
115 | // | |
116 | // Implementation | |
117 | // | |
118 | ||
119 | // | |
120 | // Useful helper: create the brush resource | |
121 | // | |
122 | bool RealizeResource(void); | |
46562151 | 123 | bool FreeResource(bool bForce = false); |
17b1d76b | 124 | virtual WXHANDLE GetResourceHandle(void) const; |
fd368161 | 125 | bool IsFree(void) const; |
fd368161 DW |
126 | |
127 | private: | |
128 | LINEBUNDLE m_vLineBundle; | |
129 | AREABUNDLE m_vAreaBundle; | |
4b3f61d1 SN |
130 | |
131 | protected: | |
132 | virtual wxGDIRefData* CreateGDIRefData() const; | |
133 | virtual wxGDIRefData* CloneGDIRefData(const wxGDIRefData* data) const; | |
134 | ||
135 | // same as FreeResource() + RealizeResource() | |
136 | bool Recreate(); | |
137 | ||
138 | DECLARE_DYNAMIC_CLASS(wxPen) | |
fd368161 | 139 | }; // end of CLASS wxPen |
0e320a79 | 140 | |
bd3e41f6 DW |
141 | extern int wx2os2PenStyle(int nWxStyle); |
142 | ||
0e320a79 DW |
143 | #endif |
144 | // _WX_PEN_H_ |