diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-07-15 10:06:20 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-08-04 09:28:01 -0400 |
commit | 667d7b15c9b7779e3cf5815ee062e47109077256 (patch) | |
tree | 28f574baf2133d429d7f1b37eb2fc19c56efe108 /src/lib/ecore_wayland/ecore_wl_private.h | |
parent | 377bf414b1ebc78c8f852d0a1dc5f38d2a06e2d2 (diff) |
ecore-wl: Support wl_keyboard_send_repeat_info for adjusting keyboard repeat rate and delay
Summary: This adds support for allowing a client/compositor to adjust
the keyboard repeat rate and delay via a call to
wl_keyboard_send_repeat_info.
@feature
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_wayland/ecore_wl_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ecore_wayland/ecore_wl_private.h b/src/lib/ecore_wayland/ecore_wl_private.h index 21daf65492..349347203f 100644 --- a/src/lib/ecore_wayland/ecore_wl_private.h +++ b/src/lib/ecore_wayland/ecore_wl_private.h | |||
@@ -237,6 +237,8 @@ struct _Ecore_Wl_Input | |||
237 | { | 237 | { |
238 | Ecore_Timer *tmr; | 238 | Ecore_Timer *tmr; |
239 | unsigned int sym, key, time; | 239 | unsigned int sym, key, time; |
240 | double rate, delay; | ||
241 | Eina_Bool enabled : 1; | ||
240 | } repeat; | 242 | } repeat; |
241 | }; | 243 | }; |
242 | 244 | ||