1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com
{ module sun
{ module star
{ module linguistic2
{
23 /** API for proofreading a text
27 interface XProofreader
: com
::sun
::star
::linguistic2
::XSupportedLocales
30 /** whether is the text checked by the spell checker
32 @returns true if it is also a spell checker
34 boolean isSpellChecker
();
38 @param aDocumentIdentifier
42 the flat text to be checked.
45 Language used in the text.
47 @param nStartOfSentencePosition
48 Start Index of the text.
50 @param nSuggestedBehindEndOfSentencePosition
51 Probable end position of the text.
54 additional properties of the text.
56 Currently the following properties may be supported:
59 <td>FieldPositions</td>
60 <td>sequence<long></td>
61 <td>indexes of fields in aText</td>
64 <td>FootnotePositions</td>
65 <td>sequence<long></td>
66 <td>indexes of footnotes in aText</td>
70 @throws IllegalArgumentException
71 when any argument is wrong.
73 ProofreadingResult doProofreading
( [in] string aDocumentIdentifier
,
75 [in] com
::sun
::star
::lang
::Locale aLocale
,
76 [in] long nStartOfSentencePosition
,
77 [in] long nSuggestedBehindEndOfSentencePosition
,
78 [in] sequence
< com
::sun
::star
::beans
::PropertyValue
> aProperties
)
79 raises
( com
::sun
::star
::lang
::IllegalArgumentException
);
81 /** disables a specific rule for a given locale.
83 <p>If the locale is empty the rule should be ignored for all languages.</p>
85 void ignoreRule
( [in] string aRuleIdentifier
,
86 [in] com
::sun
::star
::lang
::Locale aLocale
)
87 raises
( com
::sun
::star
::lang
::IllegalArgumentException
);
89 /** sets all rules back to their default settings.
91 void resetIgnoreRules
();
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */