calc: on editing invalidation of view with different zoom is wrong
[LibreOffice.git] / testtools / source / bridgetest / multi.hxx
blobc4171e8ee5d3dfa6535437e5d69ab94988c0e9a6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_TESTTOOLS_SOURCE_BRIDGETEST_MULTI_HXX
21 #define INCLUDED_TESTTOOLS_SOURCE_BRIDGETEST_MULTI_HXX
23 #include <sal/config.h>
25 #include <com/sun/star/uno/Reference.hxx>
26 #include <cppuhelper/implbase.hxx>
27 #include <rtl/ustring.hxx>
28 #include <sal/types.h>
29 #include <test/testtools/bridgetest/XMulti.hpp>
31 #include "dllapi.hxx"
33 namespace testtools::bridgetest {
35 class Multi: public cppu::WeakImplHelper< test::testtools::bridgetest::XMulti >
37 public:
38 Multi(): m_attribute1(0.0), m_attribute3(0.0) {}
40 virtual double SAL_CALL getatt1() override
41 { return m_attribute1; }
43 virtual void SAL_CALL setatt1(double value) override
44 { m_attribute1 = value; }
46 virtual sal_Int32 SAL_CALL fn11(sal_Int32 arg) override
47 { return 11 * arg; }
49 virtual OUString SAL_CALL fn12(OUString const & arg) override
50 { return "12" + arg; }
52 virtual sal_Int32 SAL_CALL fn21(sal_Int32 arg) override
53 { return 21 * arg; }
55 virtual OUString SAL_CALL fn22(OUString const & arg) override
56 { return "22" + arg; }
58 virtual double SAL_CALL getatt3() override
59 { return m_attribute3; }
61 virtual void SAL_CALL setatt3(double value) override
62 { m_attribute3 = value; }
64 virtual sal_Int32 SAL_CALL fn31(sal_Int32 arg) override
65 { return 31 * arg; }
67 virtual OUString SAL_CALL fn32(OUString const & arg) override
68 { return "32" + arg; }
70 virtual sal_Int32 SAL_CALL fn33() override
71 { return 33; }
73 virtual sal_Int32 SAL_CALL fn41(sal_Int32 arg) override
74 { return 41 * arg; }
76 virtual sal_Int32 SAL_CALL fn61(sal_Int32 arg) override
77 { return 61 * arg; }
79 virtual OUString SAL_CALL fn62(OUString const & arg) override
80 { return "62" + arg; }
82 virtual sal_Int32 SAL_CALL fn71(sal_Int32 arg) override
83 { return 71 * arg; }
85 virtual OUString SAL_CALL fn72(OUString const & arg) override
86 { return "72" + arg; }
88 virtual sal_Int32 SAL_CALL fn73() override
89 { return 73; }
91 private:
92 double m_attribute1;
93 double m_attribute3;
96 LO_DLLPUBLIC_TESTTOOLS
97 OUString testMulti( css::uno::Reference< test::testtools::bridgetest::XMulti > const & multi);
101 #endif
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */