You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
483 B
19 lines
483 B
/* Wrap XLIB code in a new file as it defines keywords that conflict with Qt |
|
|
|
SPDX-FileCopyrightText: 2017 David Edmundson <davidedmundson@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later |
|
*/ |
|
|
|
#include "xtestsender.h" |
|
#include <X11/extensions/XTest.h> |
|
|
|
void sendXTestPressed(Display *display, int button) |
|
{ |
|
XTestFakeButtonEvent(display, button, true, 0); |
|
} |
|
|
|
void sendXTestReleased(Display *display, int button) |
|
{ |
|
XTestFakeButtonEvent(display, button, false, 0); |
|
}
|
|
|