summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-01-09 03:48:52 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:01:24 +0200
commit7333783ee5849ca40fb8079cfc32ea40eee4bcfc (patch)
tree384d988c20b03743a3972dbdbf6e0d74d1e23704 /offapi/com/sun/star
parent8eaa56046d0c072256ac0b0ca563006b83b79d6b (diff)
uitest: add UNO interface for ui testing
Change-Id: I0ee5d1e93808103a1541ced6fc7ea9d05a70fc89
Diffstat (limited to 'offapi/com/sun/star')
-rw-r--r--offapi/com/sun/star/ui/test/XUIObject.idl24
-rw-r--r--offapi/com/sun/star/ui/test/XUITest.idl28
2 files changed, 52 insertions, 0 deletions
diff --git a/offapi/com/sun/star/ui/test/XUIObject.idl b/offapi/com/sun/star/ui/test/XUIObject.idl
new file mode 100644
index 000000000000..b6c148202785
--- /dev/null
+++ b/offapi/com/sun/star/ui/test/XUIObject.idl
@@ -0,0 +1,24 @@
+/* -*- 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_test_XUIObject_idl__
+#define __com_sun_star_ui_test_XUIObject_idl__
+
+module com { module sun { module star { module ui { module test {
+
+interface XUIObject
+{
+ XUIObject getChild([in] string id);
+};
+
+}; }; }; }; };
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/ui/test/XUITest.idl b/offapi/com/sun/star/ui/test/XUITest.idl
new file mode 100644
index 000000000000..87a091202ffd
--- /dev/null
+++ b/offapi/com/sun/star/ui/test/XUITest.idl
@@ -0,0 +1,28 @@
+/* -*- 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_test_XUITest_idl__
+#define __com_sun_star_ui_test_XUITest_idl__
+
+#include <com/sun/star/ui/test/XUIObject.idl>
+
+module com { module sun { module star { module ui { module test {
+
+interface XUITest
+{
+ void executeCommand([in] string command);
+
+ XUIObject getTopFocusWindow();
+};
+
+}; }; }; }; };
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */