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_awt_FontUnderline_idl__
28#define __com_sun_star_awt_FontUnderline_idl__
29
30
31//=============================================================================
32
33 module com {  module sun {  module star {  module awt {
34
35//=============================================================================
36
37/** These values are used to specify the kind of underlining.
38
39	<p>They may be expanded in future versions.</p>
40 */
41published constants FontUnderline
42{
43	//-------------------------------------------------------------------------
44
45	/** specifies no underlining.
46	 */
47	const short NONE = 0;
48
49	//-------------------------------------------------------------------------
50
51	/** specifies underlining with a single line.
52     */
53	const short SINGLE = 1;
54
55	//-------------------------------------------------------------------------
56
57	/** specifies underlining with a double line.
58     */
59	const short DOUBLE = 2;
60
61	//-------------------------------------------------------------------------
62
63	/** specifies underlining with a dotted line.
64     */
65	const short DOTTED = 3;
66
67	//-------------------------------------------------------------------------
68
69	/** The kind of underlining is not known.
70	 */
71	const short DONTKNOW = 4;
72
73	//-------------------------------------------------------------------------
74
75	/** specifies underlining with a dashed line.
76     */
77	const short DASH = 5;
78
79	//-------------------------------------------------------------------------
80
81	/** specifies underlining with long dashes.
82     */
83	const short LONGDASH = 6;
84
85	//-------------------------------------------------------------------------
86
87	/** specifies underlining with a dash and dot sequence.
88     */
89	const short DASHDOT = 7;
90
91	//-------------------------------------------------------------------------
92
93	/** specifies underlining with a dash, dot, dot sequence.
94     */
95	const short DASHDOTDOT = 8;
96
97	//-------------------------------------------------------------------------
98
99	/** specifies underlining with a small wave.
100     */
101	const short SMALLWAVE = 9;
102
103	//-------------------------------------------------------------------------
104
105	/** specifies underlining with a wave.
106     */
107	const short WAVE = 10;
108
109	//-------------------------------------------------------------------------
110
111	/** specifies underlining with a double wave.
112     */
113	const short DOUBLEWAVE = 11;
114
115	//-------------------------------------------------------------------------
116
117	/** specifies underlining with a bold line.
118     */
119	const short BOLD = 12;
120
121	//-------------------------------------------------------------------------
122
123	/** specifies underlining with bold dots.
124     */
125	const short BOLDDOTTED = 13;
126
127	//-------------------------------------------------------------------------
128
129	/** specifies underlining with bold dashes.
130     */
131	const short BOLDDASH = 14;
132
133	//-------------------------------------------------------------------------
134
135	/** specifies underlining with long bold dashes.
136     */
137	const short BOLDLONGDASH = 15;
138
139	//-------------------------------------------------------------------------
140
141	/** specifies underlining with a dash and dot sequence in bold.
142     */
143	const short BOLDDASHDOT = 16;
144
145	//-------------------------------------------------------------------------
146
147	/** specifies underlining with a dash, dot, dot sequence in bold.
148     */
149	const short BOLDDASHDOTDOT = 17;
150
151	//-------------------------------------------------------------------------
152
153	/** specifies underlining with a bold wave.
154     */
155	const short BOLDWAVE = 18;
156
157};
158
159//=============================================================================
160
161}; }; }; };
162
163#endif
164