]>
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) |
32b8ec41 VZ |
7 | // Licence: wxWindows licence |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __WX_PEN_H__ | |
12 | #define __WX_PEN_H__ | |
13 | ||
12028905 | 14 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
32b8ec41 VZ |
15 | #pragma interface "pen.h" |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
19 | #include "wx/object.h" | |
20 | #include "wx/string.h" | |
21 | #include "wx/gdiobj.h" | |
22 | #include "wx/gdicmn.h" | |
23 | ||
24 | //----------------------------------------------------------------------------- | |
25 | // classes | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
28 | class WXDLLEXPORT wxBitmap; | |
29 | class WXDLLEXPORT wxPen; | |
30 | ||
31 | //----------------------------------------------------------------------------- | |
32 | // wxPen | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
35 | class WXDLLEXPORT wxPen: public wxGDIObject | |
36 | { | |
37 | public: | |
3cdd0895 | 38 | wxPen() {} |
4f535231 | 39 | wxPen(const wxColour &colour, int width = 1, int style = wxSOLID); |
32b8ec41 VZ |
40 | wxPen(const wxBitmap& stipple, int width); |
41 | wxPen(const wxPen& pen); | |
3cdd0895 | 42 | ~wxPen() {} |
32b8ec41 VZ |
43 | wxPen& operator = (const wxPen& pen); |
44 | bool operator == (const wxPen& pen) const; | |
45 | bool operator != (const wxPen& pen) const; | |
46 | ||
47 | void SetColour(const wxColour &colour); | |
48 | void SetColour(int red, int green, int blue); | |
49 | void SetCap(int capStyle); | |
50 | void SetJoin(int joinStyle); | |
51 | void SetStyle(int style); | |
52 | void SetWidth(int width); | |
53 | void SetDashes(int number_of_dashes, const wxDash *dash); | |
54 | void SetStipple(const wxBitmap& stipple); | |
55 | ||
56 | wxColour &GetColour() const; | |
57 | int GetCap() const; | |
58 | int GetJoin() const; | |
59 | int GetStyle() const; | |
60 | int GetWidth() const; | |
61 | int GetDashes(wxDash **ptr) const; | |
62 | int GetDashCount() const; | |
63 | wxDash* GetDash() const; | |
64 | wxBitmap *GetStipple() const; | |
65 | ||
66 | bool Ok() const; | |
67 | ||
32b8ec41 VZ |
68 | // implementation: |
69 | void* GetPixPattern() const; | |
70 | ||
6d7ee9e8 VS |
71 | protected: |
72 | // ref counting code | |
73 | virtual wxObjectRefData *CreateRefData() const; | |
74 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
75 | ||
32b8ec41 VZ |
76 | private: |
77 | DECLARE_DYNAMIC_CLASS(wxPen) | |
78 | }; | |
79 | ||
80 | #endif // __WX_PEN_H__ |