merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / linguistic2 / SingleProofreadingError.idl
blob346ec800a226b221b1a36a1f13d5b608468c8176
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SingleProofreadingError.idl,v $
10 * $Revision: 1.1.2.2 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_linguistic2_SingleProofreadingError_idl__
31 #define __com_sun_star_linguistic2_SingleProofreadingError_idl__
33 #ifndef __com_sun_star_lang_Locale_idl__
34 #include <com/sun/star/lang/Locale.idl>
35 #endif
37 #ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_idl_
38 #include <com/sun/star/beans/PropertyValue.idl>
39 #endif
41 //=============================================================================
43 module com { module sun { module star { module linguistic2 {
45 //=============================================================================
46 /** holds a single error found by the proofreader.
48 @since OOo 3.0.1
50 struct SingleProofreadingError
52 // start index of the error text
53 // indicating the text to be replaced if suggestions are applied
54 long nErrorStart;
56 // the length of the error text
57 // indicating the text to be replaced if suggestions are applied
58 long nErrorLength;
60 // as in com.sun.star.text.TextMarkupType
61 long nErrorType;
63 // the id of the rule that this error is violating
64 string aRuleIdentifier;
66 // short error description text (usually to be displayed in context menu)
67 string aShortComment;
69 // full error description text (usually to be displayed in dialog)
70 string aFullComment;
72 // a list of correction suggestions
73 // Usually emtpy if only automatic checking was done.
74 sequence< string > aSuggestions;
76 // a list of properties
77 sequence< com::sun::star::beans::PropertyValue > aProperties;
80 //=============================================================================
82 }; }; }; };
84 #endif