summaryrefslogtreecommitdiff
path: root/vapi/xtst.vapi
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-05-03 07:25:38 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-05-03 07:25:38 +0200
commitdaab38595df60c0ef3e142c195382cb35d448203 (patch)
tree4186938621912272570b4187a4d8ef8e3ca87b47 /vapi/xtst.vapi
parentfbd5a9eb0d29bdfd9f5f0892190452e17871afd9 (diff)
parenta1c05d93bbb3c1bdb0c0fed9d7110804037cfd55 (diff)
Merge tag 'upstream/0.6.2'
Upstream version 0.6.2
Diffstat (limited to 'vapi/xtst.vapi')
-rw-r--r--vapi/xtst.vapi60
1 files changed, 0 insertions, 60 deletions
diff --git a/vapi/xtst.vapi b/vapi/xtst.vapi
deleted file mode 100644
index a773dfa..0000000
--- a/vapi/xtst.vapi
+++ /dev/null
@@ -1,60 +0,0 @@
-/* xtst.vapi
- *
- * Copyright (C) 2011 Alexander Kurtz
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Author:
- * Alexander Kurtz <kurtz.alex@googlemail.com>
- */
-
-
-[CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "X11/extensions/XTest.h")]
-namespace X {
- class Test {
- [CCode (cname = "XTestQueryExtension")]
- public static bool query_extension(Display display, out int event_base_return, out int error_base_return, out int major_version_return, out int minor_version_return);
-
- [CCode (cname = "XTestCompareCursorWithWindow")]
- public static bool compare_cursor_with_window(Display display, Window window, Cursor cursor);
-
- [CCode (cname = "XTestCompareCurrentCursorWithWindow")]
- public static bool compare_current_cursor_with_window(Display display, Window window);
-
- [CCode (cname = "XTestFakeKeyEvent")]
- public static int fake_key_event(Display display, uint keycode, bool is_press, ulong delay);
-
- [CCode (cname = "XTestFakeButtonEvent")]
- public static int fake_button_event(Display display, uint button, bool is_press, ulong delay);
-
- [CCode (cname = "XTestFakeMotionEvent")]
- public static int fake_motion_event(Display display, int screen_number, int x, int y, ulong delay);
-
- [CCode (cname = "XTestFakeRelativeMotionEvent")]
- public static int fake_relative_motion_event(Display display, int screen_number, int x, int y, ulong delay);
-
- [CCode (cname = "XTestGrabControl")]
- public static int grab_control(Display display, bool impervious);
-
- [CCode (cname = "XTestSetGContextOfGC")]
- public static void set_g_context_of_gc(GC gc, GContext gid);
-
- [CCode (cname = "XTestSetVisualIDOfVisual")]
- public static void set_visual_id_of_visual(Visual visual, VisualID visualid);
-
- [CCode (cname = "XTestDiscard")]
- public static Status discard(Display display);
- }
-}