]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
4f535231 | 2 | // Name: wx/mgl/pen.h |
32b8ec41 VZ |
3 | // Purpose: |
4 | // Author: Vaclav Slavik | |
5 | // Id: $Id$ | |
52750c2e | 6 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 7 | // Licence: wxWindows licence |
32b8ec41 VZ |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
32b8ec41 VZ |
10 | #ifndef __WX_PEN_H__ |
11 | #define __WX_PEN_H__ | |
12 | ||
32b8ec41 VZ |
13 | #include "wx/defs.h" |
14 | #include "wx/object.h" | |
15 | #include "wx/string.h" | |
16 | #include "wx/gdiobj.h" | |
17 | #include "wx/gdicmn.h" | |
18 | ||
19 | //----------------------------------------------------------------------------- | |
20 | // classes | |
21 | //----------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxBitmap; | |
24 | class WXDLLEXPORT wxPen; | |
25 | ||
26 | //----------------------------------------------------------------------------- | |
27 | // wxPen | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
30 | class WXDLLEXPORT wxPen: public wxGDIObject | |
31 | { | |
32 | public: | |
3cdd0895 | 33 | wxPen() {} |
4f535231 | 34 | wxPen(const wxColour &colour, int width = 1, int style = wxSOLID); |
32b8ec41 | 35 | wxPen(const wxBitmap& stipple, int width); |
3cdd0895 | 36 | ~wxPen() {} |
32b8ec41 VZ |
37 | bool operator == (const wxPen& pen) const; |
38 | bool operator != (const wxPen& pen) const; | |
39 | ||
40 | void SetColour(const wxColour &colour); | |
1a1498c0 | 41 | void SetColour(unsigned char red, unsigned char green, unsigned char blue); |
32b8ec41 VZ |
42 | void SetCap(int capStyle); |
43 | void SetJoin(int joinStyle); | |
44 | void SetStyle(int style); | |
45 | void SetWidth(int width); | |
46 | void SetDashes(int number_of_dashes, const wxDash *dash); | |
47 | void SetStipple(const wxBitmap& stipple); | |
46562151 | 48 | |
32b8ec41 VZ |
49 | wxColour &GetColour() const; |
50 | int GetCap() const; | |
51 | int GetJoin() const; | |
52 | int GetStyle() const; | |
53 | int GetWidth() const; | |
54 | int GetDashes(wxDash **ptr) const; | |
55 | int GetDashCount() const; | |
56 | wxDash* GetDash() const; | |
57 | wxBitmap *GetStipple() const; | |
46562151 | 58 | |
32b8ec41 VZ |
59 | bool Ok() const; |
60 | ||
32b8ec41 VZ |
61 | // implementation: |
62 | void* GetPixPattern() const; | |
63 | ||
6d7ee9e8 VS |
64 | protected: |
65 | // ref counting code | |
66 | virtual wxObjectRefData *CreateRefData() const; | |
67 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
68 | ||
46562151 | 69 | private: |
32b8ec41 VZ |
70 | DECLARE_DYNAMIC_CLASS(wxPen) |
71 | }; | |
72 | ||
73 | #endif // __WX_PEN_H__ |