1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: region.h
|
|
|
|
// Purpose: wxRegion class
|
1999-10-15 21:00:38 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-15 21:00:38 +00:00
|
|
|
// Created: 10/15/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-15 21:00:38 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_REGION_H_
|
|
|
|
#define _WX_REGION_H_
|
|
|
|
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/gdicmn.h"
|
2004-06-03 21:13:52 +00:00
|
|
|
#include "wx/bitmap.h"
|
2003-08-31 21:00:00 +00:00
|
|
|
#include "wx/os2/private.h"
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxRect;
|
|
|
|
class WXDLLEXPORT wxPoint;
|
|
|
|
|
|
|
|
enum wxRegionContain {
|
1999-10-15 21:00:38 +00:00
|
|
|
wxOutRegion = 0, wxPartRegion = 1, wxInRegion = 2
|
1999-07-29 05:11:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// So far, for internal use only
|
2000-12-18 05:32:32 +00:00
|
|
|
enum wxRegionOp { wxRGN_AND // Creates the intersection of the two combined regions.
|
|
|
|
,wxRGN_COPY // Creates a copy of the region identified by hrgnSrc1.
|
|
|
|
,wxRGN_DIFF // Combines the parts of hrgnSrc1 that are not part of hrgnSrc2.
|
|
|
|
,wxRGN_OR // Creates the union of two combined regions.
|
|
|
|
,wxRGN_XOR // Creates the union of two combined regions except for any overlapping areas.
|
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxRegion : public wxGDIObject
|
|
|
|
{
|
1999-07-29 05:11:30 +00:00
|
|
|
public:
|
2000-12-18 05:32:32 +00:00
|
|
|
wxRegion( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
);
|
|
|
|
wxRegion( const wxPoint& rTopLeft
|
|
|
|
,const wxPoint& rBottomRight
|
|
|
|
);
|
|
|
|
wxRegion(const wxRect& rRect);
|
2001-10-17 22:25:56 +00:00
|
|
|
wxRegion(WXHRGN hRegion, WXHDC hPS); // Hangs on to this region
|
2004-06-03 21:13:52 +00:00
|
|
|
wxRegion( const wxBitmap& bmp)
|
|
|
|
{
|
|
|
|
Union(bmp);
|
|
|
|
}
|
|
|
|
wxRegion( const wxBitmap& bmp,
|
|
|
|
const wxColour& transColour, int tolerance = 0)
|
|
|
|
{
|
|
|
|
Union(bmp, transColour, tolerance);
|
|
|
|
}
|
1999-10-15 21:00:38 +00:00
|
|
|
|
|
|
|
wxRegion();
|
|
|
|
~wxRegion();
|
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
// Copying
|
|
|
|
//
|
|
|
|
inline wxRegion(const wxRegion& rSrc)
|
|
|
|
{ Ref(rSrc); }
|
|
|
|
inline wxRegion& operator = (const wxRegion& rSrc)
|
|
|
|
{ Ref(rSrc); return (*this); }
|
1999-10-15 21:00:38 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
// Modify region
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Clear current region
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
void Clear(void);
|
1999-10-15 21:00:38 +00:00
|
|
|
|
2002-02-04 04:19:14 +00:00
|
|
|
bool Offset( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
);
|
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Union rectangle or region with this.
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
inline bool Union( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return Combine( x
|
|
|
|
,y
|
|
|
|
,vWidth
|
|
|
|
,vHeight
|
|
|
|
,wxRGN_OR
|
|
|
|
);
|
|
|
|
}
|
|
|
|
inline bool Union( const wxRect& rRect) { return Combine(rRect, wxRGN_OR); }
|
|
|
|
inline bool Union(const wxRegion& rRegion) { return Combine(rRegion, wxRGN_OR); }
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Intersect rectangle or region with this.
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
inline bool Intersect( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return Combine( x
|
|
|
|
,y
|
|
|
|
,vWidth
|
|
|
|
,vHeight
|
|
|
|
,wxRGN_AND
|
|
|
|
);
|
|
|
|
}
|
|
|
|
inline bool Intersect(const wxRect& rRect) { return Combine(rRect, wxRGN_AND); }
|
|
|
|
inline bool Intersect(const wxRegion& rRegion) { return Combine(rRegion, wxRGN_AND); }
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Subtract rectangle or region from this:
|
1999-07-29 05:11:30 +00:00
|
|
|
// Combines the parts of 'this' that are not part of the second region.
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
inline bool Subtract( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return Combine( x
|
|
|
|
,y
|
|
|
|
,vWidth
|
|
|
|
,vHeight
|
|
|
|
,wxRGN_DIFF
|
|
|
|
);
|
|
|
|
}
|
|
|
|
inline bool Subtract(const wxRect& rRect) { return Combine(rRect, wxRGN_DIFF); }
|
|
|
|
inline bool Subtract(const wxRegion& rRegion) { return Combine(rRegion, wxRGN_DIFF); }
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// XOR: the union of two combined regions except for any overlapping areas.
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
inline bool Xor( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return Combine( x
|
|
|
|
,y
|
|
|
|
,vWidth
|
|
|
|
,vHeight
|
|
|
|
,wxRGN_XOR
|
|
|
|
);
|
|
|
|
}
|
|
|
|
inline bool Xor(const wxRect& rRect) { return Combine(rRect, wxRGN_XOR); }
|
|
|
|
inline bool Xor(const wxRegion& rRegion) { return Combine(rRegion, wxRGN_XOR); }
|
|
|
|
|
|
|
|
//
|
|
|
|
// Information on region
|
1999-10-15 21:00:38 +00:00
|
|
|
// Outer bounds of region
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
void GetBox( wxCoord& rX
|
|
|
|
,wxCoord& rY
|
|
|
|
,wxCoord& rWidth
|
|
|
|
,wxCoord& rHeight
|
|
|
|
) const;
|
|
|
|
wxRect GetBox(void) const;
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Is region empty?
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
bool Empty(void) const;
|
1999-07-29 05:11:30 +00:00
|
|
|
inline bool IsEmpty() const { return Empty(); }
|
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
// Tests
|
1999-10-15 21:00:38 +00:00
|
|
|
// Does the region contain the point (x,y)?
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
wxRegionContain Contains( wxCoord lX
|
|
|
|
,wxCoord lY
|
|
|
|
) const;
|
2003-04-15 21:08:31 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Convert the region to a B&W bitmap with the black pixels being inside
|
|
|
|
// the region.
|
|
|
|
//
|
|
|
|
wxBitmap ConvertToBitmap(void) const;
|
|
|
|
|
|
|
|
// Use the non-transparent pixels of a wxBitmap for the region to combine
|
2004-06-03 21:13:52 +00:00
|
|
|
// with this region. First version takes transparency from bitmap's mask,
|
|
|
|
// second lets the user specify the colour to be treated as transparent
|
2003-04-15 21:08:31 +00:00
|
|
|
// along with an optional tolerance value.
|
2004-06-03 21:13:52 +00:00
|
|
|
// NOTE: implemented in common/rgncmn.cpp
|
|
|
|
bool Union(const wxBitmap& bmp);
|
|
|
|
bool Union(const wxBitmap& bmp,
|
|
|
|
const wxColour& transColour, int tolerance = 0);
|
2003-04-15 21:08:31 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Does the region contain the point pt?
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
wxRegionContain Contains(const wxPoint& rPoint) const;
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Does the region contain the rectangle (x, y, w, h)?
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
wxRegionContain Contains( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord lWidth
|
|
|
|
,wxCoord lHeight
|
|
|
|
) const;
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Does the region contain the rectangle rect?
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
wxRegionContain Contains(const wxRect& rRect) const;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Internal
|
|
|
|
//
|
|
|
|
bool Combine( wxCoord x
|
|
|
|
,wxCoord y
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
,wxRegionOp eOp
|
|
|
|
);
|
|
|
|
bool Combine( const wxRegion& rRegion
|
|
|
|
,wxRegionOp eOp
|
|
|
|
);
|
|
|
|
bool Combine( const wxRect& rRect
|
|
|
|
,wxRegionOp eOp
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
1999-10-15 21:00:38 +00:00
|
|
|
// Get internal region handle
|
2000-12-18 05:32:32 +00:00
|
|
|
//
|
|
|
|
WXHRGN GetHRGN(void) const;
|
|
|
|
void SetPS(HPS hPS);
|
2002-02-04 04:19:14 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual wxObjectRefData* CreateData(void) const;
|
2002-02-04 14:09:12 +00:00
|
|
|
virtual wxObjectRefData* CloneData(const wxObjectRefData* pData) const;
|
|
|
|
|
2002-02-04 04:19:14 +00:00
|
|
|
friend class WXDLLEXPORT wxRegionIterator;
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxRegion);
|
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
}; // end of CLASS wxRegion
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
class WXDLLEXPORT wxRegionIterator : public wxObject
|
|
|
|
{
|
1999-07-29 05:11:30 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxRegionIterator);
|
|
|
|
public:
|
1999-10-15 21:00:38 +00:00
|
|
|
wxRegionIterator();
|
2000-12-18 05:32:32 +00:00
|
|
|
wxRegionIterator(const wxRegion& rRegion);
|
1999-10-15 21:00:38 +00:00
|
|
|
~wxRegionIterator();
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
void Reset(void) { m_lCurrent = 0; }
|
|
|
|
void Reset(const wxRegion& rRegion);
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
operator bool (void) const { return m_lCurrent < m_lNumRects; }
|
|
|
|
bool HaveRects(void) const { return m_lCurrent < m_lNumRects; }
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
void operator ++ (void);
|
1999-10-15 21:00:38 +00:00
|
|
|
void operator ++ (int);
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-12-18 05:32:32 +00:00
|
|
|
wxCoord GetX(void) const;
|
|
|
|
wxCoord GetY(void) const;
|
|
|
|
wxCoord GetW(void) const;
|
|
|
|
wxCoord GetWidth(void) const { return GetW(); }
|
|
|
|
wxCoord GetH(void) const;
|
|
|
|
wxCoord GetHeight(void) const { return GetH(); }
|
|
|
|
wxRect GetRect(void) const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
private:
|
2000-12-18 05:32:32 +00:00
|
|
|
long m_lCurrent;
|
|
|
|
long m_lNumRects;
|
|
|
|
wxRegion m_vRegion;
|
|
|
|
wxRect* m_pRects;
|
|
|
|
}; // end of wxRegionIterator
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
#endif
|
1999-10-15 21:00:38 +00:00
|
|
|
// _WX_REGION_H_
|