bump product version to 7.2.5.1
[LibreOffice.git] / linguistic / source / convdiclist.hxx
blob907f53fa242eb8a7ab92f2d17d137129db67135c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_LINGUISTIC_SOURCE_CONVDICLIST_HXX
21 #define INCLUDED_LINGUISTIC_SOURCE_CONVDICLIST_HXX
23 #include <com/sun/star/linguistic2/XConversionDictionaryList.hpp>
24 #include <com/sun/star/lang/XComponent.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <cppuhelper/implbase.hxx>
27 #include <comphelper/interfacecontainer2.hxx>
28 #include <rtl/ref.hxx>
30 #include <linguistic/misc.hxx>
33 class ConvDicNameContainer;
36 class ConvDicList :
37 public cppu::WeakImplHelper
39 css::linguistic2::XConversionDictionaryList,
40 css::lang::XComponent,
41 css::lang::XServiceInfo
45 class MyAppExitListener : public linguistic::AppExitListener
47 ConvDicList & rMyDicList;
49 public:
50 explicit MyAppExitListener( ConvDicList &rDicList ) : rMyDicList( rDicList ) {}
51 virtual void AtExit() override;
54 ::comphelper::OInterfaceContainerHelper2 aEvtListeners;
55 rtl::Reference<ConvDicNameContainer> mxNameContainer;
56 rtl::Reference<MyAppExitListener> mxExitListener;
57 bool bDisposing;
59 ConvDicList( const ConvDicList & ) = delete;
60 ConvDicList & operator = (const ConvDicList &) = delete;
62 ConvDicNameContainer & GetNameContainer();
64 public:
65 ConvDicList();
66 virtual ~ConvDicList() override;
68 // XConversionDictionaryList
69 virtual css::uno::Reference< css::container::XNameContainer > SAL_CALL getDictionaryContainer( ) override;
70 virtual css::uno::Reference< css::linguistic2::XConversionDictionary > SAL_CALL addNewDictionary( const OUString& aName, const css::lang::Locale& aLocale, sal_Int16 nConversionDictionaryType ) override;
71 virtual css::uno::Sequence< OUString > SAL_CALL queryConversions( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength, const css::lang::Locale& aLocale, sal_Int16 nConversionDictionaryType, css::linguistic2::ConversionDirection eDirection, sal_Int32 nTextConversionOptions ) override;
72 virtual sal_Int16 SAL_CALL queryMaxCharCount( const css::lang::Locale& aLocale, sal_Int16 nConversionDictionaryType, css::linguistic2::ConversionDirection eDirection ) override;
74 // XComponent
75 virtual void SAL_CALL dispose( ) override;
76 virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) override;
77 virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& aListener ) override;
79 // XServiceInfo
80 virtual OUString SAL_CALL getImplementationName( ) override;
81 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
82 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
84 // non UNO-specific
85 void FlushDics();
88 #endif
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */