LibreOffice Module sw (master) 1
dlelstnr.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#ifndef INCLUDED_SW_INC_DLELSTNR_HXX
21#define INCLUDED_SW_INC_DLELSTNR_HXX
22
23#include <com/sun/star/linguistic2/XLinguServiceEventListener.hpp>
24#include <com/sun/star/frame/XTerminateListener.hpp>
26
27namespace com::sun::star {
28 namespace linguistic2 {
29 class XLinguServiceManager2;
30 class XProofreadingIterator;
31 }
32 namespace frame {
33 class XDesktop2;
34 }
35}
36
43 public cppu::WeakImplHelper
44 <
45 css::linguistic2::XLinguServiceEventListener,
46 css::frame::XTerminateListener
47 >
48{
49 css::uno::Reference<css::frame::XDesktop2 > m_xDesktop;
50 css::uno::Reference<css::linguistic2::XLinguServiceManager2 > m_xLngSvcMgr;
51 css::uno::Reference<css::linguistic2::XProofreadingIterator > m_xGCIterator;
52
55
56public:
58 virtual ~SwLinguServiceEventListener() override;
59
61 virtual void SAL_CALL disposing( const css::lang::EventObject& rEventObj ) override;
62
64 virtual void SAL_CALL processLinguServiceEvent( const css::linguistic2::LinguServiceEvent& rLngSvcEvent ) override;
65
67 virtual void SAL_CALL queryTermination( const css::lang::EventObject& rEventObj ) override;
68 virtual void SAL_CALL notifyTermination( const css::lang::EventObject& rEventObj ) override;
69};
70
71#endif
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
EventListener that triggers spellchecking and hyphenation.
Definition: dlelstnr.hxx:48
SwLinguServiceEventListener & operator=(const SwLinguServiceEventListener &)=delete
css::uno::Reference< css::frame::XDesktop2 > m_xDesktop
Definition: dlelstnr.hxx:49
virtual void SAL_CALL notifyTermination(const css::lang::EventObject &rEventObj) override
Definition: dlelstnr.cxx:119
SwLinguServiceEventListener(const SwLinguServiceEventListener &)=delete
virtual void SAL_CALL disposing(const css::lang::EventObject &rEventObj) override
XEventListener.
Definition: dlelstnr.cxx:103
css::uno::Reference< css::linguistic2::XProofreadingIterator > m_xGCIterator
Definition: dlelstnr.hxx:51
virtual ~SwLinguServiceEventListener() override
Definition: dlelstnr.cxx:70
css::uno::Reference< css::linguistic2::XLinguServiceManager2 > m_xLngSvcMgr
Definition: dlelstnr.hxx:50
virtual void SAL_CALL queryTermination(const css::lang::EventObject &rEventObj) override
XTerminateListener.
Definition: dlelstnr.cxx:114
virtual void SAL_CALL processLinguServiceEvent(const css::linguistic2::LinguServiceEvent &rLngSvcEvent) override
XLinguServiceEventListener.
Definition: dlelstnr.cxx:74