]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/pen.h
Implement mouse entered, exited, and synthesize move events while the mouse is inside.
[wxWidgets.git] / include / wx / cocoa / pen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/pen.h
3 // Purpose: wxPen class
4 // Author: David Elliott
5 // Modified by:
6 // Created: 2003/08/02 (stubs from 22.03.2003)
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __WX_COCOA_PEN_H__
13 #define __WX_COCOA_PEN_H__
14
15 #include "wx/gdiobj.h"
16 #include "wx/gdicmn.h"
17
18 class WXDLLEXPORT wxColour;
19 class WXDLLEXPORT wxBitmap;
20
21 // ========================================================================
22 // wxPen
23 // ========================================================================
24 class WXDLLEXPORT wxPen: public wxGDIObject
25 {
26 DECLARE_DYNAMIC_CLASS(wxPen)
27 public:
28 wxPen();
29 wxPen(const wxColour& col, int width = 1, int style = wxSOLID);
30 wxPen(const wxBitmap& stipple, int width);
31 virtual ~wxPen();
32
33 // wxObjectRefData
34 wxObjectRefData *CreateRefData() const;
35 wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
36
37 inline bool operator == (const wxPen& pen) const
38 { return m_refData == pen.m_refData; }
39 inline bool operator != (const wxPen& pen) const
40 { return m_refData != pen.m_refData; }
41
42 virtual bool Ok() const { return IsOk(); }
43 virtual bool IsOk() const { return (m_refData != NULL) ; }
44
45 void SetColour(const wxColour& col) ;
46 void SetColour(unsigned char r, unsigned char g, unsigned char b) ;
47
48 void SetWidth(int width);
49 void SetStyle(int style);
50 void SetStipple(const wxBitmap& stipple);
51 void SetDashes(int nb_dashes, const wxDash *dash);
52 void SetJoin(int join);
53 void SetCap(int cap);
54
55 wxColour& GetColour() const;
56 int GetWidth() const;
57 int GetStyle() const;
58 int GetJoin() const;
59 int GetCap() const;
60 int GetDashes(wxDash **ptr) const;
61 wxBitmap *GetStipple() const;
62
63 WX_NSColor GetNSColor();
64 int GetCocoaLineDash(const float **pattern);
65 };
66
67 #endif // __WX_COCOA_PEN_H__