summaryrefslogtreecommitdiff
path: root/offapi/com/sun
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-01-09 23:40:53 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:01:31 +0200
commit070d9231560ab8272fe3baa392d9cf3a2f7d6f95 (patch)
treed1788e41f2e2a944513916323aab8d89504679a9 /offapi/com/sun
parentb6d51e4f0a5e4c8d56e460155abdc1f4e008c887 (diff)
uitest: improve the UITest UNO object
Change-Id: I88eb14bb0846ee8baff9c3d15ee93d777601f260
Diffstat (limited to 'offapi/com/sun')
-rw-r--r--offapi/com/sun/star/ui/test/UITest.idl29
-rw-r--r--offapi/com/sun/star/ui/test/XUIObject.idl2
2 files changed, 31 insertions, 0 deletions
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);
};
}; }; }; }; };