代码拉取完成,页面将自动刷新
同步操作将从 mirrors_jordansissel/xdotool 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "xdo_cmd.h"
#include <string.h>
int cmd_mouseup(context_t *context) {
int ret = 0;
int button;
char *cmd = *context->argv;
char *window_arg = NULL;
charcodemap_t *active_mods = NULL;
int active_mods_n;
int clear_modifiers = 0;
int c;
static struct option longopts[] = {
{ "clearmodifiers", no_argument, NULL, 'c' },
{ "help", no_argument, NULL, 'h' },
{ "window", required_argument, NULL, 'w' },
{ 0, 0, 0, 0 },
};
static const char *usage =
"Usage: %s [--clearmodifiers] [--window WINDOW] <button>\n"
"--window <windowid> - specify a window to send keys to\n"
"--clearmodifiers - reset active modifiers (alt, etc) while typing\n";
int option_index;
while ((c = getopt_long_only(context->argc, context->argv, "+cw:h",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
break;
case 'c':
clear_modifiers = 1;
break;
case 'w':
window_arg = strdup(optarg);
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
if (context->argc < 1) {
fprintf(stderr, usage, cmd);
fprintf(stderr, "You specified the wrong number of args.\n");
return 1;
}
button = atoi(context->argv[0]);
window_each(context, window_arg, {
if (clear_modifiers) {
xdo_get_active_modifiers(context->xdo, &active_mods, &active_mods_n);
xdo_clear_active_modifiers(context->xdo, window, active_mods, active_mods_n);
}
ret = xdo_mouse_up(context->xdo, window, button);
if (clear_modifiers) {
xdo_set_active_modifiers(context->xdo, window, active_mods, active_mods_n);
free(active_mods);
}
if (ret) {
fprintf(stderr, "xdo_mouse_up reported an error on window %ld\n", window);
return ret;
}
}); /* window_each(...) */
free(window_arg);
consume_args(context, 1);
return ret;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。