loplugin:constmethod in editeng
[LibreOffice.git] / i18npool / inc / textconversionImpl.hxx
blob9cd87e8d611c6225272b18f60331a85be932a8f2
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 .
19 #ifndef INCLUDED_I18NPOOL_INC_TEXTCONVERSIONIMPL_HXX
20 #define INCLUDED_I18NPOOL_INC_TEXTCONVERSIONIMPL_HXX
22 #include <com/sun/star/lang/XServiceInfo.hpp>
23 #include <com/sun/star/i18n/XExtendedTextConversion.hpp>
24 #include <cppuhelper/implbase.hxx>
26 namespace com::sun::star::uno { class XComponentContext; }
28 namespace i18npool {
31 // class TextConversion
33 class TextConversionImpl : public cppu::WeakImplHelper
35 css::i18n::XExtendedTextConversion,
36 css::lang::XServiceInfo
39 public:
40 TextConversionImpl( const css::uno::Reference < css::uno::XComponentContext >& rxContext ) : m_xContext(rxContext) {};
42 // Methods
43 css::i18n::TextConversionResult SAL_CALL
44 getConversions( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
45 const css::lang::Locale& aLocale, sal_Int16 nTextConversionType,
46 sal_Int32 nTextConversionOptions ) override;
47 OUString SAL_CALL
48 getConversion( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
49 const css::lang::Locale& aLocale, sal_Int16 nTextConversionType,
50 sal_Int32 nTextConversionOptions ) override;
51 OUString SAL_CALL
52 getConversionWithOffset( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
53 const css::lang::Locale& aLocale, sal_Int16 nTextConversionType,
54 sal_Int32 nTextConversionOptions, css::uno::Sequence< sal_Int32 >& offset ) override;
55 sal_Bool SAL_CALL
56 interactiveConversion( const css::lang::Locale& aLocale,
57 sal_Int16 nTextConversionType, sal_Int32 nTextConversionOptions ) override;
59 //XServiceInfo
60 OUString SAL_CALL
61 getImplementationName() override;
62 sal_Bool SAL_CALL
63 supportsService(const OUString& ServiceName) override;
64 css::uno::Sequence< OUString > SAL_CALL
65 getSupportedServiceNames() override;
66 private:
67 css::lang::Locale aLocale;
68 css::uno::Reference < css::i18n::XExtendedTextConversion > xTC;
69 css::uno::Reference < css::uno::XComponentContext > m_xContext;
71 /// @throws css::lang::NoSupportException
72 void getLocaleSpecificTextConversion( const css::lang::Locale& rLocale );
75 } // i18npool
78 #endif
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */