]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ef94bfc | 2 | // Name: wx/gtk1/pen.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifndef __GTKPENH__ |
11 | #define __GTKPENH__ | |
12 | ||
c801d85f KB |
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 | ||
20123d49 | 23 | class WXDLLIMPEXP_CORE wxPen; |
c801d85f | 24 | |
8ef94bfc | 25 | #if defined(__WXGTK127__) |
2eca425d RL |
26 | typedef gint8 wxGTKDash; |
27 | #else | |
28 | typedef gchar wxGTKDash; | |
29 | #endif | |
112c5086 | 30 | |
c801d85f KB |
31 | //----------------------------------------------------------------------------- |
32 | // wxPen | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
20123d49 | 35 | class WXDLLIMPEXP_CORE wxPen: public wxGDIObject |
c801d85f | 36 | { |
20e05ffb | 37 | public: |
c89f5c02 | 38 | wxPen() { } |
46562151 | 39 | |
4f535231 | 40 | wxPen( const wxColour &colour, int width = 1, int style = wxSOLID ); |
8bbe427f | 41 | ~wxPen(); |
46562151 | 42 | |
c89f5c02 | 43 | bool Ok() const { return m_refData != NULL; } |
46562151 | 44 | |
f6bcfd97 | 45 | bool operator == ( const wxPen& pen ) const; |
c89f5c02 | 46 | bool operator != (const wxPen& pen) const { return !(*this == pen); } |
8bbe427f | 47 | |
c801d85f | 48 | void SetColour( const wxColour &colour ); |
1a1498c0 | 49 | void SetColour( unsigned char red, unsigned char green, unsigned char blue ); |
c801d85f KB |
50 | void SetCap( int capStyle ); |
51 | void SetJoin( int joinStyle ); | |
52 | void SetStyle( int style ); | |
53 | void SetWidth( int width ); | |
112c5086 | 54 | void SetDashes( int number_of_dashes, const wxDash *dash ); |
46562151 | 55 | |
8bbe427f VZ |
56 | wxColour &GetColour() const; |
57 | int GetCap() const; | |
58 | int GetJoin() const; | |
59 | int GetStyle() const; | |
60 | int GetWidth() const; | |
112c5086 RR |
61 | int GetDashes(wxDash **ptr) const; |
62 | int GetDashCount() const; | |
63 | wxDash* GetDash() const; | |
8bbe427f | 64 | |
46562151 | 65 | private: |
c89f5c02 RR |
66 | // ref counting code |
67 | virtual wxObjectRefData *CreateRefData() const; | |
68 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
46562151 | 69 | |
20e05ffb | 70 | DECLARE_DYNAMIC_CLASS(wxPen) |
c801d85f KB |
71 | }; |
72 | ||
73 | #endif // __GTKPENH__ |