]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/region.h
fix saving/restoring size when WM supports _NET_FRAME_EXTENTS but not _NET_REQUEST_FR...
[wxWidgets.git] / include / wx / gtk / region.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
5fc7ede9 2// Name: wx/gtk/region.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
58614078
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
5fc7ede9
VZ
10#ifndef _WX_GTK_REGION_H_
11#define _WX_GTK_REGION_H_
c801d85f 12
1e6feb95 13// ----------------------------------------------------------------------------
c801d85f 14// wxRegion
1e6feb95 15// ----------------------------------------------------------------------------
c801d85f 16
8a16d737 17class WXDLLIMPEXP_CORE wxRegion : public wxRegionBase
c801d85f 18{
e1208c31 19public:
9fe4c99c 20 wxRegion() { }
1542ea39 21
9fe4c99c
VZ
22 wxRegion( wxCoord x, wxCoord y, wxCoord w, wxCoord h )
23 {
24 InitRect(x, y, w, h);
25 }
26
27 wxRegion( const wxPoint& topLeft, const wxPoint& bottomRight )
28 {
29 InitRect(topLeft.x, topLeft.y,
30 bottomRight.x - topLeft.x, bottomRight.y - topLeft.y);
31 }
32
33 wxRegion( const wxRect& rect )
34 {
35 InitRect(rect.x, rect.y, rect.width, rect.height);
36 }
37
38 wxRegion( size_t n, const wxPoint *points, int fillStyle = wxODDEVEN_RULE );
1542ea39 39
c0521644 40#if wxUSE_IMAGE
85f6b408
VS
41 wxRegion( const wxBitmap& bmp)
42 {
43 Union(bmp);
44 }
1542ea39 45 wxRegion( const wxBitmap& bmp,
85f6b408 46 const wxColour& transColour, int tolerance = 0)
1542ea39
RD
47 {
48 Union(bmp, transColour, tolerance);
49 }
c0521644 50#endif // wxUSE_IMAGE
1542ea39 51
d3c7fc99 52 virtual ~wxRegion();
c801d85f 53
8a16d737
VZ
54 // wxRegionBase methods
55 virtual void Clear();
56 virtual bool IsEmpty() const;
1542ea39 57
e1208c31 58public:
331a0b6b
RR
59 // Init with GdkRegion, set ref count to 2 so that
60 // the C++ class will not destroy the region!
61 wxRegion( GdkRegion *region );
1542ea39 62
07818da8 63 GdkRegion *GetRegion() const;
1e6feb95
VZ
64
65protected:
8f884a0d
VZ
66 virtual wxGDIRefData *CreateGDIRefData() const;
67 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
1542ea39 68
8a16d737
VZ
69 // wxRegionBase pure virtuals
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 DoUnionWithRect(const wxRect& rect);
77 virtual bool DoUnionWithRegion(const wxRegion& region);
78 virtual bool DoIntersect(const wxRegion& region);
79 virtual bool DoSubtract(const wxRegion& region);
80 virtual bool DoXor(const wxRegion& region);
81
9fe4c99c
VZ
82 // common part of ctors for a rectangle region
83 void InitRect(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
84
e1208c31 85private:
777105f2 86 DECLARE_DYNAMIC_CLASS(wxRegion)
c801d85f
KB
87};
88
1e6feb95
VZ
89// ----------------------------------------------------------------------------
90// wxRegionIterator: decomposes a region into rectangles
91// ----------------------------------------------------------------------------
92
20123d49 93class WXDLLIMPEXP_CORE wxRegionIterator: public wxObject
8429bec1 94{
738f9e5a 95public:
07818da8 96 wxRegionIterator();
8429bec1 97 wxRegionIterator(const wxRegion& region);
ac7d3dd1 98 wxRegionIterator(const wxRegionIterator& ri) : wxObject(ri) { Init(); *this = ri; }
55ccdb93 99 ~wxRegionIterator();
8429bec1 100
ac7d3dd1
RR
101 wxRegionIterator& operator=(const wxRegionIterator& ri);
102
6f2a55e3 103 void Reset() { m_current = 0u; }
8429bec1
RR
104 void Reset(const wxRegion& region);
105
07818da8 106 bool HaveRects() const;
2b5f62a0 107 operator bool () const { return HaveRects(); }
8429bec1 108
2b5f62a0
VZ
109 wxRegionIterator& operator ++ ();
110 wxRegionIterator operator ++ (int);
8429bec1 111
b02da6b1
VZ
112 wxCoord GetX() const;
113 wxCoord GetY() const;
114 wxCoord GetW() const;
115 wxCoord GetWidth() const { return GetW(); }
116 wxCoord GetH() const;
117 wxCoord GetHeight() const { return GetH(); }
1e6feb95 118 wxRect GetRect() const;
8429bec1 119
738f9e5a 120private:
55ccdb93
VZ
121 void Init();
122 void CreateRects( const wxRegion& r );
123
6f2a55e3
VZ
124 size_t m_current;
125 wxRegion m_region;
738f9e5a 126
55ccdb93
VZ
127 wxRect *m_rects;
128 size_t m_numRects;
129
738f9e5a 130private:
777105f2 131 DECLARE_DYNAMIC_CLASS(wxRegionIterator)
8429bec1
RR
132};
133
134
c801d85f 135#endif
5fc7ede9 136 // _WX_GTK_REGION_H_