]>
Commit | Line | Data |
---|---|---|
b3c86150 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dfb/pen.h | |
3 | // Purpose: wxPen class declaration | |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2006-08-04 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2006 REA Elektronik GmbH | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_DFB_PEN_H_ | |
12 | #define _WX_DFB_PEN_H_ | |
13 | ||
14 | #include "wx/defs.h" | |
15 | #include "wx/object.h" | |
16 | #include "wx/string.h" | |
17 | #include "wx/gdiobj.h" | |
18 | #include "wx/gdicmn.h" | |
19 | ||
20 | //----------------------------------------------------------------------------- | |
21 | // classes | |
22 | //----------------------------------------------------------------------------- | |
23 | ||
24 | class WXDLLIMPEXP_CORE wxBitmap; | |
25 | class WXDLLIMPEXP_CORE wxPen; | |
26 | ||
27 | //----------------------------------------------------------------------------- | |
28 | // wxPen | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | class WXDLLIMPEXP_CORE wxPen: public wxGDIObject | |
32 | { | |
33 | public: | |
34 | wxPen() {} | |
35 | wxPen(const wxColour &colour, int width = 1, int style = wxSOLID); | |
36 | wxPen(const wxBitmap& stipple, int width); | |
37 | ||
38 | bool operator==(const wxPen& pen) const; | |
39 | bool operator!=(const wxPen& pen) const { return !(*this == pen); } | |
40 | ||
41 | void SetColour(const wxColour &colour); | |
42 | void SetColour(unsigned char red, unsigned char green, unsigned char blue); | |
43 | void SetCap(int capStyle); | |
44 | void SetJoin(int joinStyle); | |
45 | void SetStyle(int style); | |
46 | void SetWidth(int width); | |
47 | void SetDashes(int number_of_dashes, const wxDash *dash); | |
48 | void SetStipple(const wxBitmap& stipple); | |
49 | ||
50 | wxColour &GetColour() const; | |
51 | int GetCap() const; | |
52 | int GetJoin() const; | |
53 | int GetStyle() const; | |
54 | int GetWidth() const; | |
55 | int GetDashes(wxDash **ptr) const; | |
56 | int GetDashCount() const; | |
57 | wxDash* GetDash() const; | |
58 | wxBitmap *GetStipple() const; | |
59 | ||
60 | bool Ok() const; | |
61 | ||
62 | protected: | |
63 | // ref counting code | |
64 | virtual wxObjectRefData *CreateRefData() const; | |
65 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
66 | ||
67 | DECLARE_DYNAMIC_CLASS(wxPen) | |
68 | }; | |
69 | ||
70 | #endif // _WX_DFB_PEN_H_ |