merged tag ooo/OOO330_m14
[LibreOffice.git] / offapi / com / sun / star / text / ControlCharacter.idl
blob43a9b40247e6ec53fa1ec52d161cbf1957455de0
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_text_ControlCharacter_idl__
28 #define __com_sun_star_text_ControlCharacter_idl__
31 //=============================================================================
33 module com { module sun { module star { module text {
35 //=============================================================================
37 // DocMerge from idl: constants com::sun::star::text::ControlCharacter
38 /** These constants are the codes for inserting control characters
39 using <method>XSimpleText::insertControlCharacter</method> interface.
41 published constants ControlCharacter
43 //-------------------------------------------------------------------------
45 // DocMerge from idl: value com::sun::star::text::ControlCharacter::PARAGRAPH_BREAK
46 /** This control character starts a new paragraph.
48 const short PARAGRAPH_BREAK = 0;
50 //-------------------------------------------------------------------------
52 // DocMerge from idl: value com::sun::star::text::ControlCharacter::LINE_BREAK
53 /** This control character starts a new line in a paragraph.
55 const short LINE_BREAK = 1;
57 //-------------------------------------------------------------------------
59 // DocMerge from idl: value com::sun::star::text::ControlCharacter::HARD_HYPHEN
60 /** This control character equals a dash but prevents this
61 position from being hyphenated.
63 const short HARD_HYPHEN = 2;
65 //-------------------------------------------------------------------------
67 // DocMerge from idl: value com::sun::star::text::ControlCharacter::SOFT_HYPHEN
68 /** This control character defines a special position as a
69 hyphenation point. If a word containing a soft hyphen
70 must be split at the end of a line, then this position
71 is preferred.
73 const short SOFT_HYPHEN = 3;
75 //-------------------------------------------------------------------------
77 // DocMerge from idl: value com::sun::star::text::ControlCharacter::HARD_SPACE
78 /** This control character is used to link two words and
79 prevents this concatenation from being hyphenated.
80 It is printed as a space.
82 const short HARD_SPACE = 4;
84 //-------------------------------------------------------------------------
85 /** This control character appends a new paragraph.
87 const short APPEND_PARAGRAPH = 5;
90 //=============================================================================
92 }; }; }; };
94 #endif