]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/pen.h
not needed anymore
[wxWidgets.git] / include / wx / msw / pen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: pen.h
3 // Purpose: wxPen class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PEN_H_
13 #define _WX_PEN_H_
14
15 #ifdef __GNUG__
16 #pragma interface "pen.h"
17 #endif
18
19 #include "wx/gdiobj.h"
20 #include "wx/bitmap.h"
21
22 typedef WXDWORD wxMSWDash;
23
24 class WXDLLEXPORT wxPen;
25
26 class WXDLLEXPORT wxPenRefData: public wxGDIRefData
27 {
28 friend class WXDLLEXPORT wxPen;
29 public:
30 wxPenRefData();
31 wxPenRefData(const wxPenRefData& data);
32 ~wxPenRefData();
33
34 protected:
35 int m_width;
36 int m_style;
37 int m_join ;
38 int m_cap ;
39 wxBitmap m_stipple ;
40 int m_nbDash ;
41 wxDash * m_dash ;
42 wxColour m_colour;
43 WXHPEN m_hPen;
44
45 private:
46 // Cannot use
47 // DECLARE_NO_COPY_CLASS(wxPenRefData)
48 // because copy constructor is explicitly declared above;
49 // but no copy assignment operator is defined, so declare
50 // it private to prevent the compiler from defining it:
51 wxPenRefData& operator=(const wxPenRefData&);
52 };
53
54 #define M_PENDATA ((wxPenRefData *)m_refData)
55
56 // Pen
57 class WXDLLEXPORT wxPen: public wxGDIObject
58 {
59 DECLARE_DYNAMIC_CLASS(wxPen)
60 public:
61 wxPen();
62 wxPen(const wxColour& col, int width, int style);
63 wxPen(const wxBitmap& stipple, int width);
64 inline wxPen(const wxPen& pen) { Ref(pen); }
65 ~wxPen();
66
67 inline wxPen& operator = (const wxPen& pen) { if (*this == pen) return (*this); Ref(pen); return *this; }
68 inline bool operator == (const wxPen& pen) const { return m_refData == pen.m_refData; }
69 inline bool operator != (const wxPen& pen) const { return m_refData != pen.m_refData; }
70
71 virtual bool Ok() const { return (m_refData != NULL) ; }
72
73 // Override in order to recreate the pen
74 void SetColour(const wxColour& col) ;
75 void SetColour(unsigned char r, unsigned char g, unsigned char b);
76
77 void SetWidth(int width) ;
78 void SetStyle(int style) ;
79 void SetStipple(const wxBitmap& stipple) ;
80 void SetDashes(int nb_dashes, const wxDash *dash) ;
81 void SetJoin(int join) ;
82 void SetCap(int cap) ;
83
84 inline wxColour& GetColour() const { return (M_PENDATA ? M_PENDATA->m_colour : wxNullColour); };
85 inline int GetWidth() const { return (M_PENDATA ? M_PENDATA->m_width : 0); };
86 inline int GetStyle() const { return (M_PENDATA ? M_PENDATA->m_style : 0); };
87 inline int GetJoin() const { return (M_PENDATA ? M_PENDATA->m_join : 0); };
88 inline int GetCap() const { return (M_PENDATA ? M_PENDATA->m_cap : 0); };
89 inline int GetDashes(wxDash **ptr) const
90 {
91 *ptr = (M_PENDATA ? (wxDash*)M_PENDATA->m_dash : (wxDash*) NULL);
92 return (M_PENDATA ? M_PENDATA->m_nbDash : 0);
93 }
94
95 inline wxBitmap *GetStipple() const { return (M_PENDATA ? (& M_PENDATA->m_stipple) : (wxBitmap*) NULL); };
96
97 // Internal
98 bool RealizeResource();
99 bool FreeResource(bool force = FALSE);
100 WXHANDLE GetResourceHandle() const;
101 bool IsFree() const;
102 void Unshare();
103 };
104
105 int wx2msPenStyle(int wx_style);
106
107 #endif
108 // _WX_PEN_H_