From 070d9231560ab8272fe3baa392d9cf3a2f7d6f95 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sat, 9 Jan 2016 23:40:53 +0100 Subject: uitest: improve the UITest UNO object Change-Id: I88eb14bb0846ee8baff9c3d15ee93d777601f260 --- offapi/com/sun/star/ui/test/UITest.idl | 29 +++++++++++++++++++++++++++++ offapi/com/sun/star/ui/test/XUIObject.idl | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 offapi/com/sun/star/ui/test/UITest.idl (limited to 'offapi/com/sun') diff --git a/offapi/com/sun/star/ui/test/UITest.idl b/offapi/com/sun/star/ui/test/UITest.idl new file mode 100644 index 000000000000..59bc7348973e --- /dev/null +++ b/offapi/com/sun/star/ui/test/UITest.idl @@ -0,0 +1,29 @@ +/* -*- 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 __com_sun_star_ui_UIElementFactory_idl__ +#define __com_sun_star_ui_UIElementFactory_idl__ + +#include + + +module com { module sun { module star { module ui { module test { + + +service UITest +{ + interface com::sun::star::ui::test::XUITest; +}; + +}; }; }; }; }; + +#endif + + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/ui/test/XUIObject.idl b/offapi/com/sun/star/ui/test/XUIObject.idl index b6c148202785..0e5192674028 100644 --- a/offapi/com/sun/star/ui/test/XUIObject.idl +++ b/offapi/com/sun/star/ui/test/XUIObject.idl @@ -15,6 +15,8 @@ module com { module sun { module star { module ui { module test { interface XUIObject { XUIObject getChild([in] string id); + + void executeAction([in] string action); }; }; }; }; }; }; -- cgit