2005-03-10 05:24:04 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 19:33:24 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
2008-04-10 19:33:24 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
2008-04-10 19:33:24 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
2008-04-10 19:33:24 -05:00
|
|
|
* 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.
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
2008-04-10 19:33:24 -05:00
|
|
|
* 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).
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
2008-04-10 19:33:24 -05:00
|
|
|
* 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.
|
2005-03-10 05:24:04 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#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>
|
|
|
|
|
2005-04-18 03:35:34 -05:00
|
|
|
@since OOo 2.0.0
|
2005-03-10 05:24:04 -06:00
|
|
|
*/
|
|
|
|
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
|