From fd2aef24e3f9d1aa1f933f3bffccd8b88e5b4cc2 Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Tue, 26 Jun 2007 10:36:55 +0000 Subject: #i78888# Splitting up XBitmap specializations into read-only and read-write parts --- .../star/rendering/XHalfFloatReadOnlyBitmap.idl | 112 +++++++++++++++ .../star/rendering/XIeeeDoubleReadOnlyBitmap.idl | 139 ++++++++++++++++++ .../star/rendering/XIeeeFloatReadOnlyBitmap.idl | 138 ++++++++++++++++++ .../sun/star/rendering/XIntegerReadOnlyBitmap.idl | 157 +++++++++++++++++++++ 4 files changed, 546 insertions(+) create mode 100644 offapi/com/sun/star/rendering/XHalfFloatReadOnlyBitmap.idl create mode 100644 offapi/com/sun/star/rendering/XIeeeDoubleReadOnlyBitmap.idl create mode 100644 offapi/com/sun/star/rendering/XIeeeFloatReadOnlyBitmap.idl create mode 100644 offapi/com/sun/star/rendering/XIntegerReadOnlyBitmap.idl (limited to 'offapi') diff --git a/offapi/com/sun/star/rendering/XHalfFloatReadOnlyBitmap.idl b/offapi/com/sun/star/rendering/XHalfFloatReadOnlyBitmap.idl new file mode 100644 index 000000000000..52ef8eb7b62c --- /dev/null +++ b/offapi/com/sun/star/rendering/XHalfFloatReadOnlyBitmap.idl @@ -0,0 +1,112 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XHalfFloatReadOnlyBitmap.idl,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: thb $ $Date: 2007-06-26 11:36:55 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 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 + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XHalfFloatReadOnlyBitmap_idl__ +#define __com_sun_star_rendering_XHalfFloatReadOnlyBitmap_idl__ + +#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ +#include +#endif +#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_FloatingPointBitmapLayout_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerPoint2D_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerRectangle2D_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_XBitmap_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_VolatileContentDestroyedException_idl__ +#include +#endif + +module com { module sun { module star { module rendering { + +/** Specialized interface for bitmaps containing half floats as their + color components. Half floats are 16 bit wide, and some high-end + GPUs already have them as supported frame buffer format. In + contrast to XHalfFloatBitmap, this interface only + permits read-only access.

