gpt4 book ai didi

c - 在 x11 中记录多个按键

转载 作者:行者123 更新时间:2023-11-30 16:23:17 25 4
gpt4 key购买 nike

我想记录同时按下的按键并使用 C 测试 x11 中的功能。例如,我可以设置如下内容:如果按下“Q”, 让窗口调整大小。

但是我找不到使用 Ctrl+Enter 等组合键执行相同操作的方法,以便当按下“Ctrl+Enter”时,窗口会调整大小。

x11 中是否有任何事件类型或掩码或函数用于记录这些同时发生的按键事件?

下面的代码是我迄今为止编写的用于记录单个按键并执行指定操作的代码。

// USES KEYBOARD KEY TO RESIZE A WINDOW

// Compile : gcc -o go key_and_win.c -lX11

#include <X11/Xlib.h>
#include <stdio.h>
#include <stdlib.h>

int main()
{
Display *d;
Window window;
XEvent event, ev;
int s;

/* open connection with the server */
d = XOpenDisplay(NULL);
if (d == NULL)
{
fprintf(stderr, "Cannot open d\n");
exit(1);
}

s = DefaultScreen(d);

/* create window */
window = XCreateSimpleWindow(d, RootWindow(d, s), 10, 10, 200, 200, 1,
BlackPixel(d, s), BlackPixel(d, s));

/* select kind of events we are interested in */
XSelectInput(d, window, StructureNotifyMask | ExposureMask | KeyPressMask | KeyReleaseMask );

/* map (show) the window */
XMapWindow(d, window);

/* event loop */
while (1)
{
XNextEvent(d, &event);

/* keyboard events */
if (event.type == KeyPress)
{
printf( "KeyPress: %x\n", event.xkey.keycode );

if(event.xkey.keycode == 0x18) // Resize on pressing Q as, key Q => 0x18
{
printf("Here in Q\n");

int r = XResizeWindow(d, window, 100, 200); // Resizing the window through Q keypress
if(r==BadValue || r==BadWindow)
printf("Error in resizing\n");

XNextEvent(d, &event); // To get ConfigureNotify event
if(event.type == ConfigureNotify)
printf("Resized!\n");
else
printf("Not resized\n");
//XMapWindow(d, window); // Map the resized window (not necessary)
}
/* exit on ESC key press */
if ( event.xkey.keycode == 0x09 )
break;
}
}

/* close connection to server */
XCloseDisplay(d);

return 0;
}

最佳答案

你必须查看event.xkey.state

来自10.5.2 Keyboard and Pointer Events :state 成员设置为指示事件之前指针按钮和修饰键的逻辑状态,它是一个或多个按钮或修饰键掩码的按位或:Button1Mask、Button2Mask、Button3Mask、Button4Mask、Button5Mask 、ShiftMaskLockMaskControlMask、Mod1Mask、Mod2Mask、Mod3Mask、Mod4Mask 和 Mod5Mask。

关于c - 在 x11 中记录多个按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54043911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com