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: XIntegerReadOnlyBitmap.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_rendering_XIntegerReadOnlyBitmap_idl__
31 #define __com_sun_star_rendering_XIntegerReadOnlyBitmap_idl__
33 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
34 #include
<com
/sun
/star
/lang
/IllegalArgumentException.idl
>
36 #ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__
37 #include
<com
/sun
/star
/lang
/IndexOutOfBoundsException.idl
>
39 #ifndef __com_sun_star_geometry_IntegerPoint2D_idl__
40 #include
<com
/sun
/star
/geometry
/IntegerPoint2D.idl
>
42 #ifndef __com_sun_star_geometry_IntegerRectangle2D_idl__
43 #include
<com
/sun
/star
/geometry
/IntegerRectangle2D.idl
>
45 #ifndef __com_sun_star_rendering_IntegerBitmapLayout_idl__
46 #include
<com
/sun
/star
/rendering
/IntegerBitmapLayout.idl
>
48 #ifndef __com_sun_star_rendering_XBitmap_idl__
49 #include
<com
/sun
/star
/rendering
/XBitmap.idl
>
51 #ifndef __com_sun_star_rendering_VolatileContentDestroyedException_idl__
52 #include
<com
/sun
/star
/rendering
/VolatileContentDestroyedException.idl
>
56 module com
{ module sun
{ module star
{ module rendering
{
58 interface XBitmapPalette
;
60 /** This is a specialized interface for bitmaps having integer color
61 channels. In contrast to <type>XIntegerBitmap</type>, this
62 interface only permits read-only access.<p>
64 Use this interface for e.g. bitmaps that are calculated
65 on-the-fly, or that are pure functional, and thus cannot be
68 If you get passed an instance of
69 <type>XIntegerReadOnlyBitmap</type> that also supports the
70 <type>XVolatileBitmap</type> interface, things become a bit more
71 complicated. When reading data, one has to check for both
72 <type>VolatileContentDestroyedException</type> and mismatching
73 <type>IntegerBitmapLayout</type> return values. If either of them
74 occurs, the whole bitmap read operation should be repeated, if you
75 need consistent information.<p>
77 interface XIntegerReadOnlyBitmap
: XBitmap
79 /** Query the raw data of this bitmap.<p>
81 Query the raw data of this bitmap, in the format as defined by
82 getMemoryLayout(). With the given rectangle, a subset of the
83 whole bitmap can be queried. If the internal data format's
84 pixel are not integer multiples of bytes (i.e. if one pixel
85 occupies less than a byte), the leftover content of the bytes
86 at the right of each scanline is filled with zeros. The
87 details of the scanline padding are to be retrieved from the
88 passed bitmap layout.<p>
90 Note that the bitmap memory layout might change over time for
94 The memory layout the returned data is in. Note that the color
95 space returned therein needs to always match the current color
96 space as would have been returned by getMemoryLayout(). This
97 is necessary to ensure correct operation under changing
98 <type>XVolatileBitmap</type>.
101 A rectangle, within the bounds of the bitmap, to retrieve the
104 @throws <type>VolatileContentDestroyedException</type>
105 if the bitmap is volatile, and the content has been destroyed by the system.
107 @throws <type>com::sun::star::lang::IndexOutOfBoundsException</type>
108 if parts of the given rectangle are outside the permissible
111 sequence
<byte> getData
( [out] IntegerBitmapLayout bitmapLayout
, [in] ::com
::sun
::star
::geometry
::IntegerRectangle2D rect
)
112 raises
(com
::sun
::star
::lang
::IndexOutOfBoundsException
,
113 VolatileContentDestroyedException
);
115 //-------------------------------------------------------------------------
117 /** Get a single pixel of the bitmap, returning its color
120 If the internal data format's pixel are not integer multiples
121 of bytes (i.e. if one pixel occupies less than a byte - the
122 case of more than one byte per pixel is not specified), the
123 color value is returned in the least significant bits of the
124 single byte returned as the color. The details of the returned
125 pixel data are to be retrieved from the passed bitmap layout.<p>
127 Note that the bitmap memory layout might change for volatile
131 The memory layout the returned data is in. Note that the color
132 space returned therein needs to always match the current color
133 space as would have been returned by getMemoryLayout(). This
134 is necessary to ensure correct operation under changing
135 <type>XVolatileBitmap</type>.
138 A position, within the bounds of the bitmap, to retrieve the
141 @throws <type>VolatileContentDestroyedException</type>
142 if the bitmap is volatile, and the content has been destroyed by the system.
144 @throws <type>com::sun::star::lang::IndexOutOfBoundsException</type>
145 if the given position is outside the permissible bitmap area.
147 sequence
<byte> getPixel
( [out] IntegerBitmapLayout bitmapLayout
, [in] ::com
::sun
::star
::geometry
::IntegerPoint2D pos
)
148 raises
(com
::sun
::star
::lang
::IndexOutOfBoundsException
,
149 VolatileContentDestroyedException
);
151 //-------------------------------------------------------------------------
153 /** Query the memory layout for this bitmap.<p>
155 Please note that for volatile bitmaps, the memory layout might
156 change between subsequent calls.<p>
158 IntegerBitmapLayout getMemoryLayout
();