2001-06-26 21:05:06 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2003-07-21 19:39:34 +00:00
|
|
|
// Name: wx/mgl/pen.h
|
2001-06-26 21:05:06 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Id: $Id$
|
2002-02-14 20:30:34 +00:00
|
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 21:05:06 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_PEN_H__
|
|
|
|
#define __WX_PEN_H__
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxBitmap;
|
|
|
|
class WXDLLEXPORT wxPen;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxPen
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPen: public wxGDIObject
|
|
|
|
{
|
|
|
|
public:
|
2001-11-21 00:00:29 +00:00
|
|
|
wxPen() {}
|
2003-07-21 19:39:34 +00:00
|
|
|
wxPen(const wxColour &colour, int width = 1, int style = wxSOLID);
|
2001-06-26 21:05:06 +00:00
|
|
|
wxPen(const wxBitmap& stipple, int width);
|
|
|
|
wxPen(const wxPen& pen);
|
2001-11-21 00:00:29 +00:00
|
|
|
~wxPen() {}
|
2001-06-26 21:05:06 +00:00
|
|
|
wxPen& operator = (const wxPen& pen);
|
|
|
|
bool operator == (const wxPen& pen) const;
|
|
|
|
bool operator != (const wxPen& pen) const;
|
|
|
|
|
|
|
|
void SetColour(const wxColour &colour);
|
2005-10-04 18:14:41 +00:00
|
|
|
void SetColour(unsigned char red, unsigned char green, unsigned char blue);
|
2001-06-26 21:05:06 +00:00
|
|
|
void SetCap(int capStyle);
|
|
|
|
void SetJoin(int joinStyle);
|
|
|
|
void SetStyle(int style);
|
|
|
|
void SetWidth(int width);
|
|
|
|
void SetDashes(int number_of_dashes, const wxDash *dash);
|
|
|
|
void SetStipple(const wxBitmap& stipple);
|
2005-10-04 16:13:42 +00:00
|
|
|
|
2001-06-26 21:05:06 +00:00
|
|
|
wxColour &GetColour() const;
|
|
|
|
int GetCap() const;
|
|
|
|
int GetJoin() const;
|
|
|
|
int GetStyle() const;
|
|
|
|
int GetWidth() const;
|
|
|
|
int GetDashes(wxDash **ptr) const;
|
|
|
|
int GetDashCount() const;
|
|
|
|
wxDash* GetDash() const;
|
|
|
|
wxBitmap *GetStipple() const;
|
2005-10-04 16:13:42 +00:00
|
|
|
|
2001-06-26 21:05:06 +00:00
|
|
|
bool Ok() const;
|
|
|
|
|
|
|
|
// implementation:
|
|
|
|
void* GetPixPattern() const;
|
|
|
|
|
2002-02-09 23:29:05 +00:00
|
|
|
protected:
|
|
|
|
// ref counting code
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
2005-10-04 16:13:42 +00:00
|
|
|
private:
|
2001-06-26 21:05:06 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxPen)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __WX_PEN_H__
|