/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include #include #include #include #include #include #include #include #include using namespace css; namespace { class GraphicMapper : public cppu::WeakImplHelper { private: std::unordered_map> maGraphicMap; public: GraphicMapper() = default; protected: // XServiceInfo OUString SAL_CALL getImplementationName() override { return "com.sun.star.comp.graphic.GraphicMapper"; } sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override { return cppu::supportsService(this, ServiceName); } css::uno::Sequence SAL_CALL getSupportedServiceNames() override { return { "com.sun.star.graphic.GraphicMapper" }; } // XTypeProvider css::uno::Sequence SAL_CALL getTypes() override { static const uno::Sequence aTypes{ cppu::UnoType::get(), cppu::UnoType::get(), cppu::UnoType::get() }; return aTypes; } css::uno::Sequence SAL_CALL getImplementationId() override { return css::uno::Sequence(); } // XGraphicMapper css::uno::Reference SAL_CALL findGraphic(const OUString& rId) override { auto aIterator = maGraphicMap.find(rId); if (aIterator == maGraphicMap.end()) return css::uno::Reference(); return aIterator->second; } void SAL_CALL putGraphic(const OUString& rId, css::uno::Reference const& rGraphic) override { maGraphicMap.emplace(rId, rGraphic); } }; } extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* com_sun_star_comp_graphic_GraphicMapper_get_implementation(css::uno::XComponentContext*, css::uno::Sequence const&) { return cppu::acquire(new GraphicMapper); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */