LibreOffice Module sw (master) 1
GrammarContact.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <SwGrammarMarkUp.hxx>
23#include <svl/listener.hxx>
24#include <vcl/timer.hxx>
25
26struct SwPosition;
27class SwTextNode;
28
29namespace sw
30{
42class GrammarContact final : public SvtListener
43{
45 std::unique_ptr<SwGrammarMarkUp> m_pProxyList;
48 DECL_LINK(TimerRepaint, Timer*, void);
49
50public:
53
60 void updateCursorPosition(const SwPosition& rNewPos);
61
67 SwGrammarMarkUp* getGrammarCheck(SwTextNode& rTextNode, bool bCreate);
68
75 void finishGrammarCheck(SwTextNode& rTextNode);
76
77 void CheckBroadcaster();
78};
79
80/* Helper functions */
81
85GrammarContact* getGrammarContactFor(const SwTextNode&);
86
91
92} // end sw
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SwTextNode is a paragraph in the document model.
Definition: ndtxt.hxx:112
void Stop()
This class is responsible for the delayed display of grammar checks when a paragraph is edited It's a...
SwTextNode * m_pTextNode
std::unique_ptr< SwGrammarMarkUp > m_pProxyList
SwGrammarMarkUp * getGrammarCheck(SwTextNode &rTextNode, bool bCreate)
getGrammarCheck checks if the given text node is blocked by the current cursor if not,...
DECL_LINK(TimerRepaint, Timer *, void)
void updateCursorPosition(const SwPosition &rNewPos)
Update cursor position reacts to a change of the current input cursor As long as the cursor in inside...
void finishGrammarCheck(SwTextNode &rTextNode)
finishGrammarCheck() has to be called if a grammar checking has been completed for a text node.
Dialog to specify the properties of date form field.
sw::GrammarContact * getGrammarContactFor(const SwTextNode &rTextNode)
getGrammarContact() delivers the grammar contact of the document (for a given textnode)
void finishGrammarCheckFor(SwTextNode &rTextNode)
finishGrammarCheck() calls the same function of the grammar contact of the document (for a given text...
Marks a position in the document model.
Definition: pam.hxx:38