+ + Use this interface for e.g. bitmaps that are calculated + on-the-fly, or that are pure functional. + */ +interface XHalfFloatReadOnlyBitmap : XBitmap +{ + /** Query the raw data of this bitmap. + + Query the raw data of this bitmap, in the format as defined by + getMemoryLayout(). With the given rectangle, a subset of the + whole bitmap can be queried. When querying subsets of the + bitmap, the same scanline padding takes place as when the + whole bitmap is requested. Note: as we currently have no 16 + bit float UNO data type, the values are transported as 16 bit + integers across the API (which requires casting on both + sides). + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + */ + sequence getData( [in] ::com::sun::star::geometry::IntegerRectangle2D rect ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Get a single pixel of the bitmap, returning its color + value. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + */ + sequence getPixel( [in] ::com::sun::star::geometry::IntegerPoint2D pos ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Query the memory layout for this bitmap + */ + FloatingPointBitmapLayout getMemoryLayout(); +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/rendering/XIeeeDoubleReadOnlyBitmap.idl b/offapi/com/sun/star/rendering/XIeeeDoubleReadOnlyBitmap.idl new file mode 100644 index 000000000000..e3b029afe7e6 --- /dev/null +++ b/offapi/com/sun/star/rendering/XIeeeDoubleReadOnlyBitmap.idl @@ -0,0 +1,139 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XIeeeDoubleReadOnlyBitmap.idl,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: thb $ $Date: 2007-06-26 11:36:55 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 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 + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XIeeeDoubleReadOnlyBitmap_idl__ +#define __com_sun_star_rendering_XIeeeDoubleReadOnlyBitmap_idl__ + +#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ +#include +#endif +#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_FloatingPointBitmapLayout_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerPoint2D_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerRectangle2D_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_XBitmap_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_VolatileContentDestroyedException_idl__ +#include +#endif + + +module com { module sun { module star { module rendering { + +/** This is a specialized interface for bitmaps containing IEEE + doubles for their color components. In contrast to + XIeeeDoubleBitmap, this interface only permits + read-only access.

+ + Use this interface for e.g. bitmaps that are calculated + on-the-fly, or that are pure functional. + */ +interface XIeeeDoubleReadOnlyBitmap : XBitmap +{ + /** Query the raw data of this bitmap. + + Query the raw data of this bitmap, in the format as defined by + getMemoryLayout(). With the given rectangle, a subset of the + whole bitmap can be queried. When querying subsets of the + bitmap, the same scanline padding takes place as when the + whole bitmap is requested. + + Note that the bitmap memory layout might change for volatile + bitmaps.

+ + @param bitmapLayout + The memory layout the returned data is in. + + @param rect + A rectangle, within the bounds of the bitmap, to retrieve the + contens from. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + + @throws com::sun::star::lang::IndexOutOfBoundsException + if parts of the given rectangle are outside the permissible + bitmap area. + */ + sequence getData( [out] FloatingPointBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerRectangle2D rect ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Get a single pixel of the bitmap, returning its color + value. + + Note that the bitmap memory layout might change for volatile + bitmaps.

+ + @param bitmapLayout + The memory layout the returned data is in. + + @param pos + A position, within the bounds of the bitmap, to retrieve the + color from. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + + @throws com::sun::star::lang::IndexOutOfBoundsException + if the given position is outside the permissible bitmap area. + */ + sequence getPixel( [out] FloatingPointBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerPoint2D pos ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Query the memory layout for this bitmap + + Please note that for volatile bitmaps, the memory layout might + change between subsequent calls. + */ + FloatingPointBitmapLayout getMemoryLayout(); +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/rendering/XIeeeFloatReadOnlyBitmap.idl b/offapi/com/sun/star/rendering/XIeeeFloatReadOnlyBitmap.idl new file mode 100644 index 000000000000..4d375a61541f --- /dev/null +++ b/offapi/com/sun/star/rendering/XIeeeFloatReadOnlyBitmap.idl @@ -0,0 +1,138 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XIeeeFloatReadOnlyBitmap.idl,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: thb $ $Date: 2007-06-26 11:36:55 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 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 + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XIeeeFloatReadOnlyBitmap_idl__ +#define __com_sun_star_rendering_XIeeeFloatReadOnlyBitmap_idl__ + +#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ +#include +#endif +#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_FloatingPointBitmapLayout_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerPoint2D_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerRectangle2D_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_XBitmap_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_VolatileContentDestroyedException_idl__ +#include +#endif + + +module com { module sun { module star { module rendering { + +/** Specialized interface for bitmaps containing IEEE floats as their + color components. In contrast to XIeeeFloatBitmap, + this interface only permits read-only access.

+ + Use this interface for e.g. bitmaps that are calculated + on-the-fly, or that are pure functional. + */ +interface XIeeeFloatReadOnlyBitmap : XBitmap +{ + /** Query the raw data of this bitmap. + + Query the raw data of this bitmap, in the format as defined by + getMemoryLayout(). With the given rectangle, a subset of the + whole bitmap can be queried. When querying subsets of the + bitmap, the same scanline padding takes place as when the + whole bitmap is requested. + + Note that the bitmap memory layout might change for volatile + bitmaps.

+ + @param bitmapLayout + The memory layout the returned data is in. + + @param rect + A rectangle, within the bounds of the bitmap, to retrieve the + contens from. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + + @throws com::sun::star::lang::IndexOutOfBoundsException + if parts of the given rectangle are outside the permissible + bitmap area. + */ + sequence getData( [out] FloatingPointBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerRectangle2D rect ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Get a single pixel of the bitmap, returning its color + value. + + Note that the bitmap memory layout might change for volatile + bitmaps.

+ + @param bitmapLayout + The memory layout the returned data is in. + + @param pos + A position, within the bounds of the bitmap, to retrieve the + color from. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + + @throws com::sun::star::lang::IndexOutOfBoundsException + if the given position is outside the permissible bitmap area. + */ + sequence getPixel( [out] FloatingPointBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerPoint2D pos ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Query the memory layout for this bitmap + + Please note that for volatile bitmaps, the memory layout might + change between subsequent calls. + */ + FloatingPointBitmapLayout getMemoryLayout(); +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/rendering/XIntegerReadOnlyBitmap.idl b/offapi/com/sun/star/rendering/XIntegerReadOnlyBitmap.idl new file mode 100644 index 000000000000..a48fd0d28e38 --- /dev/null +++ b/offapi/com/sun/star/rendering/XIntegerReadOnlyBitmap.idl @@ -0,0 +1,157 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XIntegerReadOnlyBitmap.idl,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: thb $ $Date: 2007-06-26 11:36:55 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 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 + * + ************************************************************************/ +#ifndef __com_sun_star_rendering_XIntegerReadOnlyBitmap_idl__ +#define __com_sun_star_rendering_XIntegerReadOnlyBitmap_idl__ + +#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ +#include +#endif +#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerPoint2D_idl__ +#include +#endif +#ifndef __com_sun_star_geometry_IntegerRectangle2D_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_IntegerBitmapLayout_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_XBitmap_idl__ +#include +#endif +#ifndef __com_sun_star_rendering_VolatileContentDestroyedException_idl__ +#include +#endif + + +module com { module sun { module star { module rendering { + +interface XBitmapPalette; + +/** This is a specialized interface for bitmaps having integer color + channels. In contrast to XIntegerBitmap, this + interface only permits read-only access.

+ + Use this interface for e.g. bitmaps that are calculated + on-the-fly, or that are pure functional. + */ +interface XIntegerReadOnlyBitmap : XBitmap +{ + /** Query the raw data of this bitmap.

+ + Query the raw data of this bitmap, in the format as defined by + getMemoryLayout(). With the given rectangle, a subset of the + whole bitmap can be queried. If the internal data format's + pixel are not integer multiples of bytes (i.e. if one pixel + occupies less than a byte), the leftover content of the bytes + at the right of each scanline is filled with zeros. When + querying subsets of the bitmap, the same scanline padding + takes place as when the whole bitmap is requested.

+ + Note that the bitmap memory layout might change for volatile + bitmaps.

+ + @param bitmapLayout + The memory layout the returned data is in. + + @param rect + A rectangle, within the bounds of the bitmap, to retrieve the + contens from. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + + @throws com::sun::star::lang::IndexOutOfBoundsException + if parts of the given rectangle are outside the permissible + bitmap area. + */ + sequence getData( [out] IntegerBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerRectangle2D rect ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Get a single pixel of the bitmap, returning its color + value. + + If the internal data format's pixel are not integer multiples + of bytes (i.e. if one pixel occupies less than a byte), the + color value is returned in the least significant bits of the + single byte returned as the color. + + Note that the bitmap memory layout might change for volatile + bitmaps.

+ + @param bitmapLayout + The memory layout the returned data is in. + + @param pos + A position, within the bounds of the bitmap, to retrieve the + color from. + + @throws VolatileContentDestroyedException + if the bitmap is volatile, and the content has been destroyed by the system. + + @throws com::sun::star::lang::IndexOutOfBoundsException + if the given position is outside the permissible bitmap area. + */ + sequence getPixel( [out] IntegerBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerPoint2D pos ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + VolatileContentDestroyedException); + + //------------------------------------------------------------------------- + + /** Query the associated palette for this bitmap. + + Returns empty interface or interface with empty palette for + non-paletted bitmaps. + */ + XBitmapPalette getPalette(); + + //------------------------------------------------------------------------- + + /** Query the memory layout for this bitmap.

+ + Please note that for volatile bitmaps, the memory layout might + change between subsequent calls. + */ + IntegerBitmapLayout getMemoryLayout(); +}; + +}; }; }; }; + +#endif -- cgit