Line data Source code
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 : #ifndef _I18N_TEXTCONERSION_HXX_
20 : #define _I18N_TEXTCONERSION_HXX_
21 :
22 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
23 : #include <com/sun/star/lang/XServiceInfo.hpp>
24 : #include <com/sun/star/i18n/XExtendedTextConversion.hpp>
25 : #include <com/sun/star/uno/XComponentContext.hpp>
26 : #include <cppuhelper/implbase2.hxx> // helper for implementations
27 :
28 : namespace com { namespace sun { namespace star { namespace i18n {
29 :
30 : // ----------------------------------------------------
31 : // class TextConversion
32 : // ----------------------------------------------------
33 0 : class TextConversionImpl : public cppu::WeakImplHelper2
34 : <
35 : com::sun::star::i18n::XExtendedTextConversion,
36 : com::sun::star::lang::XServiceInfo
37 : >
38 : {
39 : public:
40 0 : TextConversionImpl( const com::sun::star::uno::Reference < com::sun::star::uno::XComponentContext >& rxContext ) : m_xContext(rxContext) {};
41 :
42 : // Methods
43 : com::sun::star::i18n::TextConversionResult SAL_CALL
44 : getConversions( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
45 : const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nTextConversionType,
46 : sal_Int32 nTextConversionOptions )
47 : throw( com::sun::star::uno::RuntimeException,
48 : com::sun::star::lang::IllegalArgumentException,
49 : com::sun::star::lang::NoSupportException );
50 : OUString SAL_CALL
51 : getConversion( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
52 : const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nTextConversionType,
53 : sal_Int32 nTextConversionOptions )
54 : throw( com::sun::star::uno::RuntimeException,
55 : com::sun::star::lang::IllegalArgumentException,
56 : com::sun::star::lang::NoSupportException );
57 : OUString SAL_CALL
58 : getConversionWithOffset( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
59 : const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nTextConversionType,
60 : sal_Int32 nTextConversionOptions, com::sun::star::uno::Sequence< sal_Int32 >& offset )
61 : throw( com::sun::star::uno::RuntimeException,
62 : com::sun::star::lang::IllegalArgumentException,
63 : com::sun::star::lang::NoSupportException );
64 : sal_Bool SAL_CALL
65 : interactiveConversion( const ::com::sun::star::lang::Locale& aLocale,
66 : sal_Int16 nTextConversionType, sal_Int32 nTextConversionOptions )
67 : throw( com::sun::star::uno::RuntimeException,
68 : com::sun::star::lang::IllegalArgumentException,
69 : com::sun::star::lang::NoSupportException );
70 :
71 : //XServiceInfo
72 : OUString SAL_CALL
73 : getImplementationName()
74 : throw( com::sun::star::uno::RuntimeException );
75 : sal_Bool SAL_CALL
76 : supportsService(const OUString& ServiceName)
77 : throw( com::sun::star::uno::RuntimeException );
78 : com::sun::star::uno::Sequence< OUString > SAL_CALL
79 : getSupportedServiceNames()
80 : throw( com::sun::star::uno::RuntimeException );
81 : private :
82 : com::sun::star::lang::Locale aLocale;
83 : com::sun::star::uno::Reference < com::sun::star::i18n::XExtendedTextConversion > xTC;
84 : com::sun::star::uno::Reference < com::sun::star::uno::XComponentContext > m_xContext;
85 :
86 : void SAL_CALL getLocaleSpecificTextConversion( const com::sun::star::lang::Locale& rLocale )
87 : throw( com::sun::star::lang::NoSupportException );
88 : };
89 :
90 : } // i18n
91 : } // star
92 : } // sun
93 : } // com
94 :
95 :
96 : #endif
97 :
98 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|