Update Catalan translation
[cheese.git] / tests / test-webcam-button.c
blob1fe39a23ff4226a132004180d9326ef3521c4db0
1 /* emit foo webcam button event */
3 /* gcc -o test-webcam-button test-webcam-button.c -lX11 -lXtst */
5 #include <stdio.h>
6 #include <X11/Xlib.h>
7 #include <X11/extensions/XTest.h>
8 #include <X11/XF86keysym.h>
10 int
11 main (void)
13 Display *dpy;
15 dpy = XOpenDisplay (NULL);
17 printf ("Emitting fake Webcam button press in 2 seconds...\n");
18 printf ("Focus Cheese window to make it receive the event\n");
20 XTestFakeKeyEvent (dpy, XKeysymToKeycode (dpy, XF86XK_WebCam), True, 2000);
21 XTestFakeKeyEvent (dpy, XKeysymToKeycode (dpy, XF86XK_WebCam), False, CurrentTime);
23 XCloseDisplay (dpy);
24 return 0;