/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_awt_FontEmphasisMark_idl__ #define __com_sun_star_awt_FontEmphasisMark_idl__ //============================================================================= module com { module sun { module star { module awt { //============================================================================= /** These values are used to specify the kind of emphasis mark.

They may be expanded in future versions.

*/ published constants FontEmphasisMark { //------------------------------------------------------------------------- /** specifies no emphasis mark. */ const short NONE = 0x0000; //------------------------------------------------------------------------- /** specifies emphasis mark dot. */ const short DOT = 0x0001; //------------------------------------------------------------------------- /** specifies emphasis mark circle. */ const short CIRCLE = 0x0002; //------------------------------------------------------------------------- /** specifies emphasis mark disc. */ const short DISC = 0x0003; //------------------------------------------------------------------------- /** specifies emphasis mark accent. */ const short ACCENT = 0x0004; //------------------------------------------------------------------------- /** specifies that the emphasis mark should be positioned above the characters. */ const short ABOVE = 0x1000; //------------------------------------------------------------------------- /** specifies that the emphasis mark should be positioned below the characters. */ const short BELOW = 0x2000; }; //============================================================================= }; }; }; }; #endif