summaryrefslogtreecommitdiff
path: root/writerperfect/qa/unit/WpftFilterFixture.hxx
blob: 14ad4eafd835b4d684c623a42a13640a7af5ec20 (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
/* -*- 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_WPFTFILTERFIXTURE_HXX
#define INCLUDED_WRITERPERFECT_QA_UNIT_WPFTFILTERFIXTURE_HXX

#include "config_writerperfect.h"

#include "wpftqahelperdllapi.h"

#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>

#include <rtl/ustring.hxx>

#include <test/bootstrapfixture.hxx>

#define REQUIRE_VERSION(major, minor, micro, req_major, req_minor, req_micro) \
    (major) > (req_major) || \
    ((major) == (req_major) && \
        ((minor) > (req_minor) \
         || ((minor) == (req_minor) && ((micro) >= (req_micro)))))

#define REQUIRE_EBOOK_VERSION(major, minor, micro) \
    REQUIRE_VERSION(EBOOK_VERSION_MAJOR, EBOOK_VERSION_MINOR, EBOOK_VERSION_MICRO, major, minor, micro)

#define REQUIRE_ETONYEK_VERSION(major, minor, micro) \
    REQUIRE_VERSION(ETONYEK_VERSION_MAJOR, ETONYEK_VERSION_MINOR, ETONYEK_VERSION_MICRO, major, minor, micro)

#define REQUIRE_MWAW_VERSION(major, minor, micro) \
    REQUIRE_VERSION(MWAW_VERSION_MAJOR, MWAW_VERSION_MINOR, MWAW_VERSION_MICRO, major, minor, micro)

#define REQUIRE_STAROFFICE_VERSION(major, minor, micro) \
    REQUIRE_VERSION(STAROFFICE_VERSION_MAJOR, STAROFFICE_VERSION_MINOR, STAROFFICE_VERSION_MICRO, major, minor, micro)

#define REQUIRE_WPS_VERSION(major, minor, micro) \
    REQUIRE_VERSION(WPS_VERSION_MAJOR, WPS_VERSION_MINOR, WPS_VERSION_MICRO, major, minor, micro)

namespace com
{
namespace sun
{
namespace star
{
namespace container
{
class XNameAccess;
}
namespace document
{
class XTypeDetection;
}
namespace frame
{
class XDesktop2;
}
}
}
}

namespace writerperfect
{
namespace test
{

class WPFTQAHELPER_DLLPUBLIC WpftFilterFixture : public ::test::BootstrapFixture
{
public:
    virtual void setUp() override;

protected:
    css::uno::Reference<css::frame::XDesktop2> m_xDesktop;
    css::uno::Reference<css::document::XTypeDetection> m_xTypeDetection;
    css::uno::Reference<css::container::XNameAccess> m_xTypeMap;
};

}
}

#endif // INCLUDED_WRITERPERFECT_QA_UNIT_WPFTFILTERFIXTURE_HXX

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