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: BlendMode.idl,v $
13 * This file is part of OpenOffice.org.
15 * OpenOffice.org is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License version 3
17 * only, as published by the Free Software Foundation.
19 * OpenOffice.org is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Lesser General Public License version 3 for more details
23 * (a copy is included in the LICENSE file that accompanied this code).
25 * You should have received a copy of the GNU Lesser General Public License
26 * version 3 along with OpenOffice.org. If not, see
27 * <http://www.openoffice.org/license.html>
28 * for a copy of the LGPLv3 License.
30 ************************************************************************/
31 #ifndef __com_sun_star_rendering_BlendMode_idl__
32 #define __com_sun_star_rendering_BlendMode_idl__
34 module com
{ module sun
{ module star
{ module rendering
{
36 /** These constants determine some extra ways how the primitive color
37 is combined with the background.<p>
39 @see <type>CompositeOperation</type>
41 Please refer to the PDF specification for explanations of this
46 const byte NORMAL
= 0;
47 const byte MULTIPLY
= 1;
48 const byte SCREEN
= 2;
49 const byte OVERLAY
= 3;
50 const byte DARKEN
= 4;
51 const byte LIGHTEN
= 5;
52 const byte COLOR_DODGE
= 6;
53 const byte COLOR_BURN
= 7;
54 const byte HARD_LIGHT
= 8;
55 const byte SOFT_LIGHT
= 9;
56 const byte DIFFERENCE
= 10;
57 const byte EXCLUSION
= 11;
59 const byte SATURATION
= 13;
60 const byte COLOR
= 14;
61 const byte LUMINOSITY
= 15;