]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/pen.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/pen.cpp
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin: refactored wxPen code to wxPenRefData
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
30 #include "wx/bitmap.h"
34 #include "wx/msw/private.h"
36 #define M_PENDATA ((wxPenRefData*)m_refData)
38 // Win32 has ExtCreatePen() but WinCE doesn't
39 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
40 #define wxHAVE_EXT_CREATE_PEN
43 // ----------------------------------------------------------------------------
44 // wxPenRefData: contains information about an HPEN and its handle
45 // ----------------------------------------------------------------------------
47 class WXDLLEXPORT wxPenRefData
: public wxGDIRefData
54 wxPenRefData(const wxPenRefData
& data
);
55 wxPenRefData(const wxColour
& col
, int width
, int style
);
56 wxPenRefData(const wxBitmap
& stipple
, int width
);
57 virtual ~wxPenRefData();
59 bool operator==(const wxPenRefData
& data
) const
61 // we intentionally don't compare m_hPen fields here
62 return m_style
== data
.m_style
&&
63 m_width
== data
.m_width
&&
64 m_join
== data
.m_join
&&
65 m_cap
== data
.m_cap
&&
66 m_colour
== data
.m_colour
&&
67 (m_style
!= wxSTIPPLE
|| m_stipple
.IsSameAs(data
.m_stipple
)) &&
68 (m_style
!= wxUSER_DASH
||
69 (m_nbDash
== data
.m_nbDash
&&
70 memcmp(m_dash
, data
.m_dash
, m_nbDash
*sizeof(wxDash
)) == 0));
74 // accessors and setters
75 // ---------------------
77 wxColour
& GetColour() const { return wx_const_cast(wxColour
&, m_colour
); }
78 int GetWidth() const { return m_width
; }
79 int GetStyle() const { return m_style
; }
80 int GetJoin() const { return m_join
; }
81 int GetCap() const { return m_cap
; }
82 wxDash
* GetDash() const { return m_dash
; }
83 int GetDashCount() const { return m_nbDash
; }
84 wxBitmap
* GetStipple() const { return wx_const_cast(wxBitmap
*, &m_stipple
); }
86 void SetColour(const wxColour
& col
) { Free(); m_colour
= col
; }
87 void SetWidth(int width
) { Free(); m_width
= width
; }
88 void SetStyle(int style
) { Free(); m_style
= style
; }
89 void SetStipple(const wxBitmap
& stipple
)
97 void SetDashes(int nb_dashes
, const wxDash
*dash
)
101 m_nbDash
= nb_dashes
;
102 m_dash
= wx_const_cast(wxDash
*, dash
);
105 void SetJoin(int join
) { Free(); m_join
= join
; }
106 void SetCap(int cap
) { Free(); m_cap
= cap
; }
112 // create the HPEN if we don't have it yet
115 // get the HPEN creating it on demand
116 WXHPEN
GetHPEN() const;
118 // return true if we have a valid HPEN
119 bool HasHPEN() const { return m_hPen
!= 0; }
121 // return true if we had a valid handle before, false otherwise
125 // initialize the fields which have reasonable default values
127 // doesn't initialize m_width and m_style which must be initialize in ctor
130 m_join
= wxJOIN_ROUND
;
147 DECLARE_NO_ASSIGN_CLASS(wxPenRefData
)
150 // ============================================================================
152 // ============================================================================
154 // ----------------------------------------------------------------------------
155 // wxPenRefData ctors/dtor
156 // ----------------------------------------------------------------------------
158 wxPenRefData::wxPenRefData()
166 wxPenRefData::wxPenRefData(const wxPenRefData
& data
)
169 m_style
= data
.m_style
;
170 m_width
= data
.m_width
;
171 m_join
= data
.m_join
;
173 m_nbDash
= data
.m_nbDash
;
174 m_dash
= data
.m_dash
;
175 m_colour
= data
.m_colour
;
179 wxPenRefData::wxPenRefData(const wxColour
& col
, int width
, int style
)
189 wxPenRefData::wxPenRefData(const wxBitmap
& stipple
, int width
)
199 wxPenRefData::~wxPenRefData()
202 ::DeleteObject(m_hPen
);
205 // ----------------------------------------------------------------------------
206 // wxPenRefData HPEN management
207 // ----------------------------------------------------------------------------
209 static int ConvertPenStyle(int style
)
221 wxFAIL_MSG( _T("unknown pen style") );
224 #ifdef wxHAVE_EXT_CREATE_PEN
235 case wxBDIAGONAL_HATCH
:
236 case wxCROSSDIAG_HATCH
:
237 case wxFDIAGONAL_HATCH
:
239 case wxHORIZONTAL_HATCH
:
240 case wxVERTICAL_HATCH
:
242 #endif // wxHAVE_EXT_CREATE_PEN
248 #ifdef wxHAVE_EXT_CREATE_PEN
250 static int ConvertJoinStyle(int join
)
255 return PS_JOIN_BEVEL
;
258 return PS_JOIN_MITER
;
261 wxFAIL_MSG( _T("unknown pen join style") );
265 return PS_JOIN_ROUND
;
269 static int ConvertCapStyle(int cap
)
273 case wxCAP_PROJECTING
:
274 return PS_ENDCAP_SQUARE
;
277 return PS_ENDCAP_FLAT
;
280 wxFAIL_MSG( _T("unknown pen cap style") );
284 return PS_ENDCAP_ROUND
;
288 #endif // wxHAVE_EXT_CREATE_PEN
290 bool wxPenRefData::Alloc()
295 if ( m_style
== wxTRANSPARENT
)
297 m_hPen
= (HPEN
)::GetStockObject(NULL_PEN
);
301 const COLORREF col
= m_colour
.GetPixel();
303 #ifdef wxHAVE_EXT_CREATE_PEN
304 // Only NT can display dashed or dotted lines with width > 1
305 static const int os
= wxGetOsVersion();
306 if ( os
!= wxOS_WINDOWS_NT
&&
308 m_style
== wxLONG_DASH
||
309 m_style
== wxSHORT_DASH
||
310 m_style
== wxDOT_DASH
||
311 m_style
== wxUSER_DASH
) &&
317 // check if it's a standard kind of pen which can be created with just
319 if ( m_join
== wxJOIN_ROUND
&&
320 m_cap
== wxCAP_ROUND
&&
321 m_style
!= wxUSER_DASH
&&
322 m_style
!= wxSTIPPLE
&&
323 (m_width
<= 1 || m_style
== wxSOLID
) )
324 #endif // !wxHAVE_EXT_CREATE_PEN
326 m_hPen
= ::CreatePen(ConvertPenStyle(m_style
), m_width
, col
);
328 #ifdef wxHAVE_EXT_CREATE_PEN
329 else // need to use ExtCreatePen()
331 DWORD styleMSW
= PS_GEOMETRIC
|
332 ConvertPenStyle(m_style
) |
333 ConvertJoinStyle(m_join
) |
334 ConvertCapStyle(m_cap
);
340 lb
.lbStyle
= BS_PATTERN
;
341 lb
.lbHatch
= (LONG
)m_stipple
.GetHBITMAP();
344 case wxBDIAGONAL_HATCH
:
345 lb
.lbStyle
= BS_HATCHED
;
346 lb
.lbHatch
= HS_BDIAGONAL
;
349 case wxCROSSDIAG_HATCH
:
350 lb
.lbStyle
= BS_HATCHED
;
351 lb
.lbHatch
= HS_DIAGCROSS
;
354 case wxFDIAGONAL_HATCH
:
355 lb
.lbStyle
= BS_HATCHED
;
356 lb
.lbHatch
= HS_FDIAGONAL
;
360 lb
.lbStyle
= BS_HATCHED
;
361 lb
.lbHatch
= HS_CROSS
;
364 case wxHORIZONTAL_HATCH
:
365 lb
.lbStyle
= BS_HATCHED
;
366 lb
.lbHatch
= HS_HORIZONTAL
;
369 case wxVERTICAL_HATCH
:
370 lb
.lbStyle
= BS_HATCHED
;
371 lb
.lbHatch
= HS_VERTICAL
;
375 lb
.lbStyle
= BS_SOLID
;
377 // this should be unnecessary (it's unused) but suppresses the
378 // Purify messages about uninitialized memory read
387 if ( m_style
== wxUSER_DASH
&& m_nbDash
&& m_dash
)
389 dash
= new DWORD
[m_nbDash
];
390 int rw
= m_width
> 1 ? m_width
: 1;
391 for ( int i
= 0; i
< m_nbDash
; i
++ )
392 dash
[i
] = m_dash
[i
] * rw
;
399 m_hPen
= ::ExtCreatePen(styleMSW
, m_width
, &lb
, m_nbDash
, (LPDWORD
)dash
);
403 #endif // wxHAVE_EXT_CREATE_PEN
408 bool wxPenRefData::Free()
413 ::DeleteObject(m_hPen
);
419 WXHPEN
wxPenRefData::GetHPEN() const
422 wx_const_cast(wxPenRefData
*, this)->Alloc();
424 return (WXHPEN
)m_hPen
;
427 // ----------------------------------------------------------------------------
429 // ----------------------------------------------------------------------------
431 IMPLEMENT_DYNAMIC_CLASS(wxPen
, wxGDIObject
)
433 wxPen::wxPen(const wxColour
& col
, int width
, int style
)
435 m_refData
= new wxPenRefData(col
, width
, style
);
438 wxPen::wxPen(const wxBitmap
& stipple
, int width
)
440 m_refData
= new wxPenRefData(stipple
, width
);
443 bool wxPen::operator==(const wxPen
& pen
) const
446 penData
= wx_static_cast(const wxPenRefData
*, pen
.m_refData
);
448 // an invalid pen is only equal to another invalid pen
449 return m_refData
? penData
&& *M_PENDATA
== *penData
: !penData
;
452 bool wxPen::RealizeResource()
454 return M_PENDATA
&& M_PENDATA
->Alloc();
457 WXHANDLE
wxPen::GetResourceHandle() const
459 return M_PENDATA
? M_PENDATA
->GetHPEN() : 0;
462 bool wxPen::FreeResource(bool WXUNUSED(force
))
464 return M_PENDATA
&& M_PENDATA
->Free();
467 bool wxPen::IsFree() const
469 return M_PENDATA
&& !M_PENDATA
->HasHPEN();
472 wxObjectRefData
* wxPen::CreateRefData() const
474 return new wxPenRefData
;
477 wxObjectRefData
* wxPen::CloneRefData(const wxObjectRefData
* data
) const
479 return new wxPenRefData(*wx_static_cast(const wxPenRefData
*, data
));
482 void wxPen::SetColour(const wxColour
& col
)
486 M_PENDATA
->SetColour(col
);
489 void wxPen::SetColour(unsigned char r
, unsigned char g
, unsigned char b
)
491 SetColour(wxColour(r
, g
, b
));
494 void wxPen::SetWidth(int width
)
498 M_PENDATA
->SetWidth(width
);
501 void wxPen::SetStyle(int style
)
505 M_PENDATA
->SetStyle(style
);
508 void wxPen::SetStipple(const wxBitmap
& stipple
)
512 M_PENDATA
->SetStipple(stipple
);
515 void wxPen::SetDashes(int nb_dashes
, const wxDash
*dash
)
519 M_PENDATA
->SetDashes(nb_dashes
, dash
);
522 void wxPen::SetJoin(int join
)
526 M_PENDATA
->SetJoin(join
);
529 void wxPen::SetCap(int cap
)
533 M_PENDATA
->SetCap(cap
);
536 wxColour
& wxPen::GetColour() const
538 return m_refData
? M_PENDATA
->GetColour() : wxNullColour
;
541 int wxPen::GetWidth() const
543 return m_refData
? M_PENDATA
->GetWidth() : 0;
546 int wxPen::GetStyle() const
548 return m_refData
? M_PENDATA
->GetStyle() : 0;
551 int wxPen::GetJoin() const
553 return m_refData
? M_PENDATA
->GetJoin() : 0;
556 int wxPen::GetCap() const
558 return m_refData
? M_PENDATA
->GetCap() : 0;
561 int wxPen::GetDashes(wxDash
** ptr
) const
569 *ptr
= M_PENDATA
->GetDash();
570 return M_PENDATA
->GetDashCount();
573 wxDash
* wxPen::GetDash() const
575 return m_refData
? M_PENDATA
->GetDash() : NULL
;
578 int wxPen::GetDashCount() const
580 return m_refData
? M_PENDATA
->GetDashCount() : 0;
583 wxBitmap
* wxPen::GetStipple() const
585 return m_refData
? M_PENDATA
->GetStipple() : NULL
;