mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-10-29 05:40:21 -04:00
opt: optimize code struct
This commit is contained in:
parent
365854ccf6
commit
a06552b670
3 changed files with 5 additions and 4 deletions
|
|
@ -391,9 +391,9 @@ int parse_circle_direction(const char *str) {
|
||||||
|
|
||||||
// 根据转换后的小写字符串返回对应的枚举值
|
// 根据转换后的小写字符串返回对应的枚举值
|
||||||
if (strcmp(lowerStr, "next") == 0) {
|
if (strcmp(lowerStr, "next") == 0) {
|
||||||
return 1;
|
return NEXT;
|
||||||
} else {
|
} else {
|
||||||
return -1;
|
return PREV;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ void exchange_stack_client(const Arg *arg) {
|
||||||
Client *tc;
|
Client *tc;
|
||||||
if (!c || c->isfloating || c->isfullscreen || c->ismaxmizescreen)
|
if (!c || c->isfloating || c->isfullscreen || c->ismaxmizescreen)
|
||||||
return;
|
return;
|
||||||
if (arg->i > 0) {
|
if (arg->i == NEXT) {
|
||||||
tc = get_next_stack_client(c, false);
|
tc = get_next_stack_client(c, false);
|
||||||
} else {
|
} else {
|
||||||
tc = get_next_stack_client(c, true);
|
tc = get_next_stack_client(c, true);
|
||||||
|
|
@ -194,7 +194,7 @@ focusstack(const Arg *arg) {
|
||||||
|
|
||||||
if (!sel || sel->isfullscreen)
|
if (!sel || sel->isfullscreen)
|
||||||
return;
|
return;
|
||||||
if (arg->i > 0) {
|
if (arg->i == NEXT) {
|
||||||
tc = get_next_stack_client(sel, false);
|
tc = get_next_stack_client(sel, false);
|
||||||
} else {
|
} else {
|
||||||
tc = get_next_stack_client(sel, true);
|
tc = get_next_stack_client(sel, true);
|
||||||
|
|
|
||||||
|
|
@ -164,6 +164,7 @@ enum {
|
||||||
enum { UP, DOWN, LEFT, RIGHT, UNDIR }; /* smartmovewin */
|
enum { UP, DOWN, LEFT, RIGHT, UNDIR }; /* smartmovewin */
|
||||||
enum { NONE, OPEN, MOVE, CLOSE, TAG };
|
enum { NONE, OPEN, MOVE, CLOSE, TAG };
|
||||||
enum { UNFOLD, FOLD, INVALIDFOLD };
|
enum { UNFOLD, FOLD, INVALIDFOLD };
|
||||||
|
enum { PREV, NEXT };
|
||||||
|
|
||||||
typedef struct Pertag Pertag;
|
typedef struct Pertag Pertag;
|
||||||
typedef struct Monitor Monitor;
|
typedef struct Monitor Monitor;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue