]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
46562151 | 2 | // Name: wx/x11/pen.h |
83df96d6 JS |
3 | // Purpose: wxPen class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
46562151 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_PEN_H_ | |
13 | #define _WX_PEN_H_ | |
14 | ||
69c44812 | 15 | #include "wx/gdicmn.h" |
83df96d6 | 16 | #include "wx/gdiobj.h" |
83df96d6 | 17 | |
74dc5eb6 RR |
18 | //----------------------------------------------------------------------------- |
19 | // classes | |
20 | //----------------------------------------------------------------------------- | |
83df96d6 | 21 | |
968eb2ef MW |
22 | class WXDLLIMPEXP_CORE wxPen; |
23 | class WXDLLIMPEXP_CORE wxColour; | |
24 | class WXDLLIMPEXP_CORE wxBitmap; | |
83df96d6 | 25 | |
74dc5eb6 | 26 | typedef char wxX11Dash; |
83df96d6 | 27 | |
74dc5eb6 RR |
28 | //----------------------------------------------------------------------------- |
29 | // wxPen | |
30 | //----------------------------------------------------------------------------- | |
83df96d6 | 31 | |
968eb2ef | 32 | class WXDLLIMPEXP_CORE wxPen: public wxGDIObject |
83df96d6 | 33 | { |
83df96d6 | 34 | public: |
74dc5eb6 | 35 | wxPen() { } |
46562151 | 36 | |
4f535231 | 37 | wxPen( const wxColour &colour, int width = 1, int style = wxSOLID ); |
69c44812 | 38 | wxPen( const wxBitmap &stipple, int width ); |
74dc5eb6 | 39 | ~wxPen(); |
46562151 | 40 | |
74dc5eb6 | 41 | bool Ok() const { return m_refData != NULL; } |
46562151 | 42 | |
74dc5eb6 RR |
43 | bool operator == ( const wxPen& pen ) const; |
44 | bool operator != (const wxPen& pen) const { return !(*this == pen); } | |
45 | ||
46 | void SetColour( const wxColour &colour ); | |
1a1498c0 | 47 | void SetColour( unsigned char red, unsigned char green, unsigned char blue ); |
74dc5eb6 RR |
48 | void SetCap( int capStyle ); |
49 | void SetJoin( int joinStyle ); | |
50 | void SetStyle( int style ); | |
51 | void SetWidth( int width ); | |
52 | void SetDashes( int number_of_dashes, const wxDash *dash ); | |
69c44812 MB |
53 | void SetStipple( wxBitmap *stipple ); |
54 | ||
74dc5eb6 RR |
55 | wxColour &GetColour() const; |
56 | int GetCap() const; | |
57 | int GetJoin() const; | |
58 | int GetStyle() const; | |
59 | int GetWidth() const; | |
60 | int GetDashes(wxDash **ptr) const; | |
61 | int GetDashCount() const; | |
62 | wxDash* GetDash() const; | |
69c44812 | 63 | wxBitmap* GetStipple() const; |
74dc5eb6 | 64 | |
6f02a879 | 65 | protected: |
74dc5eb6 RR |
66 | // ref counting code |
67 | virtual wxObjectRefData *CreateRefData() const; | |
68 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
46562151 | 69 | |
74dc5eb6 | 70 | DECLARE_DYNAMIC_CLASS(wxPen) |
83df96d6 JS |
71 | }; |
72 | ||
73 | #endif | |
74 | // _WX_PEN_H_ |