2001-09-26 00:16:04 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-17 21:52:36 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-05-18 21:46:20 +00:00
|
|
|
*
|
2004-04-17 21:52:36 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-05-18 21:46:20 +00:00
|
|
|
*
|
2001-09-26 00:16:04 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-05-18 21:46:20 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-17 21:52:36 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-26 00:16:04 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-26 00:16:04 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-17 21:52:36 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-26 00:16:04 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-17 21:52:36 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-26 00:16:04 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-17 21:52:36 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-26 00:16:04 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
#ifndef nsIRegion_h___
|
|
|
|
#define nsIRegion_h___
|
|
|
|
|
|
|
|
#include "nscore.h"
|
1998-05-18 22:24:20 +00:00
|
|
|
#include "nsISupports.h"
|
1998-05-18 21:46:20 +00:00
|
|
|
#include "nsRect.h"
|
|
|
|
|
1998-12-02 00:36:56 +00:00
|
|
|
enum nsRegionComplexity
|
|
|
|
{
|
|
|
|
eRegionComplexity_empty = 0,
|
|
|
|
eRegionComplexity_rect = 1,
|
|
|
|
eRegionComplexity_complex = 2
|
|
|
|
};
|
|
|
|
|
1999-02-10 02:15:47 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
PRInt32 x;
|
|
|
|
PRInt32 y;
|
|
|
|
PRUint32 width;
|
|
|
|
PRUint32 height;
|
|
|
|
} nsRegionRect;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
1999-02-11 01:53:42 +00:00
|
|
|
PRUint32 mNumRects; //number of actual rects in the mRects array
|
|
|
|
PRUint32 mRectsLen; //length, in rects, of the mRects array
|
1999-02-25 18:53:31 +00:00
|
|
|
PRUint32 mArea; //area of the covered portion of the region
|
1999-02-10 02:15:47 +00:00
|
|
|
nsRegionRect mRects[1];
|
|
|
|
} nsRegionRectSet;
|
|
|
|
|
1998-05-18 21:46:20 +00:00
|
|
|
// An implementation of a region primitive that can be used to
|
|
|
|
// represent arbitrary pixel areas. Probably implemented on top
|
|
|
|
// of the native region primitive. The assumption is that, at worst,
|
|
|
|
// it is a rectangle list.
|
|
|
|
|
|
|
|
#define NS_IREGION_IID \
|
|
|
|
{ 0x8ef366e0, 0xee94, 0x11d1, \
|
|
|
|
{ 0xa8, 0x2a, 0x00, 0x40, 0x95, 0x9a, 0x28, 0xc9 } }
|
|
|
|
|
|
|
|
class nsIRegion : public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IREGION_IID)
|
1999-06-14 06:16:08 +00:00
|
|
|
|
1998-12-02 00:36:56 +00:00
|
|
|
virtual nsresult Init(void) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* copy operator equivalent that takes another region
|
|
|
|
*
|
|
|
|
* @param region to copy
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual void SetTo(const nsIRegion &aRegion) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* copy operator equivalent that takes a rect
|
|
|
|
*
|
1998-05-19 22:08:46 +00:00
|
|
|
* @param aX xoffset of rect to set region to
|
|
|
|
* @param aY yoffset of rect to set region to
|
|
|
|
* @param aWidth width of rect to set region to
|
|
|
|
* @param aHeight height of rect to set region to
|
1998-05-18 21:46:20 +00:00
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
1998-05-19 22:08:46 +00:00
|
|
|
virtual void SetTo(PRInt32 aX, PRInt32 aY, PRInt32 aWidth, PRInt32 aHeight) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* destructively intersect another region with this one
|
|
|
|
*
|
|
|
|
* @param region to intersect
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual void Intersect(const nsIRegion &aRegion) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* destructively intersect a rect with this region
|
|
|
|
*
|
1998-05-19 22:08:46 +00:00
|
|
|
* @param aX xoffset of rect to intersect with region
|
|
|
|
* @param aY yoffset of rect to intersect with region
|
|
|
|
* @param aWidth width of rect to intersect with region
|
|
|
|
* @param aHeight height of rect to intersect with region
|
1998-05-18 21:46:20 +00:00
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
1998-05-19 22:08:46 +00:00
|
|
|
virtual void Intersect(PRInt32 aX, PRInt32 aY, PRInt32 aWidth, PRInt32 aHeight) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* destructively union another region with this one
|
|
|
|
*
|
|
|
|
* @param region to union
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual void Union(const nsIRegion &aRegion) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* destructively union a rect with this region
|
|
|
|
*
|
1998-05-19 22:08:46 +00:00
|
|
|
* @param aX xoffset of rect to union with region
|
|
|
|
* @param aY yoffset of rect to union with region
|
|
|
|
* @param aWidth width of rect to union with region
|
|
|
|
* @param aHeight height of rect to union with region
|
1998-05-18 21:46:20 +00:00
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
1998-05-19 22:08:46 +00:00
|
|
|
virtual void Union(PRInt32 aX, PRInt32 aY, PRInt32 aWidth, PRInt32 aHeight) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* destructively subtract another region with this one
|
|
|
|
*
|
|
|
|
* @param region to subtract
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual void Subtract(const nsIRegion &aRegion) = 0;
|
1998-06-03 03:12:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* destructively subtract a rect from this region
|
|
|
|
*
|
|
|
|
* @param aX xoffset of rect to subtract with region
|
|
|
|
* @param aY yoffset of rect to subtract with region
|
|
|
|
* @param aWidth width of rect to subtract with region
|
|
|
|
* @param aHeight height of rect to subtract with region
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual void Subtract(PRInt32 aX, PRInt32 aY, PRInt32 aWidth, PRInt32 aHeight) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* is this region empty? i.e. does it contain any pixels
|
|
|
|
*
|
|
|
|
* @param none
|
|
|
|
* @return returns whether the region is empty
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual PRBool IsEmpty(void) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* == operator equivalent i.e. do the regions contain exactly
|
|
|
|
* the same pixels
|
|
|
|
*
|
|
|
|
* @param region to compare
|
|
|
|
* @return whether the regions are identical
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
virtual PRBool IsEqual(const nsIRegion &aRegion) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the bounding box of the region i.e. the smallest
|
|
|
|
* rectangle that completely contains the region.
|
|
|
|
*
|
1998-05-19 22:08:46 +00:00
|
|
|
* @param aX out parameter for xoffset of bounding rect for region
|
|
|
|
* @param aY out parameter for yoffset of bounding rect for region
|
|
|
|
* @param aWidth out parameter for width of bounding rect for region
|
|
|
|
* @param aHeight out parameter for height of bounding rect for region
|
1998-05-18 21:46:20 +00:00
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
1998-05-19 22:08:46 +00:00
|
|
|
virtual void GetBoundingBox(PRInt32 *aX, PRInt32 *aY, PRInt32 *aWidth, PRInt32 *aHeight) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* offsets the region in x and y
|
|
|
|
*
|
|
|
|
* @param xoffset pixel offset in x
|
|
|
|
* @param yoffset pixel offset in y
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
1998-05-19 22:08:46 +00:00
|
|
|
virtual void Offset(PRInt32 aXOffset, PRInt32 aYOffset) = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
|
|
|
|
/**
|
1999-03-23 22:37:20 +00:00
|
|
|
* does the region intersect the rectangle?
|
1998-05-18 21:46:20 +00:00
|
|
|
*
|
|
|
|
* @param rect to check for containment
|
1999-03-23 22:37:20 +00:00
|
|
|
* @return true if the region intersects the rect
|
1998-05-18 21:46:20 +00:00
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
1998-05-19 22:08:46 +00:00
|
|
|
virtual PRBool ContainsRect(PRInt32 aX, PRInt32 aY, PRInt32 aWidth, PRInt32 aHeight) = 0;
|
1999-02-10 02:15:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the set of rects which make up this region. the aRects
|
|
|
|
* parameter must be freed by calling FreeRects before the region
|
|
|
|
* is deleted. aRects may be passed in again when requesting
|
|
|
|
* the rect list as a recycling method.
|
|
|
|
*
|
|
|
|
* @param aRects out parameter containing set of rects
|
|
|
|
* comprising the region
|
|
|
|
* @return error status
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
NS_IMETHOD GetRects(nsRegionRectSet **aRects) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free a rect set returned by GetRects.
|
|
|
|
*
|
|
|
|
* @param aRects rects to free
|
|
|
|
* @return error status
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
NS_IMETHOD FreeRects(nsRegionRectSet *aRects) = 0;
|
1998-12-02 00:36:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the native region that this nsIRegion represents.
|
|
|
|
* @param aRegion out parameter for native region handle
|
|
|
|
* @return error status
|
|
|
|
**/
|
|
|
|
NS_IMETHOD GetNativeRegion(void *&aRegion) const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the complexity of the region as defined by the
|
|
|
|
* nsRegionComplexity enum.
|
|
|
|
* @param aComplexity out parameter for region complexity
|
|
|
|
* @return error status
|
|
|
|
**/
|
|
|
|
NS_IMETHOD GetRegionComplexity(nsRegionComplexity &aComplexity) const = 0;
|
2000-02-07 03:39:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the number of rects which make up this region.
|
|
|
|
*
|
|
|
|
* @param aRects out parameter containing the number of rects
|
|
|
|
* comprising the region
|
|
|
|
* @return error status
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
NS_IMETHOD GetNumRects(PRUint32 *aRects) const = 0;
|
1998-05-18 21:46:20 +00:00
|
|
|
};
|
|
|
|
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIRegion, NS_IREGION_IID)
|
|
|
|
|
1999-06-14 06:16:08 +00:00
|
|
|
#endif // nsIRegion_h___
|