Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / rendering / EmphasisMark.idl
blobed918a2637e86ca42b005253a8a79dda5424c8d3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_rendering_EmphasisMark_idl__
20 #define __com_sun_star_rendering_EmphasisMark_idl__
22 module com { module sun { module star { module rendering {
24 /** These constants control the automatic rendering of emphasis marks.<p>
26 These constants control the automatic rendering of emphasis marks
27 for a given font.<p>
29 @since OOo 2.0
31 constants EmphasisMark
33 /// No automatic emphasis marks
34 const byte NONE = 0;
37 /// Automatic emphasis marks as dots above the glyphs
38 const byte DOT_ABOVE = 1;
41 /// Automatic emphasis marks as dots below the glyphs
42 const byte DOT_BELOW = 2;
45 /// Automatic emphasis marks as circles (unfilled outlines) above the glyphs
46 const byte CIRCLE_ABOVE = 3;
49 /// Automatic emphasis marks as circles (unfilled outlines) below the glyphs
50 const byte CIRCLE_BELOW = 4;
53 /// Automatic emphasis marks as discs (filled circles) above the glyphs
54 const byte DISC_ABOVE = 5;
57 /// Automatic emphasis marks as discs (filled circles) below the glyphs
58 const byte DISC_BELOW = 6;
61 /// Automatic emphasis marks as accent marks above the glyphs
62 const byte ACCENT_ABOVE = 7;
65 /// Automatic emphasis marks as accent marks below the glyphs
66 const byte ACCENT_BELOW = 8;
69 }; }; }; };
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */