]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/pen.h
moved DoSetValue() to wxTextCtrlBase instead of having it in almost, but not quite...
[wxWidgets.git] / include / wx / mac / carbon / pen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/carbon/pen.h
3 // Purpose: wxPen class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PEN_H_
13 #define _WX_PEN_H_
14
15 #include "wx/gdiobj.h"
16 #include "wx/colour.h"
17 #include "wx/bitmap.h"
18
19 class WXDLLEXPORT wxPen;
20
21 class WXDLLEXPORT wxPenRefData: public wxGDIRefData
22 {
23 friend class WXDLLEXPORT wxPen;
24 public:
25 wxPenRefData();
26 wxPenRefData(const wxPenRefData& data);
27 virtual ~wxPenRefData();
28
29 wxPenRefData& operator=(const wxPenRefData& data);
30
31 protected:
32 int m_width;
33 int m_style;
34 int m_join ;
35 int m_cap ;
36 wxBitmap m_stipple ;
37 int m_nbDash ;
38 wxDash * m_dash ;
39 wxColour m_colour;
40 /* TODO: implementation
41 WXHPEN m_hPen;
42 */
43 };
44
45 #define M_PENDATA ((wxPenRefData *)m_refData)
46
47 // Pen
48 class WXDLLEXPORT wxPen: public wxGDIObject
49 {
50 DECLARE_DYNAMIC_CLASS(wxPen)
51 public:
52 wxPen();
53 wxPen(const wxColour& col, int width = 1, int style = wxSOLID);
54 wxPen(const wxBitmap& stipple, int width);
55 virtual ~wxPen();
56
57 inline bool operator == (const wxPen& pen) const { return m_refData == pen.m_refData; }
58 inline bool operator != (const wxPen& pen) const { return m_refData != pen.m_refData; }
59
60 virtual bool Ok() const { return IsOk(); }
61 virtual bool IsOk() const { return (m_refData != NULL) ; }
62
63 // Override in order to recreate the pen
64 void SetColour(const wxColour& col) ;
65 void SetColour(unsigned char r, unsigned char g, unsigned char b) ;
66
67 void SetWidth(int width) ;
68 void SetStyle(int style) ;
69 void SetStipple(const wxBitmap& stipple) ;
70 void SetDashes(int nb_dashes, const wxDash *dash) ;
71 void SetJoin(int join) ;
72 void SetCap(int cap) ;
73
74 inline wxColour& GetColour() const { return (M_PENDATA ? M_PENDATA->m_colour : wxNullColour); };
75 inline int GetWidth() const { return (M_PENDATA ? M_PENDATA->m_width : 0); };
76 inline int GetStyle() const { return (M_PENDATA ? M_PENDATA->m_style : 0); };
77 inline int GetJoin() const { return (M_PENDATA ? M_PENDATA->m_join : 0); };
78 inline int GetCap() const { return (M_PENDATA ? M_PENDATA->m_cap : 0); };
79 inline int GetDashes(wxDash **ptr) const {
80 *ptr = (M_PENDATA ? M_PENDATA->m_dash : (wxDash*) NULL); return (M_PENDATA ? M_PENDATA->m_nbDash : 0);
81 }
82
83 inline wxBitmap *GetStipple() const { return (M_PENDATA ? (& M_PENDATA->m_stipple) : (wxBitmap*) NULL); };
84
85 // Implementation
86
87 // Useful helper: create the brush resource
88 bool RealizeResource();
89
90 // When setting properties, we must make sure we're not changing
91 // another object
92 void Unshare();
93 };
94
95 #endif
96 // _WX_PEN_H_