]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/pen.h
all delete functions now send delete notification event
[wxWidgets.git] / include / wx / msw / pen.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: pen.h
3// Purpose: wxPen class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_PEN_H_
13#define _WX_PEN_H_
14
15#ifdef __GNUG__
16#pragma interface "pen.h"
17#endif
18
19#include "wx/gdiobj.h"
20
21typedef WXDWORD wxDash ;
22
23class WXDLLEXPORT wxPen;
24
25class WXDLLEXPORT wxPenRefData: public wxGDIRefData
26{
27 friend class WXDLLEXPORT wxPen;
28public:
29 wxPenRefData();
30 wxPenRefData(const wxPenRefData& data);
31 ~wxPenRefData();
32
33protected:
34 int m_width;
35 int m_style;
36 int m_join ;
37 int m_cap ;
38 wxBitmap m_stipple ;
39 int m_nbDash ;
40 wxDash * m_dash ;
41 wxColour m_colour;
42 WXHPEN m_hPen;
43};
44
45#define M_PENDATA ((wxPenRefData *)m_refData)
46
47// Pen
48class WXDLLEXPORT wxPen: public wxGDIObject
49{
50 DECLARE_DYNAMIC_CLASS(wxPen)
51public:
52 wxPen();
53 wxPen(const wxColour& col, int width, int style);
54 wxPen(const wxBitmap& stipple, int width);
55 inline wxPen(const wxPen& pen) { Ref(pen); }
56 ~wxPen();
57
58 inline wxPen& operator = (const wxPen& pen) { if (*this == pen) return (*this); Ref(pen); return *this; }
59 inline bool operator == (const wxPen& pen) { return m_refData == pen.m_refData; }
60 inline bool operator != (const wxPen& pen) { return m_refData != pen.m_refData; }
61
62 virtual bool Ok() const { return (m_refData != NULL) ; }
63
64 // Override in order to recreate the pen
65 void SetColour(const wxColour& col) ;
66 void SetColour(unsigned char r, unsigned char g, unsigned char b);
67
68 void SetWidth(int width) ;
69 void SetStyle(int style) ;
70 void SetStipple(const wxBitmap& stipple) ;
71 void SetDashes(int nb_dashes, const wxDash *dash) ;
72 void SetJoin(int join) ;
73 void SetCap(int cap) ;
74
75 inline wxColour& GetColour() const { return (M_PENDATA ? M_PENDATA->m_colour : wxNullColour); };
76 inline int GetWidth() const { return (M_PENDATA ? M_PENDATA->m_width : 0); };
77 inline int GetStyle() const { return (M_PENDATA ? M_PENDATA->m_style : 0); };
78 inline int GetJoin() const { return (M_PENDATA ? M_PENDATA->m_join : 0); };
79 inline int GetCap() const { return (M_PENDATA ? M_PENDATA->m_cap : 0); };
80 inline int GetDashes(wxDash **ptr) const {
81 *ptr = (M_PENDATA ? M_PENDATA->m_dash : NULL); return (M_PENDATA ? M_PENDATA->m_nbDash : 0);
82 }
83
84 inline wxBitmap *GetStipple() const { return (M_PENDATA ? (& M_PENDATA->m_stipple) : NULL); };
85
86 // Internal
87 bool RealizeResource();
88 bool FreeResource(bool force = FALSE);
89 WXHANDLE GetResourceHandle() ;
90 bool IsFree() const;
91 void Unshare();
92};
93
94int wx2msPenStyle(int wx_style);
95
96#endif
97 // _WX_PEN_H_