diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-01-09 23:40:53 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:01:31 +0200 |
commit | 070d9231560ab8272fe3baa392d9cf3a2f7d6f95 (patch) | |
tree | d1788e41f2e2a944513916323aab8d89504679a9 /offapi | |
parent | b6d51e4f0a5e4c8d56e460155abdc1f4e008c887 (diff) |
uitest: improve the UITest UNO object
Change-Id: I88eb14bb0846ee8baff9c3d15ee93d777601f260
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 3 | ||||
-rw-r--r-- | offapi/com/sun/star/ui/test/UITest.idl | 29 | ||||
-rw-r--r-- | offapi/com/sun/star/ui/test/XUIObject.idl | 2 |
3 files changed, 34 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index a81177ddc8b3..543ae6e5b899 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -437,6 +437,9 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/ui/dialogs,\ Wizard \ XSLTFilterDialog \ )) +$(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/ui/test,\ + UITest \ +)) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/util,\ JobManager \ NumberFormatter \ 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 <com/sun/star/ui/test/XUITest.idl> + + +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); }; }; }; }; }; }; |