android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / core / access / accgraphic.cxx
blobd6d115d780663e28b9fb6a7bfc19a94beb8347e4
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 .
20 #include <vcl/svapp.hxx>
21 #include <com/sun/star/accessibility/AccessibleRole.hpp>
22 #include <cppuhelper/supportsservice.hxx>
23 #include <flyfrm.hxx>
24 #include <fmturl.hxx>
25 #include "accgraphic.hxx"
27 using namespace ::com::sun::star;
28 using namespace ::com::sun::star::lang;
29 using namespace ::com::sun::star::uno;
30 using namespace ::com::sun::star::accessibility;
32 SwAccessibleGraphic::SwAccessibleGraphic(
33 std::shared_ptr<SwAccessibleMap> const& pInitMap,
34 const SwFlyFrame* pFlyFrame ) :
35 SwAccessibleNoTextFrame( pInitMap, AccessibleRole::GRAPHIC, pFlyFrame )
39 SwAccessibleGraphic::~SwAccessibleGraphic()
43 OUString SAL_CALL SwAccessibleGraphic::getImplementationName()
45 return "com.sun.star.comp.Writer.SwAccessibleGraphic";
48 sal_Bool SAL_CALL SwAccessibleGraphic::supportsService(const OUString& sTestServiceName)
50 return cppu::supportsService(this, sTestServiceName);
53 Sequence< OUString > SAL_CALL SwAccessibleGraphic::getSupportedServiceNames()
55 return { "com.sun.star.text.AccessibleTextGraphicObject", sAccessibleServiceName };
58 Sequence< sal_Int8 > SAL_CALL SwAccessibleGraphic::getImplementationId()
60 return css::uno::Sequence<sal_Int8>();
63 // Return this object's role.
64 sal_Int16 SAL_CALL SwAccessibleGraphic::getAccessibleRole()
66 SolarMutexGuard g;
68 SwFormatURL aURL( static_cast<const SwLayoutFrame*>(GetFrame())->GetFormat()->GetURL() );
70 if (aURL.GetMap())
71 return AccessibleRole::IMAGE_MAP;
72 return AccessibleRole::GRAPHIC;
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */