From 940b4d1848e8c70ab7642901a68594e8016caffc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:51:28 +0200 Subject: Adding upstream version 1:7.0.4. Signed-off-by: Daniel Baumann --- writerperfect/qa/unit/WpftLoader.hxx | 103 +++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 writerperfect/qa/unit/WpftLoader.hxx (limited to 'writerperfect/qa/unit/WpftLoader.hxx') diff --git a/writerperfect/qa/unit/WpftLoader.hxx b/writerperfect/qa/unit/WpftLoader.hxx new file mode 100644 index 000000000..ccd8f9294 --- /dev/null +++ b/writerperfect/qa/unit/WpftLoader.hxx @@ -0,0 +1,103 @@ +/* -*- 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/. + */ + +#ifndef INCLUDED_WRITERPERFECT_QA_UNIT_WPFTLOADER_HXX +#define INCLUDED_WRITERPERFECT_QA_UNIT_WPFTLOADER_HXX + +#include "wpftqahelperdllapi.h" + +#include +#include + +#include + +namespace com +{ +namespace sun +{ +namespace star +{ +namespace beans +{ +struct PropertyValue; +} +namespace container +{ +class XNameAccess; +} +namespace document +{ +class XFilter; +} +namespace frame +{ +class XDesktop2; +class XFrame; +} +namespace io +{ +class XInputStream; +} +namespace lang +{ +class XComponent; +} +namespace uno +{ +class XComponentContext; +} +} +} +} + +namespace writerperfect +{ +namespace test +{ +class WPFTQAHELPER_DLLPUBLIC WpftLoader +{ +public: + WpftLoader(const OUString& rURL, const css::uno::Reference& rxFilter, + const OUString& rFactoryURL, + const css::uno::Reference& rxDesktop, + const css::uno::Reference& rxTypeMap, + const css::uno::Reference& rxContext); + WpftLoader(const css::uno::Reference& rxInputStream, + const css::uno::Reference& rxFilter, + const OUString& rFactoryURL, + const css::uno::Reference& rxDesktop, + const css::uno::Reference& rxContext); + ~WpftLoader(); + + const css::uno::Reference& getDocument() const; + +private: + bool impl_load(); + void impl_dispose(); + + void impl_detectFilterName(css::uno::Sequence& rDescriptor, + const OUString& rTypeName); + +private: + const OUString m_aURL; + const css::uno::Reference m_xInputStream; + const OUString m_aFactoryURL; + const css::uno::Reference m_xFilter; + const css::uno::Reference m_xDesktop; + const css::uno::Reference m_xTypeMap; + const css::uno::Reference m_xContext; + css::uno::Reference m_xDoc; + css::uno::Reference m_xFrame; +}; +} +} + +#endif // INCLUDED_WRITERPERFECT_QA_UNIT_WPFTLOADER_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3