]> git.saurik.com Git - wxWidgets.git/blame - include/wx/x11/pen.h
decouple item index from string value (patch 1905702)
[wxWidgets.git] / include / wx / x11 / pen.h
CommitLineData
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
22class WXDLLIMPEXP_FWD_CORE wxPen;
23class WXDLLIMPEXP_FWD_CORE wxColour;
24class WXDLLIMPEXP_FWD_CORE wxBitmap;
83df96d6 25
74dc5eb6 26typedef char wxX11Dash;
83df96d6 27
74dc5eb6
RR
28//-----------------------------------------------------------------------------
29// wxPen
30//-----------------------------------------------------------------------------
83df96d6 31
968eb2ef 32class WXDLLIMPEXP_CORE wxPen: public wxGDIObject
83df96d6 33{
83df96d6 34public:
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
74dc5eb6
RR
41 bool operator == ( const wxPen& pen ) const;
42 bool operator != (const wxPen& pen) const { return !(*this == pen); }
43
44 void SetColour( const wxColour &colour );
1a1498c0 45 void SetColour( unsigned char red, unsigned char green, unsigned char blue );
74dc5eb6
RR
46 void SetCap( int capStyle );
47 void SetJoin( int joinStyle );
48 void SetStyle( int style );
49 void SetWidth( int width );
50 void SetDashes( int number_of_dashes, const wxDash *dash );
69c44812
MB
51 void SetStipple( wxBitmap *stipple );
52
74dc5eb6
RR
53 wxColour &GetColour() const;
54 int GetCap() const;
55 int GetJoin() const;
56 int GetStyle() const;
57 int GetWidth() const;
58 int GetDashes(wxDash **ptr) const;
59 int GetDashCount() const;
60 wxDash* GetDash() const;
69c44812 61 wxBitmap* GetStipple() const;
74dc5eb6 62
6f02a879 63protected:
8f884a0d
VZ
64 virtual wxGDIRefData *CreateGDIRefData() const;
65 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
46562151 66
74dc5eb6 67 DECLARE_DYNAMIC_CLASS(wxPen)
83df96d6
JS
68};
69
8f884a0d 70#endif // _WX_PEN_H_