]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/region.h
Really fix the problem with caret in wxGrid text editor under MSW.
[wxWidgets.git] / include / wx / os2 / region.h
CommitLineData
0e320a79 1/////////////////////////////////////////////////////////////////////////////
ec02a2f7 2// Name: wx/os2/region.h
0e320a79 3// Purpose: wxRegion class
409c9842 4// Author: David Webster
0e320a79 5// Modified by:
409c9842 6// Created: 10/15/99
0e320a79 7// RCS-ID: $Id$
409c9842 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
8a16d737
VZ
12#ifndef _WX_OS2_REGION_H_
13#define _WX_OS2_REGION_H_
0e320a79 14
0e320a79 15#include "wx/list.h"
51a7e6af 16#include "wx/os2/private.h"
0e320a79 17
53a2db12 18class WXDLLIMPEXP_CORE wxRegion : public wxRegionWithCombine
5a56a532 19{
0e320a79 20public:
5a56a532
DW
21 wxRegion( wxCoord x
22 ,wxCoord y
23 ,wxCoord vWidth
24 ,wxCoord vHeight
25 );
26 wxRegion( const wxPoint& rTopLeft
27 ,const wxPoint& rBottomRight
28 );
29 wxRegion(const wxRect& rRect);
19193a2c 30 wxRegion(WXHRGN hRegion, WXHDC hPS); // Hangs on to this region
94a007ec 31 wxRegion(size_t n, const wxPoint *points, wxPolygonFillMode fillStyle = wxODDEVEN_RULE );
85f6b408
VS
32 wxRegion( const wxBitmap& bmp)
33 {
34 Union(bmp);
35 }
36 wxRegion( const wxBitmap& bmp,
37 const wxColour& transColour, int tolerance = 0)
38 {
39 Union(bmp, transColour, tolerance);
40 }
409c9842
DW
41
42 wxRegion();
d3c7fc99 43 virtual ~wxRegion();
409c9842 44
5a56a532
DW
45 //
46 // Modify region
47 //
48
49 //
409c9842 50 // Clear current region
5a56a532 51 //
8a16d737 52 virtual void Clear();
5a56a532
DW
53
54 //
409c9842 55 // Is region empty?
5a56a532 56 //
8a16d737 57 virtual bool IsEmpty() const;
5a56a532
DW
58
59 //
409c9842 60 // Get internal region handle
5a56a532 61 //
8a16d737
VZ
62 WXHRGN GetHRGN() const;
63
5a56a532 64 void SetPS(HPS hPS);
45e0dc94
DW
65
66protected:
4b3f61d1
SN
67 virtual wxGDIRefData* CreateGDIRefData(void) const;
68 virtual wxGDIRefData* CloneGDIRefData(const wxGDIRefData* pData) const;
107e4338 69
8a16d737
VZ
70 virtual bool DoIsEqual(const wxRegion& region) const;
71 virtual bool DoGetBox(wxCoord& x, wxCoord& y, wxCoord& w, wxCoord& h) const;
72 virtual wxRegionContain DoContainsPoint(wxCoord x, wxCoord y) const;
73 virtual wxRegionContain DoContainsRect(const wxRect& rect) const;
74
75 virtual bool DoOffset(wxCoord x, wxCoord y);
76 virtual bool DoCombine(const wxRegion& region, wxRegionOp op);
77
b5dbe15d 78 friend class WXDLLIMPEXP_FWD_CORE wxRegionIterator;
45e0dc94
DW
79 DECLARE_DYNAMIC_CLASS(wxRegion);
80
5a56a532 81}; // end of CLASS wxRegion
0e320a79 82
53a2db12 83class WXDLLIMPEXP_CORE wxRegionIterator : public wxObject
5a56a532 84{
0e320a79 85public:
409c9842 86 wxRegionIterator();
5a56a532 87 wxRegionIterator(const wxRegion& rRegion);
d3c7fc99 88 virtual ~wxRegionIterator();
0e320a79 89
5a56a532
DW
90 void Reset(void) { m_lCurrent = 0; }
91 void Reset(const wxRegion& rRegion);
0e320a79 92
5a56a532
DW
93 operator bool (void) const { return m_lCurrent < m_lNumRects; }
94 bool HaveRects(void) const { return m_lCurrent < m_lNumRects; }
0e320a79 95
5a56a532 96 void operator ++ (void);
409c9842 97 void operator ++ (int);
0e320a79 98
5a56a532
DW
99 wxCoord GetX(void) const;
100 wxCoord GetY(void) const;
101 wxCoord GetW(void) const;
102 wxCoord GetWidth(void) const { return GetW(); }
103 wxCoord GetH(void) const;
104 wxCoord GetHeight(void) const { return GetH(); }
105 wxRect GetRect(void) const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
0e320a79
DW
106
107private:
5a56a532
DW
108 long m_lCurrent;
109 long m_lNumRects;
110 wxRegion m_vRegion;
111 wxRect* m_pRects;
4b3f61d1
SN
112
113 DECLARE_DYNAMIC_CLASS(wxRegionIterator)
5a56a532 114}; // end of wxRegionIterator
0e320a79 115
8a16d737 116#endif // _WX_OS2_REGION_H_