diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /vcl/source/uitest/uno/uitest_uno.cxx | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vcl/source/uitest/uno/uitest_uno.cxx')
-rw-r--r-- | vcl/source/uitest/uno/uitest_uno.cxx | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/vcl/source/uitest/uno/uitest_uno.cxx b/vcl/source/uitest/uno/uitest_uno.cxx new file mode 100644 index 000000000..4e5a6e0e0 --- /dev/null +++ b/vcl/source/uitest/uno/uitest_uno.cxx @@ -0,0 +1,121 @@ +/* -*- 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/. + */ + +#include <cppuhelper/compbase.hxx> +#include <cppuhelper/basemutex.hxx> +#include <cppuhelper/supportsservice.hxx> +#include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> +#include <com/sun/star/ui/test/XUITest.hpp> + +#include <memory> + +#include <vcl/uitest/uitest.hxx> +#include <vcl/svapp.hxx> +#include <vcl/window.hxx> + +#include "uiobject_uno.hxx" + +namespace +{ + typedef ::cppu::WeakComponentImplHelper < + css::ui::test::XUITest, css::lang::XServiceInfo + > UITestBase; + +class UITestUnoObj : public cppu::BaseMutex, + public UITestBase +{ +private: + std::unique_ptr<UITest> mpUITest; + +public: + + UITestUnoObj(); + + sal_Bool SAL_CALL executeCommand(const OUString& rCommand) override; + + sal_Bool SAL_CALL executeCommandWithParameters(const OUString& rCommand, + const css::uno::Sequence< css::beans::PropertyValue >& rArgs) override; + + sal_Bool SAL_CALL executeDialog(const OUString& rCommand) override; + + css::uno::Reference<css::ui::test::XUIObject> SAL_CALL getTopFocusWindow() override; + + css::uno::Reference<css::ui::test::XUIObject> SAL_CALL getFloatWindow() override; + + OUString SAL_CALL getImplementationName() override; + + sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override; + + css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; +}; + +} + +UITestUnoObj::UITestUnoObj(): + UITestBase(m_aMutex), + mpUITest(new UITest) +{ +} + +sal_Bool SAL_CALL UITestUnoObj::executeCommand(const OUString& rCommand) +{ + SolarMutexGuard aGuard; + return UITest::executeCommand(rCommand); +} + +sal_Bool SAL_CALL UITestUnoObj::executeCommandWithParameters(const OUString& rCommand, + const css::uno::Sequence< css::beans::PropertyValue >& rArgs) +{ + SolarMutexGuard aGuard; + return UITest::executeCommandWithParameters(rCommand,rArgs); +} + +sal_Bool SAL_CALL UITestUnoObj::executeDialog(const OUString& rCommand) +{ + SolarMutexGuard aGuard; + return UITest::executeDialog(rCommand); +} + +css::uno::Reference<css::ui::test::XUIObject> SAL_CALL UITestUnoObj::getTopFocusWindow() +{ + SolarMutexGuard aGuard; + std::unique_ptr<UIObject> pObj = UITest::getFocusTopWindow(); + return new UIObjectUnoObj(std::move(pObj)); +} + +css::uno::Reference<css::ui::test::XUIObject> SAL_CALL UITestUnoObj::getFloatWindow() +{ + SolarMutexGuard aGuard; + std::unique_ptr<UIObject> pObj = UITest::getFloatWindow(); + return new UIObjectUnoObj(std::move(pObj)); +} + +OUString SAL_CALL UITestUnoObj::getImplementationName() +{ + return "org.libreoffice.uitest.UITest"; +} + +sal_Bool UITestUnoObj::supportsService(OUString const & ServiceName) +{ + return cppu::supportsService(this, ServiceName); +} + +css::uno::Sequence<OUString> UITestUnoObj::getSupportedServiceNames() +{ + return { "com.sun.star.ui.test.UITest" }; +} + +extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* +UITest_get_implementation(css::uno::XComponentContext*, css::uno::Sequence<css::uno::Any> const &) +{ + return cppu::acquire(new UITestUnoObj()); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |