1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_awt_FontUnderline_idl__
24#define __com_sun_star_awt_FontUnderline_idl__
25
26
27//=============================================================================
28
29 module com {  module sun {  module star {  module awt {
30
31//=============================================================================
32
33/** These values are used to specify the kind of underlining.
34
35	<p>They may be expanded in future versions.</p>
36 */
37published constants FontUnderline
38{
39	//-------------------------------------------------------------------------
40
41	/** specifies no underlining.
42	 */
43	const short NONE = 0;
44
45	//-------------------------------------------------------------------------
46
47	/** specifies underlining with a single line.
48     */
49	const short SINGLE = 1;
50
51	//-------------------------------------------------------------------------
52
53	/** specifies underlining with a double line.
54     */
55	const short DOUBLE = 2;
56
57	//-------------------------------------------------------------------------
58
59	/** specifies underlining with a dotted line.
60     */
61	const short DOTTED = 3;
62
63	//-------------------------------------------------------------------------
64
65	/** The kind of underlining is not known.
66	 */
67	const short DONTKNOW = 4;
68
69	//-------------------------------------------------------------------------
70
71	/** specifies underlining with a dashed line.
72     */
73	const short DASH = 5;
74
75	//-------------------------------------------------------------------------
76
77	/** specifies underlining with long dashes.
78     */
79	const short LONGDASH = 6;
80
81	//-------------------------------------------------------------------------
82
83	/** specifies underlining with a dash and dot sequence.
84     */
85	const short DASHDOT = 7;
86
87	//-------------------------------------------------------------------------
88
89	/** specifies underlining with a dash, dot, dot sequence.
90     */
91	const short DASHDOTDOT = 8;
92
93	//-------------------------------------------------------------------------
94
95	/** specifies underlining with a small wave.
96     */
97	const short SMALLWAVE = 9;
98
99	//-------------------------------------------------------------------------
100
101	/** specifies underlining with a wave.
102     */
103	const short WAVE = 10;
104
105	//-------------------------------------------------------------------------
106
107	/** specifies underlining with a double wave.
108     */
109	const short DOUBLEWAVE = 11;
110
111	//-------------------------------------------------------------------------
112
113	/** specifies underlining with a bold line.
114     */
115	const short BOLD = 12;
116
117	//-------------------------------------------------------------------------
118
119	/** specifies underlining with bold dots.
120     */
121	const short BOLDDOTTED = 13;
122
123	//-------------------------------------------------------------------------
124
125	/** specifies underlining with bold dashes.
126     */
127	const short BOLDDASH = 14;
128
129	//-------------------------------------------------------------------------
130
131	/** specifies underlining with long bold dashes.
132     */
133	const short BOLDLONGDASH = 15;
134
135	//-------------------------------------------------------------------------
136
137	/** specifies underlining with a dash and dot sequence in bold.
138     */
139	const short BOLDDASHDOT = 16;
140
141	//-------------------------------------------------------------------------
142
143	/** specifies underlining with a dash, dot, dot sequence in bold.
144     */
145	const short BOLDDASHDOTDOT = 17;
146
147	//-------------------------------------------------------------------------
148
149	/** specifies underlining with a bold wave.
150     */
151	const short BOLDWAVE = 18;
152
153};
154
155//=============================================================================
156
157}; }; }; };
158
159#endif
160