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 .
20 #ifndef INCLUDED_SW_INC_IGRAMMARCONTACT_HXX
21 #define INCLUDED_SW_INC_IGRAMMARCONTACT_HXX
25 class SwGrammarMarkUp
;
27 /** Organizer of the contact between SwTextNodes and grammar checker
32 /** Update cursor position reacts to a change of the current input cursor
33 As long as the cursor in inside a paragraph, the grammar checking does
34 not show new grammar faults. When the cursor leaves the paragraph, these
38 virtual void updateCursorPosition(const SwPosition
& rNewPos
) = 0;
40 /** getGrammarCheck checks if the given text node is blocked by the current cursor
41 if not, the normal markup list is returned
42 if blocked, it will return a markup list "proxy"
43 @returns a markup list (grammar) for the given SwTextNode
45 virtual SwGrammarMarkUp
* getGrammarCheck(SwTextNode
& rTextNode
, bool bCreate
) = 0;
47 /** finishGrammarCheck() has to be called if a grammar checking has been completed
48 for a text node. If this text node has not been hidden by the current proxy list
49 it will be repainted. Otherwise the proxy list replaces the old list and the
50 repaint will be triggered by a timer
53 virtual void finishGrammarCheck(SwTextNode
& rTextNode
) = 0;
56 virtual ~IGrammarContact() {}
59 /** Factory for a grammar contact
60 @returns a new created grammar contact object
62 IGrammarContact
* createGrammarContact();
64 /* Helper functions */
66 /** getGrammarContact() delivers the grammar contact of the document (for a given textnode)
67 @returns grammar contact
69 IGrammarContact
* getGrammarContact(const SwTextNode
&);
71 /** finishGrammarCheck() calls the same function of the grammar contact of the document (for a given textnode)
74 void finishGrammarCheck(SwTextNode
&);
76 #endif // INCLUDED_SW_INC_IGRAMMARCONTACT_HXX
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */