]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mgl/region.h
The Great wxRegion Refactoring:
[wxWidgets.git] / include / wx / mgl / region.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: region.h
3 // Purpose: wxRegion class
4 // Author: Vaclav Slavik
5 // Created: 2001/03/12
6 // RCS-ID: $Id$
7 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_MGL_REGION_H_
12 #define _WX_MGL_REGION_H_
13
14 #include "wx/list.h"
15
16 class MGLRegion;
17
18 class WXDLLEXPORT wxRegion : public wxRegionBase
19 {
20 public:
21 wxRegion();
22 wxRegion(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
23 wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight);
24 wxRegion(const wxRect& rect);
25 wxRegion(const MGLRegion& region);
26 wxRegion( const wxBitmap& bmp)
27 {
28 Union(bmp);
29 }
30 wxRegion( const wxBitmap& bmp,
31 const wxColour& transColour, int tolerance = 0)
32 {
33 Union(bmp, transColour, tolerance);
34 }
35
36 virtual ~wxRegion();
37
38 // wxRegionBase methods
39 virtual void Clear();
40 virtual bool IsEmpty() const;
41
42 // implementation from now on:
43 const MGLRegion& GetMGLRegion() const;
44
45 protected:
46 // ref counting code
47 virtual wxObjectRefData *CreateRefData() const;
48 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
49
50 // wxRegionBase pure virtuals
51 virtual bool DoIsEqual(const wxRegion& region) const;
52 virtual bool DoGetBox(wxCoord& x, wxCoord& y, wxCoord& w, wxCoord& h) const;
53 virtual wxRegionContain DoContainsPoint(wxCoord x, wxCoord y) const;
54 virtual wxRegionContain DoContainsRect(const wxRect& rect) const;
55
56 virtual bool DoOffset(wxCoord x, wxCoord y);
57 virtual bool DoUnionWithRect(const wxRect& rect);
58 virtual bool DoUnionWithRegion(const wxRegion& region);
59 virtual bool DoIntersect(const wxRegion& region);
60 virtual bool DoSubtract(const wxRegion& region);
61 virtual bool DoXor(const wxRegion& region);
62
63 private:
64 DECLARE_DYNAMIC_CLASS(wxRegion);
65 friend class WXDLLEXPORT wxRegionIterator;
66 };
67
68
69 WX_DECLARE_EXPORTED_LIST(wxRect, wxRegionRectList);
70
71 class WXDLLEXPORT wxRegionIterator : public wxObject
72 {
73 public:
74 wxRegionIterator(void);
75 wxRegionIterator(const wxRegion& region);
76 virtual ~wxRegionIterator(void);
77
78 void Reset(void) { m_currentNode = NULL; }
79 void Reset(const wxRegion& region);
80
81 operator bool (void) const { return (m_currentNode != NULL); }
82
83 bool HaveRects(void) const { return (m_currentNode != NULL); }
84
85 void operator ++ (void);
86 void operator ++ (int);
87
88 wxCoord GetX(void) const;
89 wxCoord GetY(void) const;
90 wxCoord GetW(void) const;
91 wxCoord GetWidth(void) const { return GetW(); }
92 wxCoord GetH(void) const;
93 wxCoord GetHeight(void) const { return GetH(); }
94 wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
95
96 private:
97 wxRegionRectList m_rects;
98 wxRegionRectList::Node *m_currentNode;
99
100 DECLARE_DYNAMIC_CLASS(wxRegionIterator);
101 };
102
103 #endif // _WX_MGL_REGION_H_