mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-02-12 04:28:35 -05:00
opt: animations logic all use the int type
avoid the coordinates being forcibly limited to positive numbers
This commit is contained in:
parent
0d13b1002e
commit
2771053ee6
21 changed files with 876 additions and 861 deletions
|
|
@ -1,4 +1,4 @@
|
|||
int bind_to_view(const Arg *arg) {
|
||||
int32_t bind_to_view(const Arg *arg) {
|
||||
|
||||
uint32_t target = arg->ui;
|
||||
|
||||
|
|
@ -15,14 +15,14 @@ int bind_to_view(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
if ((int)target == INT_MIN && selmon->pertag->curtag == 0) {
|
||||
if ((int32_t)target == INT_MIN && selmon->pertag->curtag == 0) {
|
||||
if (view_current_to_back && selmon->pertag->prevtag)
|
||||
target = 1 << (selmon->pertag->prevtag - 1);
|
||||
else
|
||||
target = 0;
|
||||
}
|
||||
|
||||
if (target == 0 || (int)target == INT_MIN) {
|
||||
if (target == 0 || (int32_t)target == INT_MIN) {
|
||||
view(&(Arg){.ui = ~0 & TAGMASK, .i = arg->i}, false);
|
||||
} else {
|
||||
view(&(Arg){.ui = target, .i = arg->i}, true);
|
||||
|
|
@ -30,7 +30,7 @@ int bind_to_view(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int chvt(const Arg *arg) {
|
||||
int32_t chvt(const Arg *arg) {
|
||||
|
||||
if (selmon) {
|
||||
chvt_backup_tag = selmon->pertag->curtag;
|
||||
|
|
@ -41,7 +41,7 @@ int chvt(const Arg *arg) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
int create_virtual_output(const Arg *arg) {
|
||||
int32_t create_virtual_output(const Arg *arg) {
|
||||
|
||||
if (!wlr_backend_is_multi(backend)) {
|
||||
wlr_log(WLR_ERROR, "Expected a multi backend");
|
||||
|
|
@ -60,7 +60,7 @@ int create_virtual_output(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int destroy_all_virtual_output(const Arg *arg) {
|
||||
int32_t destroy_all_virtual_output(const Arg *arg) {
|
||||
|
||||
if (!wlr_backend_is_multi(backend)) {
|
||||
wlr_log(WLR_ERROR, "Expected a multi backend");
|
||||
|
|
@ -79,12 +79,12 @@ int destroy_all_virtual_output(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int defaultgaps(const Arg *arg) {
|
||||
int32_t defaultgaps(const Arg *arg) {
|
||||
setgaps(gappoh, gappov, gappih, gappiv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int exchange_client(const Arg *arg) {
|
||||
int32_t exchange_client(const Arg *arg) {
|
||||
Client *c = selmon->sel;
|
||||
if (!c || c->isfloating)
|
||||
return 0;
|
||||
|
|
@ -96,7 +96,7 @@ int exchange_client(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int exchange_stack_client(const Arg *arg) {
|
||||
int32_t exchange_stack_client(const Arg *arg) {
|
||||
Client *c = selmon->sel;
|
||||
Client *tc = NULL;
|
||||
if (!c || c->isfloating || c->isfullscreen || c->ismaximizescreen)
|
||||
|
|
@ -111,7 +111,7 @@ int exchange_stack_client(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int focusdir(const Arg *arg) {
|
||||
int32_t focusdir(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
c = direction_select(arg);
|
||||
if (c) {
|
||||
|
|
@ -131,7 +131,7 @@ int focusdir(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int focuslast(const Arg *arg) {
|
||||
int32_t focuslast(const Arg *arg) {
|
||||
|
||||
Client *c = NULL;
|
||||
Client *tc = NULL;
|
||||
|
|
@ -163,7 +163,7 @@ int focuslast(const Arg *arg) {
|
|||
if (!tc || !client_surface(tc)->mapped)
|
||||
return 0;
|
||||
|
||||
if ((int)tc->tags > 0) {
|
||||
if ((int32_t)tc->tags > 0) {
|
||||
focusclient(tc, 1);
|
||||
target = get_tags_first_tag(tc->tags);
|
||||
view(&(Arg){.ui = target}, true);
|
||||
|
|
@ -171,12 +171,12 @@ int focuslast(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggle_trackpad_enable(const Arg *arg) {
|
||||
int32_t toggle_trackpad_enable(const Arg *arg) {
|
||||
disable_trackpad = !disable_trackpad;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int focusmon(const Arg *arg) {
|
||||
int32_t focusmon(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
Monitor *m = NULL;
|
||||
Monitor *tm = NULL;
|
||||
|
|
@ -216,7 +216,7 @@ int focusmon(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int focusstack(const Arg *arg) {
|
||||
int32_t focusstack(const Arg *arg) {
|
||||
/* Focus the next or previous client (in tiling order) on selmon */
|
||||
Client *sel = focustop(selmon);
|
||||
Client *tc = NULL;
|
||||
|
|
@ -239,7 +239,7 @@ int focusstack(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int incnmaster(const Arg *arg) {
|
||||
int32_t incnmaster(const Arg *arg) {
|
||||
if (!arg || !selmon)
|
||||
return 0;
|
||||
selmon->pertag->nmasters[selmon->pertag->curtag] =
|
||||
|
|
@ -248,49 +248,49 @@ int incnmaster(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int incgaps(const Arg *arg) {
|
||||
int32_t incgaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh + arg->i, selmon->gappov + arg->i,
|
||||
selmon->gappih + arg->i, selmon->gappiv + arg->i);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int incigaps(const Arg *arg) {
|
||||
int32_t incigaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh, selmon->gappov, selmon->gappih + arg->i,
|
||||
selmon->gappiv + arg->i);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int incogaps(const Arg *arg) {
|
||||
int32_t incogaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh + arg->i, selmon->gappov + arg->i, selmon->gappih,
|
||||
selmon->gappiv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int incihgaps(const Arg *arg) {
|
||||
int32_t incihgaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh, selmon->gappov, selmon->gappih + arg->i,
|
||||
selmon->gappiv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int incivgaps(const Arg *arg) {
|
||||
int32_t incivgaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh, selmon->gappov, selmon->gappih,
|
||||
selmon->gappiv + arg->i);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int incohgaps(const Arg *arg) {
|
||||
int32_t incohgaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh + arg->i, selmon->gappov, selmon->gappih,
|
||||
selmon->gappiv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int incovgaps(const Arg *arg) {
|
||||
int32_t incovgaps(const Arg *arg) {
|
||||
setgaps(selmon->gappoh, selmon->gappov + arg->i, selmon->gappih,
|
||||
selmon->gappiv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int setmfact(const Arg *arg) {
|
||||
int32_t setmfact(const Arg *arg) {
|
||||
float f;
|
||||
Client *c = NULL;
|
||||
|
||||
|
|
@ -312,7 +312,7 @@ int setmfact(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int killclient(const Arg *arg) {
|
||||
int32_t killclient(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
c = selmon->sel;
|
||||
if (c) {
|
||||
|
|
@ -321,7 +321,7 @@ int killclient(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int moveresize(const Arg *arg) {
|
||||
int32_t moveresize(const Arg *arg) {
|
||||
if (cursor_mode != CurNormal && cursor_mode != CurPressed)
|
||||
return 0;
|
||||
xytonode(cursor->x, cursor->y, NULL, &grabc, NULL, NULL, NULL);
|
||||
|
|
@ -359,7 +359,7 @@ int moveresize(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int movewin(const Arg *arg) {
|
||||
int32_t movewin(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
c = selmon->sel;
|
||||
if (!c || c->isfullscreen)
|
||||
|
|
@ -397,15 +397,15 @@ int movewin(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int quit(const Arg *arg) {
|
||||
int32_t quit(const Arg *arg) {
|
||||
wl_display_terminate(dpy);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int resizewin(const Arg *arg) {
|
||||
int32_t resizewin(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
c = selmon->sel;
|
||||
int offsetx = 0, offsety = 0;
|
||||
int32_t offsetx = 0, offsety = 0;
|
||||
|
||||
if (!c || c->isfullscreen || c->ismaximizescreen)
|
||||
return 0;
|
||||
|
|
@ -468,7 +468,7 @@ int resizewin(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int restore_minimized(const Arg *arg) {
|
||||
int32_t restore_minimized(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
|
||||
if (selmon && selmon->isoverview)
|
||||
|
|
@ -500,8 +500,8 @@ int restore_minimized(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int setlayout(const Arg *arg) {
|
||||
int jk;
|
||||
int32_t setlayout(const Arg *arg) {
|
||||
int32_t jk;
|
||||
|
||||
for (jk = 0; jk < LENGTH(layouts); jk++) {
|
||||
if (strcmp(layouts[jk].name, arg->v) == 0) {
|
||||
|
|
@ -515,7 +515,7 @@ int setlayout(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int setkeymode(const Arg *arg) {
|
||||
int32_t setkeymode(const Arg *arg) {
|
||||
snprintf(keymode.mode, sizeof(keymode.mode), "%.27s", arg->v);
|
||||
if (strcmp(keymode.mode, "default") == 0) {
|
||||
keymode.isdefault = true;
|
||||
|
|
@ -526,7 +526,7 @@ int setkeymode(const Arg *arg) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
int set_proportion(const Arg *arg) {
|
||||
int32_t set_proportion(const Arg *arg) {
|
||||
|
||||
if (selmon->isoverview || !is_scroller_layout(selmon))
|
||||
return 0;
|
||||
|
|
@ -546,10 +546,10 @@ int set_proportion(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int smartmovewin(const Arg *arg) {
|
||||
int32_t smartmovewin(const Arg *arg) {
|
||||
Client *c = NULL, *tc = NULL;
|
||||
int nx, ny;
|
||||
int buttom, top, left, right, tar;
|
||||
int32_t nx, ny;
|
||||
int32_t buttom, top, left, right, tar;
|
||||
c = selmon->sel;
|
||||
if (!c || c->isfullscreen)
|
||||
return 0;
|
||||
|
|
@ -647,10 +647,10 @@ int smartmovewin(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int smartresizewin(const Arg *arg) {
|
||||
int32_t smartresizewin(const Arg *arg) {
|
||||
Client *c = NULL, *tc = NULL;
|
||||
int nw, nh;
|
||||
int buttom, top, left, right, tar;
|
||||
int32_t nw, nh;
|
||||
int32_t buttom, top, left, right, tar;
|
||||
c = selmon->sel;
|
||||
if (!c || c->isfullscreen)
|
||||
return 0;
|
||||
|
|
@ -717,7 +717,7 @@ int smartresizewin(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int centerwin(const Arg *arg) {
|
||||
int32_t centerwin(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
c = selmon->sel;
|
||||
|
||||
|
|
@ -744,7 +744,7 @@ int centerwin(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int spawn_shell(const Arg *arg) {
|
||||
int32_t spawn_shell(const Arg *arg) {
|
||||
if (!arg->v)
|
||||
return 0;
|
||||
|
||||
|
|
@ -771,7 +771,7 @@ int spawn_shell(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int spawn(const Arg *arg) {
|
||||
int32_t spawn(const Arg *arg) {
|
||||
|
||||
if (!arg->v)
|
||||
return 0;
|
||||
|
|
@ -787,7 +787,7 @@ int spawn(const Arg *arg) {
|
|||
|
||||
// 2. 解析参数
|
||||
char *argv[64];
|
||||
int argc = 0;
|
||||
int32_t argc = 0;
|
||||
char *token = strtok((char *)arg->v, " ");
|
||||
while (token != NULL && argc < 63) {
|
||||
wordexp_t p;
|
||||
|
|
@ -811,7 +811,7 @@ int spawn(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int spawn_on_empty(const Arg *arg) {
|
||||
int32_t spawn_on_empty(const Arg *arg) {
|
||||
bool is_empty = true;
|
||||
Client *c = NULL;
|
||||
|
||||
|
|
@ -831,7 +831,7 @@ int spawn_on_empty(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int switch_keyboard_layout(const Arg *arg) {
|
||||
int32_t switch_keyboard_layout(const Arg *arg) {
|
||||
if (!kb_group || !kb_group->wlr_group || !seat) {
|
||||
wlr_log(WLR_ERROR, "Invalid keyboard group or seat");
|
||||
return 0;
|
||||
|
|
@ -846,7 +846,7 @@ int switch_keyboard_layout(const Arg *arg) {
|
|||
// 1. 获取当前布局和计算下一个布局
|
||||
xkb_layout_index_t current = xkb_state_serialize_layout(
|
||||
keyboard->xkb_state, XKB_STATE_LAYOUT_EFFECTIVE);
|
||||
const int num_layouts = xkb_keymap_num_layouts(keyboard->keymap);
|
||||
const int32_t num_layouts = xkb_keymap_num_layouts(keyboard->keymap);
|
||||
if (num_layouts < 2) {
|
||||
wlr_log(WLR_INFO, "Only one layout available");
|
||||
return 0;
|
||||
|
|
@ -887,9 +887,9 @@ int switch_keyboard_layout(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int switch_layout(const Arg *arg) {
|
||||
int32_t switch_layout(const Arg *arg) {
|
||||
|
||||
int jk, ji;
|
||||
int32_t jk, ji;
|
||||
char *target_layout_name = NULL;
|
||||
uint32_t len;
|
||||
|
||||
|
|
@ -942,7 +942,7 @@ int switch_layout(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int switch_proportion_preset(const Arg *arg) {
|
||||
int32_t switch_proportion_preset(const Arg *arg) {
|
||||
float target_proportion = 0;
|
||||
|
||||
if (config.scroller_proportion_preset_count == 0) {
|
||||
|
|
@ -958,7 +958,7 @@ int switch_proportion_preset(const Arg *arg) {
|
|||
|
||||
if (selmon->sel) {
|
||||
|
||||
for (int i = 0; i < config.scroller_proportion_preset_count; i++) {
|
||||
for (int32_t i = 0; i < config.scroller_proportion_preset_count; i++) {
|
||||
if (config.scroller_proportion_preset[i] ==
|
||||
selmon->sel->scroller_proportion) {
|
||||
if (i == config.scroller_proportion_preset_count - 1) {
|
||||
|
|
@ -986,13 +986,13 @@ int switch_proportion_preset(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int tag(const Arg *arg) {
|
||||
int32_t tag(const Arg *arg) {
|
||||
Client *target_client = selmon->sel;
|
||||
tag_client(arg, target_client);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int tagmon(const Arg *arg) {
|
||||
int32_t tagmon(const Arg *arg) {
|
||||
Monitor *m = NULL, *cm = NULL;
|
||||
Client *c = focustop(selmon);
|
||||
|
||||
|
|
@ -1036,9 +1036,9 @@ int tagmon(const Arg *arg) {
|
|||
reset_foreign_tolevel(c);
|
||||
|
||||
c->float_geom.width =
|
||||
(int)(c->float_geom.width * c->mon->w.width / selmon->w.width);
|
||||
(int32_t)(c->float_geom.width * c->mon->w.width / selmon->w.width);
|
||||
c->float_geom.height =
|
||||
(int)(c->float_geom.height * c->mon->w.height / selmon->w.height);
|
||||
(int32_t)(c->float_geom.height * c->mon->w.height / selmon->w.height);
|
||||
selmon = c->mon;
|
||||
c->float_geom = setclient_coordinate_center(c, c->float_geom, 0, 0);
|
||||
|
||||
|
|
@ -1063,7 +1063,7 @@ int tagmon(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int tagsilent(const Arg *arg) {
|
||||
int32_t tagsilent(const Arg *arg) {
|
||||
Client *fc = NULL;
|
||||
Client *target_client = NULL;
|
||||
|
||||
|
|
@ -1083,7 +1083,7 @@ int tagsilent(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int tagtoleft(const Arg *arg) {
|
||||
int32_t tagtoleft(const Arg *arg) {
|
||||
if (selmon->sel != NULL &&
|
||||
__builtin_popcount(selmon->tagset[selmon->seltags] & TAGMASK) == 1 &&
|
||||
selmon->tagset[selmon->seltags] > 1) {
|
||||
|
|
@ -1092,7 +1092,7 @@ int tagtoleft(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int tagtoright(const Arg *arg) {
|
||||
int32_t tagtoright(const Arg *arg) {
|
||||
if (selmon->sel != NULL &&
|
||||
__builtin_popcount(selmon->tagset[selmon->seltags] & TAGMASK) == 1 &&
|
||||
selmon->tagset[selmon->seltags] & (TAGMASK >> 1)) {
|
||||
|
|
@ -1101,7 +1101,7 @@ int tagtoright(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggle_named_scratchpad(const Arg *arg) {
|
||||
int32_t toggle_named_scratchpad(const Arg *arg) {
|
||||
Client *target_client = NULL;
|
||||
char *arg_id = arg->v;
|
||||
char *arg_title = arg->v2;
|
||||
|
|
@ -1120,13 +1120,13 @@ int toggle_named_scratchpad(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggle_render_border(const Arg *arg) {
|
||||
int32_t toggle_render_border(const Arg *arg) {
|
||||
render_border = !render_border;
|
||||
arrange(selmon, false, false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int toggle_scratchpad(const Arg *arg) {
|
||||
int32_t toggle_scratchpad(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
bool hit = false;
|
||||
Client *tmp = NULL;
|
||||
|
|
@ -1155,14 +1155,14 @@ int toggle_scratchpad(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int togglefakefullscreen(const Arg *arg) {
|
||||
int32_t togglefakefullscreen(const Arg *arg) {
|
||||
Client *sel = focustop(selmon);
|
||||
if (sel)
|
||||
setfakefullscreen(sel, !sel->isfakefullscreen);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int togglefloating(const Arg *arg) {
|
||||
int32_t togglefloating(const Arg *arg) {
|
||||
Client *sel = focustop(selmon);
|
||||
|
||||
if (selmon && selmon->isoverview)
|
||||
|
|
@ -1181,7 +1181,7 @@ int togglefloating(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int togglefullscreen(const Arg *arg) {
|
||||
int32_t togglefullscreen(const Arg *arg) {
|
||||
Client *sel = focustop(selmon);
|
||||
if (!sel)
|
||||
return 0;
|
||||
|
|
@ -1197,7 +1197,7 @@ int togglefullscreen(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggleglobal(const Arg *arg) {
|
||||
int32_t toggleglobal(const Arg *arg) {
|
||||
if (!selmon->sel)
|
||||
return 0;
|
||||
if (selmon->sel->is_in_scratchpad) {
|
||||
|
|
@ -1213,13 +1213,13 @@ int toggleglobal(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int togglegaps(const Arg *arg) {
|
||||
int32_t togglegaps(const Arg *arg) {
|
||||
enablegaps ^= 1;
|
||||
arrange(selmon, false, false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int togglemaximizescreen(const Arg *arg) {
|
||||
int32_t togglemaximizescreen(const Arg *arg) {
|
||||
Client *sel = focustop(selmon);
|
||||
if (!sel)
|
||||
return 0;
|
||||
|
|
@ -1237,7 +1237,7 @@ int togglemaximizescreen(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggleoverlay(const Arg *arg) {
|
||||
int32_t toggleoverlay(const Arg *arg) {
|
||||
if (!selmon->sel || !selmon->sel->mon || selmon->sel->isfullscreen) {
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1258,15 +1258,15 @@ int toggleoverlay(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggletag(const Arg *arg) {
|
||||
int32_t toggletag(const Arg *arg) {
|
||||
uint32_t newtags;
|
||||
Client *sel = focustop(selmon);
|
||||
if (!sel)
|
||||
return 0;
|
||||
|
||||
if ((int)arg->ui == INT_MIN && sel->tags != (~0 & TAGMASK)) {
|
||||
if ((int32_t)arg->ui == INT_MIN && sel->tags != (~0 & TAGMASK)) {
|
||||
newtags = ~0 & TAGMASK;
|
||||
} else if ((int)arg->ui == INT_MIN && sel->tags == (~0 & TAGMASK)) {
|
||||
} else if ((int32_t)arg->ui == INT_MIN && sel->tags == (~0 & TAGMASK)) {
|
||||
newtags = 1 << (sel->mon->pertag->curtag - 1);
|
||||
} else {
|
||||
newtags = sel->tags ^ (arg->ui & TAGMASK);
|
||||
|
|
@ -1281,7 +1281,7 @@ int toggletag(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggleview(const Arg *arg) {
|
||||
int32_t toggleview(const Arg *arg) {
|
||||
uint32_t newtagset;
|
||||
uint32_t target;
|
||||
|
||||
|
|
@ -1299,7 +1299,7 @@ int toggleview(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int viewtoleft(const Arg *arg) {
|
||||
int32_t viewtoleft(const Arg *arg) {
|
||||
uint32_t target = selmon->tagset[selmon->seltags];
|
||||
|
||||
if (selmon->isoverview || selmon->pertag->curtag == 0) {
|
||||
|
|
@ -1319,7 +1319,7 @@ int viewtoleft(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int viewtoright(const Arg *arg) {
|
||||
int32_t viewtoright(const Arg *arg) {
|
||||
if (selmon->isoverview || selmon->pertag->curtag == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1336,7 +1336,7 @@ int viewtoright(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int viewtoleft_have_client(const Arg *arg) {
|
||||
int32_t viewtoleft_have_client(const Arg *arg) {
|
||||
uint32_t n;
|
||||
uint32_t current = get_tags_first_tag_num(selmon->tagset[selmon->seltags]);
|
||||
bool found = false;
|
||||
|
|
@ -1360,7 +1360,7 @@ int viewtoleft_have_client(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int viewtoright_have_client(const Arg *arg) {
|
||||
int32_t viewtoright_have_client(const Arg *arg) {
|
||||
uint32_t n;
|
||||
uint32_t current = get_tags_first_tag_num(selmon->tagset[selmon->seltags]);
|
||||
bool found = false;
|
||||
|
|
@ -1384,13 +1384,13 @@ int viewtoright_have_client(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int viewcrossmon(const Arg *arg) {
|
||||
int32_t viewcrossmon(const Arg *arg) {
|
||||
focusmon(&(Arg){.v = arg->v, .i = UNDIR});
|
||||
view_in_mon(arg, true, selmon, true);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int tagcrossmon(const Arg *arg) {
|
||||
int32_t tagcrossmon(const Arg *arg) {
|
||||
if (!selmon->sel)
|
||||
return 0;
|
||||
|
||||
|
|
@ -1398,7 +1398,7 @@ int tagcrossmon(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int comboview(const Arg *arg) {
|
||||
int32_t comboview(const Arg *arg) {
|
||||
uint32_t newtags = arg->ui & TAGMASK;
|
||||
|
||||
if (!newtags || !selmon)
|
||||
|
|
@ -1417,7 +1417,7 @@ int comboview(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int zoom(const Arg *arg) {
|
||||
int32_t zoom(const Arg *arg) {
|
||||
Client *c = NULL, *sel = focustop(selmon);
|
||||
|
||||
if (!sel || !selmon ||
|
||||
|
|
@ -1450,14 +1450,14 @@ int zoom(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int setoption(const Arg *arg) {
|
||||
int32_t setoption(const Arg *arg) {
|
||||
parse_option(&config, arg->v, arg->v2);
|
||||
override_config();
|
||||
reset_option();
|
||||
return 0;
|
||||
}
|
||||
|
||||
int minimized(const Arg *arg) {
|
||||
int32_t minimized(const Arg *arg) {
|
||||
|
||||
if (selmon && selmon->isoverview)
|
||||
return 0;
|
||||
|
|
@ -1468,7 +1468,7 @@ int minimized(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggleoverview(const Arg *arg) {
|
||||
int32_t toggleoverview(const Arg *arg) {
|
||||
Client *c = NULL;
|
||||
|
||||
if (selmon->isoverview && ov_tab_mode && arg->i != 1 && selmon->sel) {
|
||||
|
|
@ -1526,7 +1526,7 @@ int toggleoverview(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int disable_monitor(const Arg *arg) {
|
||||
int32_t disable_monitor(const Arg *arg) {
|
||||
Monitor *m = NULL;
|
||||
struct wlr_output_state state = {0};
|
||||
wl_list_for_each(m, &mons, link) {
|
||||
|
|
@ -1541,7 +1541,7 @@ int disable_monitor(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int enable_monitor(const Arg *arg) {
|
||||
int32_t enable_monitor(const Arg *arg) {
|
||||
Monitor *m = NULL;
|
||||
struct wlr_output_state state = {0};
|
||||
wl_list_for_each(m, &mons, link) {
|
||||
|
|
@ -1556,7 +1556,7 @@ int enable_monitor(const Arg *arg) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int toggle_monitor(const Arg *arg) {
|
||||
int32_t toggle_monitor(const Arg *arg) {
|
||||
Monitor *m = NULL;
|
||||
struct wlr_output_state state = {0};
|
||||
wl_list_for_each(m, &mons, link) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue