skia2/include/utils/unix/XkeysToSkKeys.h
2011-03-15 15:15:15 +00:00

24 lines
453 B
C

#include "X11/Xlib.h"
#include "X11/keysym.h"
#include "SkKey.h"
#ifndef XKEYS_TOSKKEYS_H
#define XKEYS_TOSKKEYS_H
SkKey XKeyToSkKey(KeySym keysym) {
switch (keysym) {
case XK_Right:
return kRight_SkKey;
case XK_Left:
return kLeft_SkKey;
case XK_Down:
return kDown_SkKey;
case XK_Up:
return kUp_SkKey;
default:
return kNONE_SkKey;
}
}
#endif