Teach symstore more duplicated DLLs
[LibreOffice.git] / lingucomponent / source / hyphenator / hyphen / hyphenimp.hxx
blobd5103b8e7aa5721b82be22827231d1de946d8784
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_LINGUCOMPONENT_SOURCE_HYPHENATOR_HYPHEN_HYPHENIMP_HXX
21 #define INCLUDED_LINGUCOMPONENT_SOURCE_HYPHENATOR_HYPHEN_HYPHENIMP_HXX
23 #include <cppuhelper/implbase.hxx>
24 #include <com/sun/star/lang/XComponent.hpp>
25 #include <com/sun/star/lang/XInitialization.hpp>
26 #include <com/sun/star/lang/XServiceDisplayName.hpp>
27 #include <com/sun/star/beans/XPropertySet.hpp>
28 #include <com/sun/star/beans/PropertyValues.hpp>
29 #include <com/sun/star/lang/XServiceInfo.hpp>
30 #include <com/sun/star/linguistic2/XHyphenator.hpp>
31 #include <com/sun/star/linguistic2/XLinguServiceEventBroadcaster.hpp>
33 #include <unotools/charclass.hxx>
35 #include <linguistic/misc.hxx>
36 #include <linguistic/lngprophelp.hxx>
38 #include <lingutil.hxx>
39 #include <stdio.h>
41 #include <hyphen.h>
43 using namespace ::com::sun::star::uno;
44 using namespace ::com::sun::star::beans;
45 using namespace ::com::sun::star::lang;
46 using namespace ::com::sun::star::linguistic2;
48 struct HDInfo {
49 HyphenDict * aPtr;
50 OUString aName;
51 Locale aLoc;
52 rtl_TextEncoding eEnc;
53 std::unique_ptr<CharClass> apCC;
56 class Hyphenator :
57 public cppu::WeakImplHelper
59 XHyphenator,
60 XLinguServiceEventBroadcaster,
61 XInitialization,
62 XComponent,
63 XServiceInfo,
64 XServiceDisplayName
67 Sequence< Locale > aSuppLocales;
68 std::vector< HDInfo > mvDicts;
70 ::comphelper::OInterfaceContainerHelper2 aEvtListeners;
71 std::unique_ptr<linguistic::PropertyHelper_Hyphenation> pPropHelper;
72 bool bDisposing;
74 Hyphenator(const Hyphenator &) = delete;
75 Hyphenator & operator = (const Hyphenator &) = delete;
77 linguistic::PropertyHelper_Hyphenation& GetPropHelper_Impl();
78 linguistic::PropertyHelper_Hyphenation& GetPropHelper()
80 return pPropHelper ? *pPropHelper : GetPropHelper_Impl();
83 public:
84 Hyphenator();
86 virtual ~Hyphenator() override;
88 // XSupportedLocales (for XHyphenator)
89 virtual Sequence< Locale > SAL_CALL getLocales() override;
90 virtual sal_Bool SAL_CALL hasLocale( const Locale& rLocale ) override;
92 // XHyphenator
93 virtual css::uno::Reference< css::linguistic2::XHyphenatedWord > SAL_CALL hyphenate( const OUString& aWord, const css::lang::Locale& aLocale, sal_Int16 nMaxLeading, const css::uno::Sequence< css::beans::PropertyValue >& aProperties ) override;
94 virtual css::uno::Reference< css::linguistic2::XHyphenatedWord > SAL_CALL queryAlternativeSpelling( const OUString& aWord, const css::lang::Locale& aLocale, sal_Int16 nIndex, const css::uno::Sequence< css::beans::PropertyValue >& aProperties ) override;
95 virtual css::uno::Reference< css::linguistic2::XPossibleHyphens > SAL_CALL createPossibleHyphens( const OUString& aWord, const css::lang::Locale& aLocale, const css::uno::Sequence< css::beans::PropertyValue >& aProperties ) override;
97 // XLinguServiceEventBroadcaster
98 virtual sal_Bool SAL_CALL addLinguServiceEventListener( const Reference< XLinguServiceEventListener >& rxLstnr ) override;
99 virtual sal_Bool SAL_CALL removeLinguServiceEventListener( const Reference< XLinguServiceEventListener >& rxLstnr ) override;
101 // XServiceDisplayName
102 virtual OUString SAL_CALL getServiceDisplayName( const Locale& rLocale ) override;
104 // XInitialization
105 virtual void SAL_CALL initialize( const Sequence< Any >& rArguments ) override;
107 // XComponent
108 virtual void SAL_CALL dispose() override;
109 virtual void SAL_CALL addEventListener( const Reference< XEventListener >& rxListener ) override;
110 virtual void SAL_CALL removeEventListener( const Reference< XEventListener >& rxListener ) override;
112 // XServiceInfo
113 virtual OUString SAL_CALL getImplementationName() override;
114 virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) override;
115 virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
117 static inline OUString getImplementationName_Static() throw();
118 static Sequence< OUString > getSupportedServiceNames_Static() throw();
120 private:
121 static OUString makeLowerCase(const OUString&, CharClass const *);
122 static OUString makeUpperCase(const OUString&, CharClass const *);
123 static OUString makeInitCap(const OUString&, CharClass const *);
126 inline OUString Hyphenator::getImplementationName_Static() throw()
128 return "org.openoffice.lingu.LibHnjHyphenator";
131 #endif
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */