]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/pen.h
added Show/HideNativeCaret() (patch 759924)
[wxWidgets.git] / include / wx / msw / pen.h
CommitLineData
2bda0e17
KB
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$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_PEN_H_
13#define _WX_PEN_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "pen.h"
17#endif
18
19#include "wx/gdiobj.h"
2432b92d 20#include "wx/bitmap.h"
ed39ff57 21#include "wx/colour.h"
2bda0e17 22
236a9de3 23typedef WXDWORD wxMSWDash;
2bda0e17
KB
24
25class WXDLLEXPORT wxPen;
26
27class WXDLLEXPORT wxPenRefData: public wxGDIRefData
28{
29 friend class WXDLLEXPORT wxPen;
30public:
e4a81a2e 31 wxPenRefData();
b823f5a1 32 wxPenRefData(const wxPenRefData& data);
e4a81a2e 33 ~wxPenRefData();
2bda0e17
KB
34
35protected:
36 int m_width;
37 int m_style;
38 int m_join ;
39 int m_cap ;
40 wxBitmap m_stipple ;
41 int m_nbDash ;
edd97174 42 wxDash * m_dash ;
2bda0e17
KB
43 wxColour m_colour;
44 WXHPEN m_hPen;
22f3361e
VZ
45
46private:
47// Cannot use
48// DECLARE_NO_COPY_CLASS(wxPenRefData)
49// because copy constructor is explicitly declared above;
50// but no copy assignment operator is defined, so declare
51// it private to prevent the compiler from defining it:
52 wxPenRefData& operator=(const wxPenRefData&);
2bda0e17
KB
53};
54
55#define M_PENDATA ((wxPenRefData *)m_refData)
e2a5251d 56#define wxPENDATA(x) ((wxPenRefData *)(x).m_refData)
2bda0e17
KB
57
58// Pen
59class WXDLLEXPORT wxPen: public wxGDIObject
60{
61 DECLARE_DYNAMIC_CLASS(wxPen)
62public:
e4a81a2e 63 wxPen();
debe6624 64 wxPen(const wxColour& col, int width, int style);
debe6624 65 wxPen(const wxBitmap& stipple, int width);
2bda0e17 66 inline wxPen(const wxPen& pen) { Ref(pen); }
e4a81a2e 67 ~wxPen();
2bda0e17
KB
68
69 inline wxPen& operator = (const wxPen& pen) { if (*this == pen) return (*this); Ref(pen); return *this; }
e2a5251d
VZ
70 inline bool operator == (const wxPen& pen) const
71 {
72 // It is impossible to know if the user dashes have changed,
73 // so we must assume that they have
74 if ( m_refData && pen.m_refData )
75 {
76 if ( M_PENDATA->m_nbDash != 0 || wxPENDATA(pen)->m_nbDash != 0 )
77 return false;
78 }
79 return m_refData == pen.m_refData;
80 }
81 inline bool operator != (const wxPen& pen) const
82 {
83 // It is impossible to know if the user dashes have changed,
84 // so we must assume that they have
85 if ( m_refData && pen.m_refData )
86 {
87 if ( M_PENDATA->m_nbDash != 0 || wxPENDATA(pen)->m_nbDash != 0 )
88 return true;
89 }
90 return m_refData != pen.m_refData;
91 }
2bda0e17 92
e4a81a2e 93 virtual bool Ok() const { return (m_refData != NULL) ; }
2bda0e17
KB
94
95 // Override in order to recreate the pen
96 void SetColour(const wxColour& col) ;
4d947517 97 void SetColour(unsigned char r, unsigned char g, unsigned char b);
2bda0e17 98
debe6624
JS
99 void SetWidth(int width) ;
100 void SetStyle(int style) ;
2bda0e17 101 void SetStipple(const wxBitmap& stipple) ;
debe6624
JS
102 void SetDashes(int nb_dashes, const wxDash *dash) ;
103 void SetJoin(int join) ;
104 void SetCap(int cap) ;
2bda0e17 105
e4a81a2e
VZ
106 inline wxColour& GetColour() const { return (M_PENDATA ? M_PENDATA->m_colour : wxNullColour); };
107 inline int GetWidth() const { return (M_PENDATA ? M_PENDATA->m_width : 0); };
108 inline int GetStyle() const { return (M_PENDATA ? M_PENDATA->m_style : 0); };
109 inline int GetJoin() const { return (M_PENDATA ? M_PENDATA->m_join : 0); };
110 inline int GetCap() const { return (M_PENDATA ? M_PENDATA->m_cap : 0); };
236a9de3
RL
111 inline int GetDashes(wxDash **ptr) const
112 {
113 *ptr = (M_PENDATA ? (wxDash*)M_PENDATA->m_dash : (wxDash*) NULL);
114 return (M_PENDATA ? M_PENDATA->m_nbDash : 0);
2bda0e17
KB
115 }
116
57c208c5 117 inline wxBitmap *GetStipple() const { return (M_PENDATA ? (& M_PENDATA->m_stipple) : (wxBitmap*) NULL); };
2bda0e17
KB
118
119 // Internal
e4a81a2e 120 bool RealizeResource();
2bda0e17 121 bool FreeResource(bool force = FALSE);
2b5f62a0 122 WXHANDLE GetResourceHandle() const;
e4a81a2e 123 bool IsFree() const;
b823f5a1 124 void Unshare();
2bda0e17
KB
125};
126
127int wx2msPenStyle(int wx_style);
128
129#endif
bbcdf8bc 130 // _WX_PEN_H_