]>
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 | |
b5dbe15d VS |
22 | class WXDLLIMPEXP_FWD_CORE wxPen; |
23 | class WXDLLIMPEXP_FWD_CORE wxColour; | |
24 | class WXDLLIMPEXP_FWD_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 ); |
d3c7fc99 | 39 | virtual ~wxPen(); |
46562151 | 40 | |
b7cacb43 VZ |
41 | bool Ok() const { return IsOk(); } |
42 | bool IsOk() const { return m_refData != NULL; } | |
46562151 | 43 | |
74dc5eb6 RR |
44 | bool operator == ( const wxPen& pen ) const; |
45 | bool operator != (const wxPen& pen) const { return !(*this == pen); } | |
46 | ||
47 | void SetColour( const wxColour &colour ); | |
1a1498c0 | 48 | void SetColour( unsigned char red, unsigned char green, unsigned char blue ); |
74dc5eb6 RR |
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 ); | |
69c44812 MB |
54 | void SetStipple( wxBitmap *stipple ); |
55 | ||
74dc5eb6 RR |
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; | |
69c44812 | 64 | wxBitmap* GetStipple() const; |
74dc5eb6 | 65 | |
6f02a879 | 66 | protected: |
74dc5eb6 RR |
67 | // ref counting code |
68 | virtual wxObjectRefData *CreateRefData() const; | |
69 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
46562151 | 70 | |
74dc5eb6 | 71 | DECLARE_DYNAMIC_CLASS(wxPen) |
83df96d6 JS |
72 | }; |
73 | ||
74 | #endif | |
75 | // _WX_PEN_H_ |