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_util_MeasureUnit_idl__ 28#define __com_sun_star_util_MeasureUnit_idl__ 29 30 31//============================================================================= 32 33module com { module sun { module star { module util { 34 35//============================================================================= 36 37/** These constants are used to specify a measure.<p> 38 A component using these constants may not support all units. 39 */ 40published constants MeasureUnit 41{ 42 /** all measures for this component are in 100th millimeter */ 43 const short MM_100TH = 0; 44 45 /** all measures for this component are in 10th millimeter */ 46 const short MM_10TH = 1; 47 48 /** all measures for this component are in millimeter */ 49 const short MM = 2; 50 51 /** all measures for this component are in centimeters */ 52 const short CM = 3; 53 54 /** all measures for this component are in 1000th inch */ 55 const short INCH_1000TH = 4; 56 57 /** all measures for this component are in 100th inch */ 58 const short INCH_100TH = 5; 59 60 /** all measures for this component are in 10th inch */ 61 const short INCH_10TH = 6; 62 63 /** all measures for this component are in inch */ 64 const short INCH = 7; 65 66 /** all measures for this component are in points */ 67 const short POINT = 8; 68 69 /** all measures for this component are in twips */ 70 const short TWIP = 9; 71 72 /** all measures for this component are in meters */ 73 const short M = 10; 74 75 /** all measures for this component are in kilometers */ 76 const short KM = 11; 77 78 /** all measures for this component are in pica */ 79 const short PICA = 12; 80 81 /** all measures for this component are in foot */ 82 const short FOOT = 13; 83 84 /** all measures for this component are in miles */ 85 const short MILE = 14; 86 87 /** all measures for this component are in percentage */ 88 const short PERCENT = 15; 89 90 /** all measures for this component are in pixel */ 91 const short PIXEL = 16; 92 93 /** all measures for this component are in APPFONT */ 94 const short APPFONT = 17; 95 96 /** all measures for this component are in SYSFONT */ 97 const short SYSFONT = 18; 98 99}; 100 101//============================================================================= 102 103}; }; }; }; 104 105#endif 106 107