ecore-drm: Add private xkb fields for depressed, latched, locked, and

group

This adds fields to the xkb structure for storing when modifiers are
pressed, released, etc so we can handle those in key events.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-03-10 13:31:18 +00:00
parent 514cd15ccc
commit 71e3e63dfd
1 changed files with 1 additions and 0 deletions

View File

@ -198,6 +198,7 @@ struct _Ecore_Drm_Evdev
xkb_mod_mask_t caps_mask;
xkb_mod_mask_t altgr_mask;
unsigned int modifiers;
unsigned int depressed, latched, locked, group;
} xkb;
Ecore_Drm_Evdev_Event_Type pending_event;