aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2022-12-02 09:29:15 -0500
committeradnano <me@adnano.co>2022-12-02 09:29:15 -0500
commit8cc6a22737ba801cc4b5846af3e33f348abfc52e (patch)
tree26eb92f6c602946653587912c934d7db71064f3a
parent01a343ed121efdc2181e34c1192f96d53f8a5a86 (diff)
downloadwmenu-8cc6a22737ba801cc4b5846af3e33f348abfc52e.tar.gz
Support number pad keys
-rw-r--r--main.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/main.c b/main.c
index eda3051..221236e 100644
--- a/main.c
+++ b/main.c
@@ -504,8 +504,8 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
char buf[8];
size_t len = strlen(state->text);
switch (sym) {
- case XKB_KEY_KP_Enter:
case XKB_KEY_Return:
+ case XKB_KEY_KP_Enter:
if (shift) {
puts(state->text);
fflush(stdout);
@@ -521,6 +521,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Left:
+ case XKB_KEY_KP_Left:
if (state->vertical) {
break;
}
@@ -539,6 +540,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Right:
+ case XKB_KEY_KP_Right:
if (state->vertical) {
break;
}
@@ -558,6 +560,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Up:
+ case XKB_KEY_KP_Up:
if (!state->vertical) {
break;
}
@@ -576,6 +579,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Down:
+ case XKB_KEY_KP_Down:
if (!state->vertical) {
break;
}
@@ -595,6 +599,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Page_Up:
+ case XKB_KEY_KP_Page_Up:
if (state->leftmost && state->leftmost->left) {
state->rightmost = state->leftmost->left;
state->leftmost = NULL;
@@ -604,6 +609,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Page_Down:
+ case XKB_KEY_KP_Page_Down:
if (state->rightmost && state->rightmost->right) {
state->leftmost = state->rightmost->right;
state->rightmost = NULL;
@@ -613,6 +619,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Home:
+ case XKB_KEY_KP_Home:
if (state->selection == state->matches) {
if (state->cursor != 0) {
state->cursor = 0;
@@ -627,6 +634,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_End:
+ case XKB_KEY_KP_End:
if (state->cursor < len) {
state->cursor = len;
render_frame(state);
@@ -650,6 +658,7 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
break;
case XKB_KEY_Delete:
+ case XKB_KEY_KP_Delete:
if (state->cursor == len) {
return;
}