1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XRegion.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_awt_XRegion_idl__
31 #define __com_sun_star_awt_XRegion_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include
<com
/sun
/star
/uno
/XInterface.idl
>
37 #ifndef __com_sun_star_awt_Rectangle_idl__
38 #include
<com
/sun
/star
/awt
/Rectangle.idl
>
42 //=============================================================================
44 module com
{ module sun
{ module star
{ module awt
{
46 //=============================================================================
48 /** manages multiple rectangles which make up a region.
50 published
interface XRegion
: com
::sun
::star
::uno
::XInterface
52 //-------------------------------------------------------------------------
54 /** returns the bounding box of the shape.
56 Rectangle getBounds
();
58 //-------------------------------------------------------------------------
60 /** makes this region an empty region.
62 [oneway
] void clear
();
64 //-------------------------------------------------------------------------
66 /** moves this region by the specified horizontal and vertical delta.
68 [oneway
] void move
( [in] long nHorzMove
,
69 [in] long nVertMove
);
71 //-------------------------------------------------------------------------
73 /** adds the specified rectangle to this region.
75 [oneway
] void unionRectangle
( [in] Rectangle Rect
);
77 //-------------------------------------------------------------------------
79 /** intersects the specified rectangle with the current region.
81 [oneway
] void intersectRectangle
( [in] Rectangle Region
);
83 //-------------------------------------------------------------------------
85 /** removes the area of the specified rectangle from this region.
87 [oneway
] void excludeRectangle
( [in] Rectangle Rect
);
89 //-------------------------------------------------------------------------
91 /** applies an exclusive-or operation with the specified rectangle
94 [oneway
] void xOrRectangle
( [in] Rectangle Rect
);
96 //-------------------------------------------------------------------------
98 /** adds the specified region to this region.
100 [oneway
] void unionRegion
( [in] XRegion Region
);
102 //-------------------------------------------------------------------------
104 /** intersects the specified region with the current region.
106 [oneway
] void intersectRegion
( [in] XRegion Region
);
108 //-------------------------------------------------------------------------
110 /** removes the area of the specified region from this region.
112 [oneway
] void excludeRegion
( [in] XRegion Region
);
114 //-------------------------------------------------------------------------
116 /** applies an exclusive-or operation with the specified region
119 [oneway
] void xOrRegion
( [in] XRegion Region
);
121 //-------------------------------------------------------------------------
123 /** returns all rectangles which are making up this region.
125 sequence
<Rectangle
> getRectangles
();
129 //=============================================================================