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_rendering_EmphasisMark_idl__ 24#define __com_sun_star_rendering_EmphasisMark_idl__ 25 26module com { module sun { module star { module rendering { 27 28/** These constants control the automatic rendering of emphasis marks.<p> 29 30 These constants control the automatic rendering of emphasis marks 31 for a given font.<p> 32 33 @since OpenOffice 2.0 34 */ 35constants EmphasisMark 36{ 37 /// No automatic emphasis marks 38 const byte NONE = 0; 39 40 //------------------------------------------------------------------------- 41 42 /// Automatic emphasis marks as dots above the glyphs 43 const byte DOT_ABOVE = 1; 44 45 //------------------------------------------------------------------------- 46 47 /// Automatic emphasis marks as dots below the glyphs 48 const byte DOT_BELOW = 2; 49 50 //------------------------------------------------------------------------- 51 52 /// Automatic emphasis marks as circles (unfilled outlines) above the glyphs 53 const byte CIRCLE_ABOVE = 3; 54 55 //------------------------------------------------------------------------- 56 57 /// Automatic emphasis marks as circles (unfilled outlines) below the glyphs 58 const byte CIRCLE_BELOW = 4; 59 60 //------------------------------------------------------------------------- 61 62 /// Automatic emphasis marks as discs (filled circles) above the glyphs 63 const byte DISC_ABOVE = 5; 64 65 //------------------------------------------------------------------------- 66 67 /// Automatic emphasis marks as discs (filled circles) below the glyphs 68 const byte DISC_BELOW = 6; 69 70 //------------------------------------------------------------------------- 71 72 /// Automatic emphasis marks as accent marks above the glyphs 73 const byte ACCENT_ABOVE = 7; 74 75 //------------------------------------------------------------------------- 76 77 /// Automatic emphasis marks as accent marks below the glyphs 78 const byte ACCENT_BELOW = 8; 79}; 80 81}; }; }; }; 82 83#endif 84