aboutsummaryrefslogtreecommitdiff
path: root/frontend/xkb.c
diff options
context:
space:
mode:
authornotaz2011-06-06 18:46:34 +0300
committernotaz2011-06-06 18:46:34 +0300
commit4218954fcca1237c29f0ba071a4e62d80542cd7e (patch)
treea702626a086fb683c72e2805177495bd00fa5885 /frontend/xkb.c
parentde910c6be0c5523bd6c29b527ded4323fb8e85eb (diff)
downloadpcsx_rearmed-4218954fcca1237c29f0ba071a4e62d80542cd7e.tar.gz
pcsx_rearmed-4218954fcca1237c29f0ba071a4e62d80542cd7e.tar.bz2
pcsx_rearmed-4218954fcca1237c29f0ba071a4e62d80542cd7e.zip
frontend: support some emu actions in x11 build
Diffstat (limited to 'frontend/xkb.c')
-rw-r--r--frontend/xkb.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/frontend/xkb.c b/frontend/xkb.c
index 7d00786..88dbc56 100644
--- a/frontend/xkb.c
+++ b/frontend/xkb.c
@@ -44,6 +44,11 @@ static const struct {
{ XK_t, DKEY_R2 },
{ XK_c, DKEY_SELECT },
{ XK_v, DKEY_START },
+
+ { XK_F6, 32 + SACTION_SAVE_STATE },
+ { XK_F7, 32 + SACTION_PREV_SSLOT },
+ { XK_F8, 32 + SACTION_NEXT_SSLOT },
+ { XK_F9, 32 + SACTION_LOAD_STATE },
};
static Atom wmprotocols, wmdelwindow;
@@ -68,7 +73,7 @@ static void DestroyKeyboard(void) {
XkbSetDetectableAutoRepeat(disp, 0, NULL);
}
-int x11_update_keys(void) {
+int x11_update_keys(unsigned int *action) {
uint8_t i;
XEvent evt;
XClientMessageEvent *xce;
@@ -100,14 +105,18 @@ int x11_update_keys(void) {
}
}
- if (psxkey >= 0) {
+ if (0 <= psxkey && psxkey < 32) {
if (evt.type == KeyPress)
keystate_x11 |= 1 << psxkey;
else
keystate_x11 &= ~(1 << psxkey);
}
- if (evt.type == KeyPress && Key == XK_Escape)
- leave = 1;
+ if (evt.type == KeyPress) {
+ if (psxkey > 32)
+ *action = psxkey - 32;
+ if (Key == XK_Escape)
+ leave = 1;
+ }
break;
case ClientMessage: