1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_awt_FontUnderline_idl__
20 #define __com_sun_star_awt_FontUnderline_idl__
24 module com
{ module sun
{ module star
{ module awt
{
27 /** These values are used to specify the kind of underlining.
29 <p>They may be expanded in future versions.</p>
31 published constants FontUnderline
34 /** specifies no underlining.
39 /** specifies underlining with a single line.
41 const short SINGLE
= 1;
44 /** specifies underlining with a double line.
46 const short DOUBLE = 2;
49 /** specifies underlining with a dotted line.
51 const short DOTTED
= 3;
54 /** The kind of underlining is not known.
56 const short DONTKNOW
= 4;
59 /** specifies underlining with a dashed line.
64 /** specifies underlining with long dashes.
66 const short LONGDASH
= 6;
69 /** specifies underlining with a dash and dot sequence.
71 const short DASHDOT
= 7;
74 /** specifies underlining with a dash, dot, dot sequence.
76 const short DASHDOTDOT
= 8;
79 /** specifies underlining with a small wave.
81 const short SMALLWAVE
= 9;
84 /** specifies underlining with a wave.
86 const short WAVE
= 10;
89 /** specifies underlining with a double wave.
91 const short DOUBLEWAVE
= 11;
94 /** specifies underlining with a bold line.
96 const short BOLD
= 12;
99 /** specifies underlining with bold dots.
101 const short BOLDDOTTED
= 13;
104 /** specifies underlining with bold dashes.
106 const short BOLDDASH
= 14;
109 /** specifies underlining with long bold dashes.
111 const short BOLDLONGDASH
= 15;
114 /** specifies underlining with a dash and dot sequence in bold.
116 const short BOLDDASHDOT
= 16;
119 /** specifies underlining with a dash, dot, dot sequence in bold.
121 const short BOLDDASHDOTDOT
= 17;
124 /** specifies underlining with a bold wave.
126 const short BOLDWAVE
= 18;
135 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */