Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / awt / FontUnderline.idl
blob62f1095d5afa7d398538d46a3e6101b9fefd8e37
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: FontUnderline.idl,v $
10 * $Revision: 1.11 $
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 ************************************************************************/
30 #ifndef __com_sun_star_awt_FontUnderline_idl__
31 #define __com_sun_star_awt_FontUnderline_idl__
34 //=============================================================================
36 module com { module sun { module star { module awt {
38 //=============================================================================
40 /** These values are used to specify the kind of underlining.
42 <p>They may be expanded in future versions.</p>
44 published constants FontUnderline
46 //-------------------------------------------------------------------------
48 /** specifies no underlining.
50 const short NONE = 0;
52 //-------------------------------------------------------------------------
54 /** specifies underlining with a single line.
55 */
56 const short SINGLE = 1;
58 //-------------------------------------------------------------------------
60 /** specifies underlining with a double line.
61 */
62 const short DOUBLE = 2;
64 //-------------------------------------------------------------------------
66 /** specifies underlining with a dotted line.
67 */
68 const short DOTTED = 3;
70 //-------------------------------------------------------------------------
72 /** The kind of underlining is not known.
74 const short DONTKNOW = 4;
76 //-------------------------------------------------------------------------
78 /** specifies underlining with a dashed line.
79 */
80 const short DASH = 5;
82 //-------------------------------------------------------------------------
84 /** specifies underlining with long dashes.
85 */
86 const short LONGDASH = 6;
88 //-------------------------------------------------------------------------
90 /** specifies underlining with a dash and dot sequence.
91 */
92 const short DASHDOT = 7;
94 //-------------------------------------------------------------------------
96 /** specifies underlining with a dash, dot, dot sequence.
97 */
98 const short DASHDOTDOT = 8;
100 //-------------------------------------------------------------------------
102 /** specifies underlining with a small wave.
104 const short SMALLWAVE = 9;
106 //-------------------------------------------------------------------------
108 /** specifies underlining with a wave.
110 const short WAVE = 10;
112 //-------------------------------------------------------------------------
114 /** specifies underlining with a double wave.
116 const short DOUBLEWAVE = 11;
118 //-------------------------------------------------------------------------
120 /** specifies underlining with a bold line.
122 const short BOLD = 12;
124 //-------------------------------------------------------------------------
126 /** specifies underlining with bold dots.
128 const short BOLDDOTTED = 13;
130 //-------------------------------------------------------------------------
132 /** specifies underlining with bold dashes.
134 const short BOLDDASH = 14;
136 //-------------------------------------------------------------------------
138 /** specifies underlining with long bold dashes.
140 const short BOLDLONGDASH = 15;
142 //-------------------------------------------------------------------------
144 /** specifies underlining with a dash and dot sequence in bold.
146 const short BOLDDASHDOT = 16;
148 //-------------------------------------------------------------------------
150 /** specifies underlining with a dash, dot, dot sequence in bold.
152 const short BOLDDASHDOTDOT = 17;
154 //-------------------------------------------------------------------------
156 /** specifies underlining with a bold wave.
158 const short BOLDWAVE = 18;
162 //=============================================================================
164 }; }; }; };
166 #endif