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 :
20 : #include <com/sun/star/uno/XComponentContext.hpp>
21 : #include "unoscripttypedetector.hxx"
22 : #include <cppuhelper/supportsservice.hxx>
23 : #include <i18nutil/scripttypedetector.hxx>
24 :
25 : // class UnoScriptTypeDetector
26 : sal_Int16 SAL_CALL
27 0 : UnoScriptTypeDetector::getScriptDirection( const OUString& Text, sal_Int32 nPos, sal_Int16 defaultScriptDirection ) throw (::com::sun::star::uno::RuntimeException, std::exception)
28 : {
29 0 : return ScriptTypeDetector::getScriptDirection(Text, nPos, defaultScriptDirection);
30 : }
31 :
32 : // return value '-1' means either the direction on nPos is not same as scriptDirection or nPos is out of range.
33 : sal_Int32 SAL_CALL
34 0 : UnoScriptTypeDetector::beginOfScriptDirection( const OUString& Text, sal_Int32 nPos, sal_Int16 direction ) throw (::com::sun::star::uno::RuntimeException, std::exception)
35 : {
36 0 : return ScriptTypeDetector::beginOfScriptDirection(Text, nPos, direction);
37 : }
38 :
39 : sal_Int32 SAL_CALL
40 0 : UnoScriptTypeDetector::endOfScriptDirection( const OUString& Text, sal_Int32 nPos, sal_Int16 direction ) throw (::com::sun::star::uno::RuntimeException, std::exception)
41 : {
42 0 : return ScriptTypeDetector::endOfScriptDirection(Text, nPos, direction);
43 : }
44 :
45 : sal_Int16 SAL_CALL
46 0 : UnoScriptTypeDetector::getCTLScriptType( const OUString& Text, sal_Int32 nPos ) throw (::com::sun::star::uno::RuntimeException, std::exception)
47 : {
48 0 : return ScriptTypeDetector::getCTLScriptType(Text, nPos);
49 : }
50 :
51 : // Begin of Script Type is inclusive.
52 : sal_Int32 SAL_CALL
53 0 : UnoScriptTypeDetector::beginOfCTLScriptType( const OUString& Text, sal_Int32 nPos ) throw (::com::sun::star::uno::RuntimeException, std::exception)
54 : {
55 0 : return ScriptTypeDetector::beginOfCTLScriptType(Text, nPos);
56 : }
57 :
58 : // End of the Script Type is exclusive, the return value pointing to the begin of next script type
59 : sal_Int32 SAL_CALL
60 0 : UnoScriptTypeDetector::endOfCTLScriptType( const OUString& Text, sal_Int32 nPos ) throw (::com::sun::star::uno::RuntimeException, std::exception)
61 : {
62 0 : return ScriptTypeDetector::endOfCTLScriptType(Text, nPos);
63 : }
64 :
65 : OUString SAL_CALL
66 0 : UnoScriptTypeDetector::getImplementationName() throw( ::com::sun::star::uno::RuntimeException, std::exception )
67 : {
68 0 : return OUString("com.sun.star.i18n.ScriptTypeDetector");
69 : }
70 :
71 : sal_Bool SAL_CALL
72 0 : UnoScriptTypeDetector::supportsService(const OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException, std::exception )
73 : {
74 0 : return cppu::supportsService(this, ServiceName);
75 : }
76 :
77 : ::com::sun::star::uno::Sequence< OUString > SAL_CALL
78 0 : UnoScriptTypeDetector::getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException, std::exception )
79 : {
80 0 : ::com::sun::star::uno::Sequence< OUString > aRet(1);
81 0 : aRet[0] = "com.sun.star.i18n.ScriptTypeDetector";
82 0 : return aRet;
83 : }
84 :
85 : extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
86 0 : com_sun_star_i18n_ScriptTypeDetector_get_implementation(
87 : css::uno::XComponentContext *,
88 : css::uno::Sequence<css::uno::Any> const &)
89 : {
90 0 : return cppu::acquire(new UnoScriptTypeDetector());
91 : }
92 :
93 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|