xref: /trunk/main/offapi/com/sun/star/embed/EmbedMapUnits.idl (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_embed_EmbedMapUnits_idl__
28#define __com_sun_star_embed_EmbedMapUnits_idl__
29
30
31//============================================================================
32
33module com { module sun { module star { module embed {
34
35//============================================================================
36/** contains list of possible map modes supported by embedded object.
37
38    @see XVisualObject
39*/
40published constants EmbedMapUnits
41{
42    // ----------------------------------------------------------------------
43    /** In this type of map mode one logical point is equal to one-hundredth
44        of milimetre.
45     */
46    const long ONE_100TH_MM = 0;
47
48    // ----------------------------------------------------------------------
49    /** In this type of map mode one logical point is equal to one-tenth
50        of milimetre.
51     */
52    const long ONE_10TH_MM = 1;
53
54    // ----------------------------------------------------------------------
55    /** In this type of map mode one logical point is equal to one
56        milimetre.
57     */
58    const long ONE_MM = 2;
59
60    // ----------------------------------------------------------------------
61    /** In this type of map mode one logical point is equal to one
62        centimetre.
63     */
64    const long ONE_CM = 3;
65
66    // ----------------------------------------------------------------------
67    /** In this type of map mode one logical point is equal to one-thousandth
68        of inch.
69     */
70    const long ONE_1000TH_INCH = 4;
71
72    // ----------------------------------------------------------------------
73    /** In this type of map mode one logical point is equal to one-hundredth
74        of inch.
75     */
76    const long ONE_100TH_INCH = 5;
77
78    // ----------------------------------------------------------------------
79    /** In this type of map mode one logical point is equal to one-tenth
80        of inch.
81     */
82    const long ONE_10TH_INCH = 6;
83
84    // ----------------------------------------------------------------------
85    /** In this type of map mode one logical point is equal to one inch.
86     */
87    const long ONE_INCH = 7;
88
89    // ----------------------------------------------------------------------
90    /** In this type of map mode one logical point is equal to one
91        typographical point.
92     */
93    const long POINT = 8;
94
95    // ----------------------------------------------------------------------
96    /** In this type of map mode one logical point is equal to one twentieth
97        of typographical point.
98     */
99    const long TWIP = 9;
100
101    // ----------------------------------------------------------------------
102    /** In this type of map mode one logical point is equal to one pixel.
103     */
104    const long PIXEL = 10;
105};
106
107//=============================================================================
108
109}; }; }; };
110
111#endif
112
113