1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2003-07-21 19:39:34 +00:00
|
|
|
// Name: wx/os2/pen.h
|
1999-07-29 05:11:30 +00:00
|
|
|
// Purpose: wxPen class
|
1999-10-12 22:49:24 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-12 22:49:24 +00:00
|
|
|
// Created: 10/10/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-12 22:49:24 +00:00
|
|
|
// Copyright: (c) David Webster
|
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_PEN_H_
|
|
|
|
#define _WX_PEN_H_
|
|
|
|
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
2000-03-13 14:34:35 +00:00
|
|
|
typedef long wxPMDash;
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxPen;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPenRefData: public wxGDIRefData
|
|
|
|
{
|
|
|
|
friend class WXDLLEXPORT wxPen;
|
|
|
|
public:
|
|
|
|
wxPenRefData();
|
2000-11-27 20:01:19 +00:00
|
|
|
wxPenRefData(const wxPenRefData& rData);
|
1999-07-29 05:11:30 +00:00
|
|
|
~wxPenRefData();
|
|
|
|
|
|
|
|
protected:
|
2000-11-27 20:01:19 +00:00
|
|
|
int m_nWidth;
|
|
|
|
int m_nStyle;
|
|
|
|
int m_nJoin;
|
|
|
|
int m_nCap;
|
|
|
|
wxBitmap m_vStipple;
|
|
|
|
wxColour m_vColour;
|
|
|
|
WXHPEN m_hPen;// in OS/2 GPI this will be the PS the pen is associated with
|
1999-07-29 05:11:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define M_PENDATA ((wxPenRefData *)m_refData)
|
|
|
|
|
|
|
|
// Pen
|
2000-11-27 20:01:19 +00:00
|
|
|
class WXDLLEXPORT wxPen : public wxGDIObject
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
2000-11-27 20:01:19 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxPen)
|
1999-07-29 05:11:30 +00:00
|
|
|
public:
|
2000-11-27 20:01:19 +00:00
|
|
|
wxPen();
|
|
|
|
wxPen( const wxColour& rColour
|
2003-07-21 19:39:34 +00:00
|
|
|
,int nWidth = 1
|
|
|
|
,int nStyle = wxSOLID
|
2000-11-27 20:01:19 +00:00
|
|
|
);
|
|
|
|
wxPen( const wxBitmap& rStipple
|
|
|
|
,int nWidth
|
|
|
|
);
|
|
|
|
inline wxPen(const wxPen& rPen) { Ref(rPen); }
|
|
|
|
~wxPen();
|
|
|
|
|
2004-05-09 17:30:57 +00:00
|
|
|
inline wxPen& operator = (const wxPen& rPen)
|
|
|
|
{ if (*this == rPen) return (*this); Ref(rPen); return *this; }
|
|
|
|
inline bool operator == (const wxPen& rPen) const
|
|
|
|
{ return m_refData == rPen.m_refData; }
|
|
|
|
inline bool operator != (const wxPen& rPen) const
|
|
|
|
{ return m_refData != rPen.m_refData; }
|
2000-11-27 20:01:19 +00:00
|
|
|
|
|
|
|
virtual bool Ok(void) const { return (m_refData != NULL); }
|
|
|
|
|
|
|
|
//
|
|
|
|
// Override in order to recreate the pen
|
|
|
|
//
|
|
|
|
void SetColour(const wxColour& rColour);
|
|
|
|
void SetColour( unsigned char cRed
|
|
|
|
,unsigned char cGreen
|
|
|
|
,unsigned char cBlue
|
|
|
|
);
|
|
|
|
|
|
|
|
void SetWidth(int nWidth);
|
|
|
|
void SetStyle(int nStyle);
|
|
|
|
void SetStipple(const wxBitmap& rStipple);
|
|
|
|
void SetDashes( int nNbDashes
|
|
|
|
,const wxDash* pDash
|
|
|
|
);
|
|
|
|
void SetJoin(int nJoin);
|
|
|
|
void SetCap(int nCap);
|
|
|
|
void SetPS(HPS hPS);
|
|
|
|
|
|
|
|
inline wxColour& GetColour(void) const { return (M_PENDATA ? M_PENDATA->m_vColour : wxNullColour); };
|
|
|
|
inline int GetWidth(void) const { return (M_PENDATA ? M_PENDATA->m_nWidth : 0); };
|
|
|
|
inline int GetStyle(void) const { return (M_PENDATA ? M_PENDATA->m_nStyle : 0); };
|
|
|
|
inline int GetJoin(void) const { return (M_PENDATA ? M_PENDATA->m_nJoin : 0); };
|
|
|
|
inline int GetCap(void) const { return (M_PENDATA ? M_PENDATA->m_nCap : 0); };
|
|
|
|
inline int GetPS(void) const { return (M_PENDATA ? M_PENDATA->m_hPen : 0); };
|
|
|
|
|
|
|
|
inline wxBitmap* GetStipple(void) const { return (M_PENDATA ? (& M_PENDATA->m_vStipple) : (wxBitmap*) NULL); };
|
|
|
|
|
|
|
|
//
|
|
|
|
// Implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Useful helper: create the brush resource
|
|
|
|
//
|
|
|
|
bool RealizeResource(void);
|
|
|
|
bool FreeResource(bool bForce = FALSE);
|
|
|
|
WXHANDLE GetResourceHandle(void);
|
|
|
|
bool IsFree(void) const;
|
|
|
|
void Unshare(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
LINEBUNDLE m_vLineBundle;
|
|
|
|
AREABUNDLE m_vAreaBundle;
|
|
|
|
}; // end of CLASS wxPen
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-11-27 21:26:12 +00:00
|
|
|
extern int wx2os2PenStyle(int nWxStyle);
|
|
|
|
|
1999-07-29 05:11:30 +00:00
|
|
|
#endif
|
|
|
|
// _WX_PEN_H_
|