加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cmd_windowsize.c 3.68 KB
一键复制 编辑 原始数据 按行查看 历史
Jordan Sissel 提交于 2021-08-03 17:11 . Fix compiler warnings. (#344)
#include "xdo_cmd.h"
#include <string.h>
int cmd_windowsize(context_t *context) {
int ret = 0;
unsigned int width, height;
int is_width_percent = 0, is_height_percent = 0;
int c;
int opsync = 0;
int use_hints = 0;
enum { opt_unused, opt_help, opt_usehints, opt_sync };
struct option longopts[] = {
{ "usehints", 0, NULL, opt_usehints },
{ "help", no_argument, NULL, opt_help },
{ "sync", no_argument, NULL, opt_sync },
{ 0, 0, 0, 0 },
};
int size_flags = 0;
char *cmd = *context->argv;
int option_index;
static const char *usage =
"Usage: %s [--sync] [--usehints] [window=%1] width height\n"
HELP_SEE_WINDOW_STACK
"--usehints - Use window sizing hints (like font size in terminals)\n"
"--sync - only exit once the window has resized\n";
while ((c = getopt_long_only(context->argc, context->argv, "+uh",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
case opt_help:
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
case 'u':
case opt_usehints:
use_hints = 1;
break;
case opt_sync:
opsync = 1;
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
const char *window_arg = "%1";
if (!window_get_arg(context, 2, 0, &window_arg)) {
fprintf(stderr, "Invalid argument count, got %d, expected %d\n",
3, context->argc);
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
/* Use percentage if given a percent. */
if (strchr(context->argv[0], '%')) {
is_width_percent = 1;
}
if (strchr(context->argv[1], '%')) {
is_height_percent = 1;
}
if (use_hints) {
if (!is_height_percent) {
size_flags |= SIZE_USEHINTS_Y;
}
if (!is_width_percent) {
size_flags |= SIZE_USEHINTS_X;
}
}
width = (unsigned int)strtoul(context->argv[0], NULL, 0);
height = (unsigned int)strtoul(context->argv[1], NULL, 0);
consume_args(context, 2);
XWindowAttributes wattr;
unsigned int original_w, original_h;
unsigned int root_w, root_h; /* for percent */
window_each(context, window_arg, {
if (is_width_percent || is_height_percent) {
Window root = 0;
XGetWindowAttributes(context->xdo->xdpy, window, &wattr);
root = wattr.root;
xdo_get_window_size(context->xdo, root, &root_w, &root_h);
if (is_width_percent) {
width = (root_w * width / 100);
}
if (is_height_percent) {
height = (root_h * height / 100);
}
}
if (opsync) {
unsigned int w = width;
unsigned int h = height;
xdo_get_window_size(context->xdo, window, &original_w, &original_h);
if (size_flags & SIZE_USEHINTS_X) {
xdo_translate_window_with_sizehint(context->xdo, window, w, h, &w, NULL);
}
if (size_flags & SIZE_USEHINTS_Y) {
xdo_translate_window_with_sizehint(context->xdo, window, w, h, NULL, &h);
}
if (original_w == w && original_h == h) {
/* Skip, this window doesn't need to move. */
break;
}
}
ret = xdo_set_window_size(context->xdo, window, width, height, size_flags);
if (ret) {
fprintf(stderr, "xdo_set_window_size on window:%ld reported an error\n",
window);
return ret;
}
if (opsync) {
//xdo_wait_for_window_size(context->xdo, window, width, height, 0,
//SIZE_TO);
xdo_wait_for_window_size(context->xdo, window, original_w, original_h, 0,
SIZE_FROM);
}
}); /* window_each(...) */
return ret;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化