1f7441211a
Change-Id: I6830da0c6692f0be212e0d45597fa563917b5fb2
109 lines
2.6 KiB
C++
109 lines
2.6 KiB
C++
/* -*- 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 <com/sun/star/uno/Reference.hxx>
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
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 rtl::OUString &rURL,
|
|
const css::uno::Reference<css::document::XFilter> &rxFilter,
|
|
const rtl::OUString &rFactoryURL,
|
|
const css::uno::Reference<css::frame::XDesktop2> &rxDesktop,
|
|
const css::uno::Reference<css::container::XNameAccess> &rxTypeMap,
|
|
const css::uno::Reference<css::uno::XComponentContext> &rxContext
|
|
);
|
|
WpftLoader(
|
|
const css::uno::Reference<css::io::XInputStream> &rxInputStream,
|
|
const css::uno::Reference<css::document::XFilter> &rxFilter,
|
|
const rtl::OUString &rFactoryURL,
|
|
const css::uno::Reference<css::frame::XDesktop2> &rxDesktop,
|
|
const css::uno::Reference<css::uno::XComponentContext> &rxContext
|
|
);
|
|
~WpftLoader();
|
|
|
|
const css::uno::Reference<css::lang::XComponent> &getDocument() const;
|
|
|
|
private:
|
|
bool impl_load();
|
|
void impl_dispose();
|
|
|
|
void impl_detectFilterName(css::uno::Sequence<css::beans::PropertyValue> &rDescriptor, const rtl::OUString &rTypeName);
|
|
|
|
private:
|
|
const rtl::OUString m_aURL;
|
|
const css::uno::Reference<css::io::XInputStream> m_xInputStream;
|
|
const rtl::OUString m_aFactoryURL;
|
|
const css::uno::Reference<css::document::XFilter> m_xFilter;
|
|
const css::uno::Reference<css::frame::XDesktop2> m_xDesktop;
|
|
const css::uno::Reference<css::container::XNameAccess> m_xTypeMap;
|
|
const css::uno::Reference<css::uno::XComponentContext> m_xContext;
|
|
css::uno::Reference<css::lang::XComponent> m_xDoc;
|
|
css::uno::Reference<css::frame::XFrame> m_xFrame;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // INCLUDED_WRITERPERFECT_QA_UNIT_WPFTLOADER_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|