vcl: Drop local var pointing to self in WindowData ctor
[LibreOffice.git] / editeng / source / uno / unopracc.cxx
blob5b0493ca68a17f9bb658b6d960e119bedde2466a
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 .
21 #include <cppuhelper/typeprovider.hxx>
22 #include <com/sun/star/uno/Any.hxx>
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <cppuhelper/supportsservice.hxx>
25 #include <unopracc.hxx>
26 #include <editeng/unoedsrc.hxx>
28 using namespace ::com::sun::star;
31 SvxAccessibleTextPropertySet::SvxAccessibleTextPropertySet( const SvxEditSource* pEditSrc, const SvxItemPropertySet* pPropSet )
32 : SvxUnoTextRangeBase( pEditSrc, pPropSet )
36 SvxAccessibleTextPropertySet::~SvxAccessibleTextPropertySet() noexcept
40 uno::Reference< text::XText > SAL_CALL SvxAccessibleTextPropertySet::getText()
42 // TODO (empty?)
43 return uno::Reference< text::XText > ();
46 uno::Any SAL_CALL SvxAccessibleTextPropertySet::queryInterface( const uno::Type & rType )
48 return OWeakObject::queryInterface(rType);
51 void SAL_CALL SvxAccessibleTextPropertySet::acquire()
52 noexcept
54 OWeakObject::acquire();
57 void SAL_CALL SvxAccessibleTextPropertySet::release()
58 noexcept
60 OWeakObject::release();
63 // XTypeProvider
64 uno::Sequence< uno::Type > SAL_CALL SvxAccessibleTextPropertySet::getTypes()
66 static ::cppu::OTypeCollection ourTypeCollection(
67 ::cppu::UnoType<beans::XPropertySet>::get(),
68 ::cppu::UnoType<beans::XMultiPropertySet>::get(),
69 ::cppu::UnoType<beans::XPropertyState>::get(),
70 ::cppu::UnoType<lang::XServiceInfo>::get(),
71 ::cppu::UnoType<lang::XTypeProvider>::get() );
73 return ourTypeCollection.getTypes() ;
76 uno::Sequence< sal_Int8 > SAL_CALL SvxAccessibleTextPropertySet::getImplementationId()
78 return css::uno::Sequence<sal_Int8>();
81 // XServiceInfo
82 OUString SAL_CALL SAL_CALL SvxAccessibleTextPropertySet::getImplementationName()
84 return u"SvxAccessibleTextPropertySet"_ustr;
87 sal_Bool SAL_CALL SvxAccessibleTextPropertySet::supportsService (const OUString& sServiceName)
89 return cppu::supportsService(this, sServiceName);
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */