From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- filter/source/config/cache/frameloaderfactory.hxx | 98 +++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 filter/source/config/cache/frameloaderfactory.hxx (limited to 'filter/source/config/cache/frameloaderfactory.hxx') diff --git a/filter/source/config/cache/frameloaderfactory.hxx b/filter/source/config/cache/frameloaderfactory.hxx new file mode 100644 index 000000000..2b9098b1a --- /dev/null +++ b/filter/source/config/cache/frameloaderfactory.hxx @@ -0,0 +1,98 @@ +/* -*- 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/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#pragma once + +#include "basecontainer.hxx" +#include +#include + + +namespace filter::config { + + +/** @short implements the service FrameLoaderFactory. + */ +class FrameLoaderFactory : public ::cppu::ImplInheritanceHelper< BaseContainer , + css::frame::XLoaderFactory > +{ + + // native interface + + css::uno::Reference< css::uno::XComponentContext > m_xContext; + + public: + + + // ctor/dtor + + /** @short standard ctor to connect this interface wrapper to + the global filter cache instance ... + + @param rxContext + reference to the uno service manager, which created this service instance. + */ + explicit FrameLoaderFactory(const css::uno::Reference< css::uno::XComponentContext >& rxContext); + + + /** @short standard dtor. + */ + virtual ~FrameLoaderFactory() override; + + + // uno interface + + public: + + + // XMultiServiceFactory + + virtual css::uno::Reference< css::uno::XInterface > SAL_CALL createInstance(const OUString& sLoader) override; + + virtual css::uno::Reference< css::uno::XInterface > SAL_CALL createInstanceWithArguments(const OUString& sLoader , + const css::uno::Sequence< css::uno::Any >& lArguments) override; + + virtual css::uno::Sequence< OUString > SAL_CALL getAvailableServiceNames() override; + + + public: + + // Overrides to resolve ambiguity + virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override + { return BaseContainer::getByName(aName); } + virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override + { return BaseContainer::getElementNames(); } + virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override + { return BaseContainer::hasByName(aName); } + + virtual css::uno::Type SAL_CALL getElementType() override + { return BaseContainer::getElementType(); } + virtual sal_Bool SAL_CALL hasElements() override + { return BaseContainer::hasElements(); } + + virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createSubSetEnumerationByQuery( const OUString& Query ) override + { return BaseContainer::createSubSetEnumerationByQuery(Query); } + virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createSubSetEnumerationByProperties( const css::uno::Sequence< css::beans::NamedValue >& Properties ) override + { return BaseContainer::createSubSetEnumerationByProperties(Properties); } + +}; + +} // namespace filter::config + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3