]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/pen.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "pen.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
32 #include "wx/msw/private.h"
35 #if !USE_SHARED_LIBRARIES
36 IMPLEMENT_DYNAMIC_CLASS(wxPen
, wxGDIObject
)
39 wxPenRefData::wxPenRefData()
43 m_join
= wxJOIN_ROUND
;
50 wxPenRefData::wxPenRefData(const wxPenRefData
& data
)
52 m_style
= data
.m_style
;
53 m_width
= data
.m_width
;
56 m_nbDash
= data
.m_nbDash
;
58 m_colour
= data
.m_colour
;
62 wxPenRefData::~wxPenRefData()
65 ::DeleteObject((HPEN
) m_hPen
);
73 wxThePenList
->AddPen(this);
79 wxThePenList
->RemovePen(this);
82 // Should implement Create
83 wxPen::wxPen(const wxColour
& col
, int Width
, int Style
)
85 m_refData
= new wxPenRefData
;
87 M_PENDATA
->m_colour
= col
;
88 // M_PENDATA->m_stipple = NULL;
89 M_PENDATA
->m_width
= Width
;
90 M_PENDATA
->m_style
= Style
;
91 M_PENDATA
->m_join
= wxJOIN_ROUND
;
92 M_PENDATA
->m_cap
= wxCAP_ROUND
;
93 M_PENDATA
->m_nbDash
= 0 ;
94 M_PENDATA
->m_dash
= 0 ;
95 M_PENDATA
->m_hPen
= 0 ;
98 // In Windows, only a pen of width = 1 can be dotted or dashed!
99 if ((Style
== wxDOT
) || (Style
== wxLONG_DASH
) ||
100 (Style
== wxSHORT_DASH
) || (Style
== wxDOT_DASH
) ||
101 (Style
== wxUSER_DASH
))
102 M_PENDATA
->m_width
= 1;
105 DWORD vers = GetVersion() ;
106 WORD high = HIWORD(vers) ; // high bit=0 for NT, 1 for Win32s
107 // Win32s doesn't support wide dashed pens
109 if ((high&0x8000)!=0)
111 if (wxGetOsVersion()==wxWIN32S
)
113 // In Windows, only a pen of width = 1 can be dotted or dashed!
114 if ((Style
== wxDOT
) || (Style
== wxLONG_DASH
) ||
115 (Style
== wxSHORT_DASH
) || (Style
== wxDOT_DASH
) ||
116 (Style
== wxUSER_DASH
))
117 M_PENDATA
->m_width
= 1;
123 wxThePenList
->AddPen(this);
126 wxPen::wxPen(const wxBitmap
& stipple
, int Width
)
128 m_refData
= new wxPenRefData
;
130 // M_PENDATA->m_colour = col;
131 M_PENDATA
->m_stipple
= stipple
;
132 M_PENDATA
->m_width
= Width
;
133 M_PENDATA
->m_style
= wxSTIPPLE
;
134 M_PENDATA
->m_join
= wxJOIN_ROUND
;
135 M_PENDATA
->m_cap
= wxCAP_ROUND
;
136 M_PENDATA
->m_nbDash
= 0 ;
137 M_PENDATA
->m_dash
= 0 ;
138 M_PENDATA
->m_hPen
= 0 ;
143 wxThePenList
->AddPen(this);
146 bool wxPen::RealizeResource()
148 if (M_PENDATA
&& (M_PENDATA
->m_hPen
== 0))
150 if (M_PENDATA
->m_style
==wxTRANSPARENT
)
152 M_PENDATA
->m_hPen
= (WXHPEN
) ::GetStockObject(NULL_PEN
);
156 COLORREF ms_colour
= 0 ;
157 ms_colour
= M_PENDATA
->m_colour
.GetPixel() ;
159 // Join style, Cap style, Pen Stippling only on Win32.
160 // Currently no time to find equivalent on Win3.1, sorry
161 // [if such equiv exist!!]
163 if (M_PENDATA
->m_join
==wxJOIN_ROUND
&&
164 M_PENDATA
->m_cap
==wxCAP_ROUND
&&
165 M_PENDATA
->m_style
!=wxUSER_DASH
&&
166 M_PENDATA
->m_style
!=wxSTIPPLE
&&
167 M_PENDATA
->m_width
<= 1
169 M_PENDATA
->m_hPen
= (WXHPEN
) CreatePen(wx2msPenStyle(M_PENDATA
->m_style
), M_PENDATA
->m_width
, ms_colour
);
172 DWORD ms_style
= PS_GEOMETRIC
|wx2msPenStyle(M_PENDATA
->m_style
) ;
176 switch(M_PENDATA
->m_join
)
178 case wxJOIN_BEVEL
: ms_style
|= PS_JOIN_BEVEL
; break ;
179 case wxJOIN_MITER
: ms_style
|= PS_JOIN_MITER
; break ;
181 case wxJOIN_ROUND
: ms_style
|= PS_JOIN_ROUND
; break ;
184 switch(M_PENDATA
->m_cap
)
186 case wxCAP_PROJECTING
: ms_style
|= PS_ENDCAP_SQUARE
; break ;
187 case wxCAP_BUTT
: ms_style
|= PS_ENDCAP_FLAT
; break ;
189 case wxCAP_ROUND
: ms_style
|= PS_ENDCAP_ROUND
; break ;
192 switch(M_PENDATA
->m_style
)
195 logb
.lbStyle
= BS_PATTERN
;
196 if (M_PENDATA
->m_stipple
.Ok())
197 logb
.lbHatch
= (LONG
)M_PENDATA
->m_stipple
.GetHBITMAP() ;
199 logb
.lbHatch
= (LONG
)0 ;
201 case wxBDIAGONAL_HATCH
:
202 logb
.lbStyle
= BS_HATCHED
;
203 logb
.lbHatch
= HS_BDIAGONAL
;
205 case wxCROSSDIAG_HATCH
:
206 logb
.lbStyle
= BS_HATCHED
;
207 logb
.lbHatch
= HS_DIAGCROSS
;
209 case wxFDIAGONAL_HATCH
:
210 logb
.lbStyle
= BS_HATCHED
;
211 logb
.lbHatch
= HS_FDIAGONAL
;
214 logb
.lbStyle
= BS_HATCHED
;
215 logb
.lbHatch
= HS_CROSS
;
217 case wxHORIZONTAL_HATCH
:
218 logb
.lbStyle
= BS_HATCHED
;
219 logb
.lbHatch
= HS_HORIZONTAL
;
221 case wxVERTICAL_HATCH
:
222 logb
.lbStyle
= BS_HATCHED
;
223 logb
.lbHatch
= HS_VERTICAL
;
226 logb
.lbStyle
= BS_SOLID
;
229 logb
.lbColor
= ms_colour
;
231 if (M_PENDATA
->m_style
==wxUSER_DASH
&& M_PENDATA
->m_nbDash
&& M_PENDATA
->m_dash
)
233 real_dash
= new wxDash
[M_PENDATA
->m_nbDash
] ;
235 for (i
=0;i
<M_PENDATA
->m_nbDash
;i
++)
236 real_dash
[i
] = M_PENDATA
->m_dash
[i
] * M_PENDATA
->m_width
;
241 // Win32s doesn't have ExtCreatePen function...
242 if (wxGetOsVersion()==wxWINDOWS_NT
|| wxGetOsVersion()==wxWIN95
)
243 M_PENDATA
->m_hPen
= (WXHPEN
) ExtCreatePen(ms_style
,M_PENDATA
->m_width
,&logb
,
244 M_PENDATA
->m_style
==wxUSER_DASH
? M_PENDATA
->m_nbDash
:0, (const DWORD
*)real_dash
);
246 M_PENDATA
->m_hPen
= (WXHPEN
) CreatePen(wx2msPenStyle(M_PENDATA
->m_style
), M_PENDATA
->m_width
, ms_colour
);
249 delete [] real_dash
;
252 M_PENDATA
->m_hPen
= (WXHPEN
) CreatePen(wx2msPenStyle(M_PENDATA
->m_style
), M_PENDATA
->m_width
, ms_colour
);
254 #ifdef WXDEBUG_CREATE
255 if (M_PENDATA
->m_hPen
==0)
256 wxError("Cannot create pen","Internal error") ;
263 WXHANDLE
wxPen::GetResourceHandle()
268 return (WXHANDLE
)M_PENDATA
->m_hPen
;
271 bool wxPen::FreeResource(bool force
)
273 if (M_PENDATA
&& (M_PENDATA
->m_hPen
!= 0))
275 DeleteObject((HPEN
) M_PENDATA
->m_hPen
);
276 M_PENDATA
->m_hPen
= 0;
282 bool wxPen::IsFree() const
284 return (M_PENDATA
&& M_PENDATA
->m_hPen
== 0);
287 void wxPen::Unshare()
289 // Don't change shared data
292 m_refData
= new wxPenRefData();
296 wxPenRefData
* ref
= new wxPenRefData(*(wxPenRefData
*)m_refData
);
302 void wxPen::SetColour(const wxColour
& col
)
306 M_PENDATA
->m_colour
= col
;
311 void wxPen::SetColour(unsigned char r
, unsigned char g
, unsigned char b
)
315 M_PENDATA
->m_colour
.Set(r
, g
, b
);
320 void wxPen::SetWidth(int Width
)
324 M_PENDATA
->m_width
= Width
;
329 void wxPen::SetStyle(int Style
)
333 M_PENDATA
->m_style
= Style
;
338 void wxPen::SetStipple(const wxBitmap
& Stipple
)
342 M_PENDATA
->m_stipple
= Stipple
;
343 M_PENDATA
->m_style
= wxSTIPPLE
;
348 void wxPen::SetDashes(int nb_dashes
, const wxDash
*Dash
)
352 M_PENDATA
->m_nbDash
= nb_dashes
;
353 M_PENDATA
->m_dash
= (wxDash
*)Dash
;
358 void wxPen::SetJoin(int Join
)
362 M_PENDATA
->m_join
= Join
;
367 void wxPen::SetCap(int Cap
)
371 M_PENDATA
->m_cap
= Cap
;
376 int wx2msPenStyle(int wx_style
)
381 DWORD vers = GetVersion() ;
382 WORD high = HIWORD(vers) ; // high bit=0 for NT, 1 for Win32s
398 // User dash style not supported on Win3.1, sorry...
400 // Win32s doesn't have PS_USERSTYLE
402 if ((high&0x8000)==0)
404 if (wxGetOsVersion()==wxWINDOWS_NT
)
405 cstyle
= PS_USERSTYLE
;
407 cstyle
= PS_DOT
; // We must make a choice... This is mine!