projects
/
platform
/
core
/
uifw
/
e17.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge from TIZEN 2.3
[platform/core/uifw/e17.git]
/
src
/
modules
/
illume-keyboard
/
e_kbd_send.h
1
#ifndef E_KBD_SEND_H
2
#define E_KBD_SEND_H
3
4
typedef enum _Kbd_Mod
5
{
6
KBD_MOD_SHIFT = (1 << 0),
7
KBD_MOD_CTRL = (1 << 1),
8
KBD_MOD_ALT = (1 << 2),
9
KBD_MOD_WIN = (1 << 3)
10
} Kbd_Mod;
11
12
EAPI void e_kbd_send_string_press(const char *str, Kbd_Mod mod);
13
EAPI void e_kbd_send_keysym_press(const char *key, Kbd_Mod mod);
14
15
#endif