87 lines
3 KiB
Text
87 lines
3 KiB
Text
/*************************************************************************
|
|
*
|
|
* 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
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
#ifndef __com_sun_star_rendering_EmphasisMark_idl__
|
|
#define __com_sun_star_rendering_EmphasisMark_idl__
|
|
|
|
module com { module sun { module star { module rendering {
|
|
|
|
/** These constants control the automatic rendering of emphasis marks.<p>
|
|
|
|
These constants control the automatic rendering of emphasis marks
|
|
for a given font.<p>
|
|
|
|
@since OOo 2.0.0
|
|
*/
|
|
constants EmphasisMark
|
|
{
|
|
/// No automatic emphasis marks
|
|
const byte NONE = 0;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as dots above the glyphs
|
|
const byte DOT_ABOVE = 1;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as dots below the glyphs
|
|
const byte DOT_BELOW = 2;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as circles (unfilled outlines) above the glyphs
|
|
const byte CIRCLE_ABOVE = 3;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as circles (unfilled outlines) below the glyphs
|
|
const byte CIRCLE_BELOW = 4;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as discs (filled circles) above the glyphs
|
|
const byte DISC_ABOVE = 5;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as discs (filled circles) below the glyphs
|
|
const byte DISC_BELOW = 6;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as accent marks above the glyphs
|
|
const byte ACCENT_ABOVE = 7;
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/// Automatic emphasis marks as accent marks below the glyphs
|
|
const byte ACCENT_BELOW = 8;
|
|
};
|
|
|
|
}; }; }; };
|
|
|
|
#endif
|