]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: pen.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __GTKPENH__ | |
12 | #define __GTKPENH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
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 wxPen; | |
29 | ||
30 | //----------------------------------------------------------------------------- | |
31 | // wxPen | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
34 | class wxPen: public wxGDIObject | |
35 | { | |
36 | DECLARE_DYNAMIC_CLASS(wxPen) | |
37 | ||
38 | public: | |
39 | ||
40 | wxPen(); | |
41 | wxPen( const wxColour &colour, int width, int style ); | |
42 | wxPen( const wxPen& pen ); | |
43 | ~wxPen(); | |
44 | wxPen& operator = ( const wxPen& pen ); | |
45 | bool operator == ( const wxPen& pen ); | |
46 | bool operator != ( const wxPen& pen ); | |
47 | ||
48 | void SetColour( const wxColour &colour ); | |
49 | void SetColour( int red, int green, int blue ); | |
50 | void SetCap( int capStyle ); | |
51 | void SetJoin( int joinStyle ); | |
52 | void SetStyle( int style ); | |
53 | void SetWidth( int width ); | |
54 | wxColour &GetColour() const; | |
55 | int GetCap() const; | |
56 | int GetJoin() const; | |
57 | int GetStyle() const; | |
58 | int GetWidth() const; | |
59 | bool Ok() const; | |
60 | ||
61 | void Unshare(); | |
62 | ||
63 | // no data :-) | |
64 | }; | |
65 | ||
66 | #endif // __GTKPENH__ |