update dev300-m58
[ooovba.git] / vcl / aqua / inc / salconst.h
blob89499498528dffebb1c9b10a2393a1d1befb9819
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: salconst.h,v $
10 * $Revision: 1.4 $
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 ************************************************************************/
31 #ifndef _SV_SALCONST_H
32 #define _SV_SALCONST_H
34 // -------------------
35 // - Constants -
36 // -------------------
38 static const unsigned short kByteMask = 0xFF;
40 static const unsigned short kOneByte = 8;
41 static const unsigned short kTwoBytes = 16;
43 static const unsigned short kOneBit = 1;
44 static const unsigned short kFiveBits = 5;
45 static const unsigned short kEightBits = 8;
46 static const unsigned short kTenBits = 10;
47 static const unsigned short kElevenBits = 11;
49 static const unsigned short kBlackAndWhite = 1;
50 static const unsigned short kFourBitColor = 4;
51 static const unsigned short kEightBitColor = 8;
52 static const unsigned short kThousandsColor = 16;
53 static const unsigned short kTrueColor = 32;
55 static const unsigned long k16BitRedColorMask = 0x00007c00;
56 static const unsigned long k16BitGreenColorMask = 0x000003e0;
57 static const unsigned long k16BitBlueColorMask = 0x0000001f;
59 static const unsigned long k32BitRedColorMask = 0x00ff0000;
60 static const unsigned long k32BitGreenColorMask = 0x0000ff00;
61 static const unsigned long k32BitBlueColorMask = 0x000000ff;
63 static const unsigned short kPixMapCmpSizeOneBit = 1;
64 static const unsigned short kPixMapCmpSizeFourBits = 4;
65 static const unsigned short kPixMapCmpSizeFiveBits = 5;
66 static const unsigned short kPixMapCmpSizeEightBits = 8;
68 static const long kPixMapHRes = 72;
69 static const long kPixMapVRes = 72;
71 #endif // _SV_SALCONST_H