summaryrefslogtreecommitdiffstats
path: root/writerperfect/qa/unit/WpftLoader.hxx
blob: 646e3a3b6aabe23d630696795b04fb4638392600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* -*- 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/.
 */

#pragma once

#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 OUString& rURL, const css::uno::Reference<css::document::XFilter>& rxFilter,
               const 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 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 OUString& rTypeName);

private:
    const OUString m_aURL;
    const css::uno::Reference<css::io::XInputStream> m_xInputStream;
    const 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;
};
}
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */