1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <cppuhelper/typeprovider.hxx>
22 #include <com/sun/star/uno/Any.hxx>
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <com/sun/star/lang/XComponent.hpp>
25 #include <cppuhelper/supportsservice.hxx>
26 #include <cppuhelper/weakref.hxx>
27 #include <editeng/unopracc.hxx>
28 #include <editeng/unoedsrc.hxx>
30 using namespace ::com::sun::star
;
33 SvxAccessibleTextPropertySet::SvxAccessibleTextPropertySet( const SvxEditSource
* pEditSrc
, const SvxItemPropertySet
* pPropSet
)
34 : SvxUnoTextRangeBase( pEditSrc
, pPropSet
)
38 SvxAccessibleTextPropertySet::~SvxAccessibleTextPropertySet() throw()
42 uno::Reference
< text::XText
> SAL_CALL
SvxAccessibleTextPropertySet::getText()
45 return uno::Reference
< text::XText
> ();
48 uno::Any SAL_CALL
SvxAccessibleTextPropertySet::queryInterface( const uno::Type
& rType
)
50 return OWeakObject::queryInterface(rType
);
53 void SAL_CALL
SvxAccessibleTextPropertySet::acquire()
56 OWeakObject::acquire();
59 void SAL_CALL
SvxAccessibleTextPropertySet::release()
62 OWeakObject::release();
66 uno::Sequence
< uno::Type
> SAL_CALL
SvxAccessibleTextPropertySet::getTypes()
68 static ::cppu::OTypeCollection
ourTypeCollection(
69 ::cppu::UnoType
<beans::XPropertySet
>::get(),
70 ::cppu::UnoType
<beans::XMultiPropertySet
>::get(),
71 ::cppu::UnoType
<beans::XPropertyState
>::get(),
72 ::cppu::UnoType
<lang::XServiceInfo
>::get(),
73 ::cppu::UnoType
<lang::XTypeProvider
>::get() );
75 return ourTypeCollection
.getTypes() ;
78 uno::Sequence
< sal_Int8
> SAL_CALL
SvxAccessibleTextPropertySet::getImplementationId()
80 return css::uno::Sequence
<sal_Int8
>();
84 OUString SAL_CALL SAL_CALL
SvxAccessibleTextPropertySet::getImplementationName()
86 return "SvxAccessibleTextPropertySet";
89 sal_Bool SAL_CALL
SvxAccessibleTextPropertySet::supportsService (const OUString
& sServiceName
)
91 return cppu::supportsService(this, sServiceName
);
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */