diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-10 11:35:07 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-10 11:35:07 +0000 |
commit | 5a05bc372488627664a7db98b5f0ab975ebd2d28 (patch) | |
tree | dd0baa1e245e38794b87ab75ed47d6fe080dd704 | |
parent | 944dbd09d5faf9f8623dd5ef637d61c6854a5aa6 (diff) |
INTEGRATION: CWS presfixes01 (1.1.2); FILE ADDED
2005/02/16 11:27:23 fs 1.1.2.1: moved from drafts.css.rendering to css.rendering
3 files changed, 456 insertions, 0 deletions
diff --git a/offapi/com/sun/star/rendering/XLinePolyPolygon2D.idl b/offapi/com/sun/star/rendering/XLinePolyPolygon2D.idl new file mode 100644 index 000000000..badbfd156 --- /dev/null +++ b/offapi/com/sun/star/rendering/XLinePolyPolygon2D.idl @@ -0,0 +1,138 @@ +/************************************************************************* + * + * $RCSfile: XLinePolyPolygon2D.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: vg $ $Date: 2005-03-10 12:34:45 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source 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.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XLinePolyPolygon2D_idl__ +#define __com_sun_star_rendering_XLinePolyPolygon2D_idl__ + +#ifndef __com_sun_star_uno_XInterface_idl__ +#include <com/sun/star/uno/XInterface.idl> +#endif +#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ +#include <com/sun/star/lang/IndexOutOfBoundsException.idl> +#endif +#ifndef __com_sun_star_geometry_RealPoint2D_idl__ +#include <com/sun/star/geometry/RealPoint2D.idl> +#endif +#ifndef __com_sun_star_rendering_XPolyPolygon2D_idl__ +#include <com/sun/star/rendering/XPolyPolygon2D.idl> +#endif + +module com { module sun { module star { module rendering { + +/** Specialized interface for a 2D poly-polygon containing only straight line segments. + */ +interface XLinePolyPolygon2D : XPolyPolygon2D +{ + /** Query subset of this poly-polygon, starting at the given + polygon and the given point within that polygon, and + containing the specified number of polygons and points in the + last polygon. + + @param nPolygonIndex + The index number of the polygon to start with extracting + points. Set to 0 to start with the first polygon. + + @param nNumberOfPolygons + The number of polygons, starting with nPolygonIndex, to + extract points from. Set to -1 to extract all polygons, + starting with nPolygonIndex (i.e. a total of + getNumberOfPolygons() - nPolygonIndex polygons is extracted). + + @param nPointIndex + The index of the point within the first polygon (that with the + index number nPolygonIndex) to start extraction with. Set to 0 + to start with the first point in this polygon. + + @param nNumberOfPoints + The number of points in the last polygon of the extraction + sequence, to be extracted. Set to -1 to extract all points + from the last polygon. + */ + sequence< sequence< ::com::sun::star::geometry::RealPoint2D > > getPoints( [in] long nPolygonIndex, [in] long nNumberOfPolygons, [in] long nPointIndex, [in] long nNumberOfPoints ) + raises (com::sun::star::lang::IndexOutOfBoundsException); + + //------------------------------------------------------------------------- + + /** Set the specified subset of points to the poly-polygon. The + subset of poly-polygon points not included in this sequence + remains unchanged. + */ + void setPoints( [in] sequence< sequence< ::com::sun::star::geometry::RealPoint2D > > points, [in] long nPolygonIndex, [in] long nPointIndex ) + raises (com::sun::star::lang::IndexOutOfBoundsException); + + //------------------------------------------------------------------------- + + /** Get a single point from the poly-polygon + */ + ::com::sun::star::geometry::RealPoint2D getPoint( [in] long nPolygonIndex, [in] long nPointIndex ) + raises (com::sun::star::lang::IndexOutOfBoundsException); + + //------------------------------------------------------------------------- + + /** Set a single point on the poly-polygon. The remaining points of + the poly-polygon will not be changed by this method. + */ + void setPoint( [in] ::com::sun::star::geometry::RealPoint2D point, [in] long nPolygonIndex, [in] long nPointIndex ) + raises (com::sun::star::lang::IndexOutOfBoundsException); +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/rendering/XParametricPolyPolygon2D.idl b/offapi/com/sun/star/rendering/XParametricPolyPolygon2D.idl new file mode 100644 index 000000000..4bc0d9546 --- /dev/null +++ b/offapi/com/sun/star/rendering/XParametricPolyPolygon2D.idl @@ -0,0 +1,133 @@ +/************************************************************************* + * + * $RCSfile: XParametricPolyPolygon2D.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: vg $ $Date: 2005-03-10 12:34:56 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source 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.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XParametricPolyPolygon2D_idl__ +#define __com_sun_star_rendering_XParametricPolyPolygon2D_idl__ + +#ifndef __com_sun_star_uno_XInterface_idl__ +#include <com/sun/star/uno/XInterface.idl> +#endif +#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ +#include <com/sun/star/lang/IllegalArgumentException.idl> +#endif +#ifndef __com_sun_star_geometry_RealPoint2D_idl__ +#include <com/sun/star/geometry/RealPoint2D.idl> +#endif +#ifndef __com_sun_star_rendering_XPolyPolygon2D_idl__ +#include <com/sun/star/rendering/XPolyPolygon2D.idl> +#endif +#ifndef __com_sun_star_rendering_XColorSpace_idl__ +#include <com/sun/star/rendering/XColorSpace.idl> +#endif + +module com { module sun { module star { module rendering { + +/** Interface to a dynamic poly-polygon generator, that generates + poly-polygons depending on a given parameter value.<p> + + The returned poly-polygon should normally be contained in the + [0,1]x[0,1] rectangle. At least that is the dimension expected at + other places. e.g. <type>Texture</type>. + */ +interface XParametricPolyPolygon2D : ::com::sun::star::uno::XInterface +{ + /** Query the polygonal outline at the specified value. + + The returned outline should be clipped to the [0,1]x[0,1] + rectangle. + + @param t + Parameter value in the range [0,1]. During painting, this + range is sweeped through starting from 0. When using such a + parametric polypolygon for gradients, the area covered by the + returned XPolyPolygon2D should be monotonically decreasing + with t (unless singularities in e.g. the resulting gradient + are desired). + */ + XPolyPolygon2D getOutline( [in] double t ) + raises (com::sun::star::lang::IllegalArgumentException); + + //------------------------------------------------------------------------- + + /** Query the color value for the polygonal area at the specified + parameter value. + + @param t + Parameter value in the range [0,1]. During painting, this + range is swept through starting from 0. + */ + sequence<ColorComponent> getColor( [in] double t ) + raises (com::sun::star::lang::IllegalArgumentException); + + //------------------------------------------------------------------------- + + /** Query the color for a dedicated point in the plane. + + @param point + The permissible parameter range for point is [0,1]x[0,1] + */ + sequence<ColorComponent> getPointColor( [in] ::com::sun::star::geometry::RealPoint2D point ) + raises (com::sun::star::lang::IllegalArgumentException); + +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl b/offapi/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl new file mode 100644 index 000000000..1860bd200 --- /dev/null +++ b/offapi/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl @@ -0,0 +1,185 @@ +/************************************************************************* + * + * $RCSfile: XParametricPolyPolygon2DFactory.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: vg $ $Date: 2005-03-10 12:35:07 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source 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.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XParametricPolyPolygon2DFactory_idl__ +#define __com_sun_star_rendering_XParametricPolyPolygon2DFactory_idl__ + +#ifndef __com_sun_star_uno_XInterface_idl__ +#include <com/sun/star/uno/XInterface.idl> +#endif +#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ +#include <com/sun/star/lang/IllegalArgumentException.idl> +#endif +#ifndef __com_sun_star_geometry_RealRectangle2D_idl__ +#include <com/sun/star/geometry/RealRectangle2D.idl> +#endif +#ifndef __com_sun_star_rendering_XColorSpace_idl__ +#include <com/sun/star/rendering/XColorSpace.idl> +#endif + + +module com { module sun { module star { module rendering { + +interface XParametricPolyPolygon2D; + +/** This interface provides factory methods to generate various + ready-made XParametricPolyPolygon2Ds + */ +interface XParametricPolyPolygon2DFactory : ::com::sun::star::uno::XInterface +{ + /** Create a linear gradient. + + The gradient varies linearly between leftColor and rightColor + in the x direction, and has constant color for fixed x + coordinate value in y direction + */ + XParametricPolyPolygon2D createLinearHorizontalGradient( [in] sequence<ColorComponent> leftColor, [in] sequence<ColorComponent> rightColor ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create an axial gradient. + + The gradient has middleColor in the middle, and varies + linearly between middleColor and endColor to both sides in the + x direction. For fixed x coordinate, the gradient has constant + color value in y direction. + */ + XParametricPolyPolygon2D createAxialHorizontalGradient( [in] sequence<ColorComponent> middleColor, [in] sequence<ColorComponent> endColor ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create an elliptical gradient. + + The gradient has centerColor in the middle, and varies + linearly between center and endColor via concentric ellipses + around the center point. Note that the absolute size of the + rectangle given at this method does not matter, only it's + aspect ratio: if this aspect ratio ís 1, the gradient is + circular. If it's not 1, the gradient is elliptical, with the + special twist that the aspect ratio is maintained also for the + center color: the gradient will not collapse into a single + point, but become a line of center color. + */ + XParametricPolyPolygon2D createEllipticalGradient( [in] sequence<ColorComponent> centerColor, [in] sequence<ColorComponent> endColor, [in] ::com::sun::star::geometry::RealRectangle2D boundRect ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create a rectangular gradient. + + The gradient has centerColor in the middle, and varies + linearly between center and endColor via rectangular boxes + around the center point. Note that the absolute size of the + rectangle given at this method does not matter, only it's + aspect ratio: if this aspect ratio ís 1, the gradient is + quadratic. If it's not 1, the gradient is rectangular, with + the special twist that the aspect ratio is maintained also for + the center color: the gradient will not collapse into a single + point, but become a line of center color. + */ + XParametricPolyPolygon2D createRectangularGradient( [in] sequence<ColorComponent> centerColor, [in] sequence<ColorComponent> endColor, [in] ::com::sun::star::geometry::RealRectangle2D boundRect ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create a line hash of vertical lines. + + The hashing consists of vertical lines, with colors varying + linearly between leftColor and rightColor, when going from + left to right + */ + XParametricPolyPolygon2D createVerticalLinesHatch( [in] sequence<ColorComponent> leftColor, [in] sequence<ColorComponent> rightColor ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create a line hash of orthogonally crossing lines. + + The hashing consists of vertical and horizontal lines, with + colors varying linearly between leftTopColor and + rightBottomColor, when going from left to right (for the + vertical lines) and from top tzo bottom (for the horizontal + lines). + */ + XParametricPolyPolygon2D createOrthogonalLinesHatch( [in] sequence<ColorComponent> leftTopColor, [in] sequence<ColorComponent> rightBottomColor ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create a repeating line hash pattern of three crossing lines. + + The hashing consists of vertical and horizontal lines plus + diagonal lines from left, top to bottom, right. Each of the + three groups of lines varies the line color of distinct lines + linearly from startColor to endColor, starting at the leftmost + or topmost position. + */ + XParametricPolyPolygon2D createThreeCrossingLinesHatch( [in] sequence<ColorComponent> startColor, [in] sequence<ColorComponent> endColor ) + raises (com::sun::star::lang::IllegalArgumentException); + + /** Create a repeating line hash pattern of four crossing lines. + + The hashing consists of vertical and horizontal lines plus + diagonal lines in both directions. Each of the four groups of + lines varies the line color of distinct lines linearly from + startColor to endColor, starting at the leftmost or topmost + position. + */ + XParametricPolyPolygon2D createFourCrossingLinesHatch( [in] sequence<ColorComponent> startColor, [in] sequence<ColorComponent> endColor ) + raises (com::sun::star::lang::IllegalArgumentException); +}; + +//============================================================================= + +service ParametricPolyPolygon2DFactory: XParametricPolyPolygon2DFactory; + +}; }; }; }; + +#endif |