1d1766043SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5d1766043SAndrew Rist * distributed with this work for additional information 6d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10d1766043SAndrew Rist * 11d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12d1766043SAndrew Rist * 13d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14d1766043SAndrew Rist * software distributed under the License is distributed on an 15d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17d1766043SAndrew Rist * specific language governing permissions and limitations 18d1766043SAndrew Rist * under the License. 19d1766043SAndrew Rist * 20d1766043SAndrew Rist *************************************************************/ 21d1766043SAndrew Rist 22d1766043SAndrew Rist 23cdf0e10cSrcweir#ifndef __com_sun_star_rendering_XIntegerBitmap_idl__ 24cdf0e10cSrcweir#define __com_sun_star_rendering_XIntegerBitmap_idl__ 25cdf0e10cSrcweir 26cdf0e10cSrcweir#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ 27cdf0e10cSrcweir#include <com/sun/star/lang/IllegalArgumentException.idl> 28cdf0e10cSrcweir#endif 29cdf0e10cSrcweir#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ 30cdf0e10cSrcweir#include <com/sun/star/lang/IndexOutOfBoundsException.idl> 31cdf0e10cSrcweir#endif 32cdf0e10cSrcweir#ifndef __com_sun_star_geometry_IntegerPoint2D_idl__ 33cdf0e10cSrcweir#include <com/sun/star/geometry/IntegerPoint2D.idl> 34cdf0e10cSrcweir#endif 35cdf0e10cSrcweir#ifndef __com_sun_star_geometry_IntegerRectangle2D_idl__ 36cdf0e10cSrcweir#include <com/sun/star/geometry/IntegerRectangle2D.idl> 37cdf0e10cSrcweir#endif 38cdf0e10cSrcweir#ifndef __com_sun_star_rendering_IntegerBitmapLayout_idl__ 39cdf0e10cSrcweir#include <com/sun/star/rendering/IntegerBitmapLayout.idl> 40cdf0e10cSrcweir#endif 41cdf0e10cSrcweir#ifndef __com_sun_star_rendering_XIntegerReadOnlyBitmap_idl__ 42cdf0e10cSrcweir#include <com/sun/star/rendering/XIntegerReadOnlyBitmap.idl> 43cdf0e10cSrcweir#endif 44cdf0e10cSrcweir 45cdf0e10cSrcweir 46cdf0e10cSrcweirmodule com { module sun { module star { module rendering { 47cdf0e10cSrcweir 48cdf0e10cSrcweir/** This is a specialized interface for bitmaps having integer color 49cdf0e10cSrcweir channels.<p> 50cdf0e10cSrcweir 51*d695a2a0SJürgen Schmidt @since OpenOffice 2.0 52cdf0e10cSrcweir */ 53cdf0e10cSrcweirinterface XIntegerBitmap : XIntegerReadOnlyBitmap 54cdf0e10cSrcweir{ 55cdf0e10cSrcweir //------------------------------------------------------------------------- 56cdf0e10cSrcweir 57cdf0e10cSrcweir /** Set raw data of a bitmap.<p> 58cdf0e10cSrcweir 59cdf0e10cSrcweir Set raw data of a bitmap, in the format as defined by 60cdf0e10cSrcweir getMemoryLayout(). With the given rectangle, a subset of the 61cdf0e10cSrcweir bitmap can be changed. If the internal data format's pixel are 62cdf0e10cSrcweir not integer multiples of bytes (i.e. if one pixel occupies 63cdf0e10cSrcweir less than a byte), the leftover content of the bytes at the 64cdf0e10cSrcweir right of each scanline is ignored and left unchanged in the 65cdf0e10cSrcweir bitmap. When setting subsets of the bitmap, the same scanline 66cdf0e10cSrcweir padding takes place as when the whole bitmap is changed.<p> 67cdf0e10cSrcweir 68cdf0e10cSrcweir When setting data on volatile bitmaps, always call isValid() 69cdf0e10cSrcweir before, and retrieve a new memory layout via 70cdf0e10cSrcweir getMemoryLayout(). At least under Windows, the memory layout 71cdf0e10cSrcweir can change for the same bitmap, if the user e.g. switches the 72cdf0e10cSrcweir screen resolution. Thus, this method will throw an 73cdf0e10cSrcweir IllegalArgumentException, if the memory layout changed between 74cdf0e10cSrcweir a call to getMemoryLayout() and setData(). 75cdf0e10cSrcweir 76cdf0e10cSrcweir @param data 77cdf0e10cSrcweir Data to set 78cdf0e10cSrcweir 79cdf0e10cSrcweir @param bitmapLayout 80cdf0e10cSrcweir Layout of the data to set. Must match this bitmap's current 81cdf0e10cSrcweir layout. 82cdf0e10cSrcweir 83cdf0e10cSrcweir @param rect 84cdf0e10cSrcweir Destination rectangle, within the bounds of the bitmap, to set 85cdf0e10cSrcweir the data in. 86cdf0e10cSrcweir 87cdf0e10cSrcweir @throws <type>com::sun::star::lang::IndexOutOfBoundsException</type> 88cdf0e10cSrcweir if parts of the given rectangle are outside the permissible 89cdf0e10cSrcweir bitmap area. 90cdf0e10cSrcweir 91cdf0e10cSrcweir @throws <type>com::sun::star::lang::IllegalArgumentException</type> 92cdf0e10cSrcweir if the given memory layout does not match this bitmap's 93cdf0e10cSrcweir layout, or if the given data sequence has too few or too many 94cdf0e10cSrcweir elements. 95cdf0e10cSrcweir */ 96cdf0e10cSrcweir void setData( [in] sequence<byte> data, [in] IntegerBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerRectangle2D rect ) 97cdf0e10cSrcweir raises (com::sun::star::lang::IllegalArgumentException, 98cdf0e10cSrcweir com::sun::star::lang::IndexOutOfBoundsException); 99cdf0e10cSrcweir 100cdf0e10cSrcweir //------------------------------------------------------------------------- 101cdf0e10cSrcweir 102cdf0e10cSrcweir /** Set a single pixel of the bitmap with the given color 103cdf0e10cSrcweir value.<p> 104cdf0e10cSrcweir 105cdf0e10cSrcweir If the internal data format's pixel are not integer multiples 106cdf0e10cSrcweir of bytes (i.e. if one pixel occupies less than a byte), the 107cdf0e10cSrcweir color value is expected in the least significant bits of the 108cdf0e10cSrcweir single byte given as the color.<p> 109cdf0e10cSrcweir 110cdf0e10cSrcweir When setting data on volatile bitmaps, always call isValid() 111cdf0e10cSrcweir before, and retrieve a new memory layout via 112cdf0e10cSrcweir getMemoryLayout(). At least under Windows, the memory layout 113cdf0e10cSrcweir can change for the same bitmap, if the user e.g. switches the 114cdf0e10cSrcweir screen resolution. Thus, this method will throw an 115cdf0e10cSrcweir IllegalArgumentException, if the memory layout changed between 116cdf0e10cSrcweir a call to getMemoryLayout() and setPixel(). 117cdf0e10cSrcweir 118cdf0e10cSrcweir @param color 119cdf0e10cSrcweir The color value(s) to set 120cdf0e10cSrcweir 121cdf0e10cSrcweir @param bitmapLayout 122cdf0e10cSrcweir Layout of the color elements to set. Must match this bitmap's 123cdf0e10cSrcweir current layout. 124cdf0e10cSrcweir 125cdf0e10cSrcweir @param pos 126cdf0e10cSrcweir Pixel position with the bounds of the bitmap to set. 127cdf0e10cSrcweir 128cdf0e10cSrcweir @throws <type>com::sun::star::lang::IndexOutOfBoundsException</type> 129cdf0e10cSrcweir if the given point is outside the permissible bitmap area. 130cdf0e10cSrcweir 131cdf0e10cSrcweir @throws <type>com::sun::star::lang::IllegalArgumentException</type> 132cdf0e10cSrcweir if the given memory layout does not match this bitmap's 133cdf0e10cSrcweir layout, or if the given data sequence has too few or too many 134cdf0e10cSrcweir elements. 135cdf0e10cSrcweir */ 136cdf0e10cSrcweir void setPixel( [in] sequence<byte> color, [in] IntegerBitmapLayout bitmapLayout, [in] ::com::sun::star::geometry::IntegerPoint2D pos ) 137cdf0e10cSrcweir raises (com::sun::star::lang::IllegalArgumentException, 138cdf0e10cSrcweir com::sun::star::lang::IndexOutOfBoundsException); 139cdf0e10cSrcweir}; 140cdf0e10cSrcweir 141cdf0e10cSrcweir}; }; }; }; 142cdf0e10cSrcweir 143cdf0e10cSrcweir#endif 144