]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/pen.h
Flicker war won.
[wxWidgets.git] / include / wx / gtk / pen.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: pen.h
3// Purpose:
4// Author: Robert Roebling
58614078
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
c801d85f
KB
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
28class wxPen;
29
30//-----------------------------------------------------------------------------
31// wxPen
32//-----------------------------------------------------------------------------
33
34class wxPen: public wxGDIObject
35{
36 DECLARE_DYNAMIC_CLASS(wxPen)
37
38 public:
39
40 wxPen(void);
41 wxPen( const wxColour &colour, int width, int style );
c801d85f
KB
42 wxPen( const wxPen& pen );
43 wxPen( const wxPen* pen );
44 ~wxPen(void);
45 wxPen& operator = ( const wxPen& pen );
46 bool operator == ( const wxPen& pen );
47 bool operator != ( const wxPen& pen );
48
49 void SetColour( const wxColour &colour );
debe6624 50 void SetColour( int red, int green, int blue );
c801d85f
KB
51 void SetCap( int capStyle );
52 void SetJoin( int joinStyle );
53 void SetStyle( int style );
54 void SetWidth( int width );
55 wxColour &GetColour(void) const;
56 int GetCap(void) const;
57 int GetJoin(void) const;
58 int GetStyle(void) const;
59 int GetWidth(void) const;
60 bool Ok(void) const;
61
e55ad60e
RR
62 void Unshare(void);
63
c801d85f
KB
64 // no data :-)
65};
66
67#endif // __GTKPENH__