layout.arrows.h - svkbd - Simple X11 onscreen keyboard.
(HTM) git clone git://r-36.net/svkbd
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
layout.arrows.h (275B)
---
1 static Key keys[] = {
2 { 0, XK_Shift_L, 2 },
3 { "←", XK_Left, 1 },
4 { "↓", XK_Down, 1 },
5 { "↑", XK_Up, 1 },
6 { "→", XK_Right, 1},
7 { "Alt", XK_Alt_L, 2 },
8 { "[X]", XK_Cancel, 1 },
9 };
10
11 Buttonmod buttonmods[] = {
12 { XK_Shift_L, Button2 },
13 { XK_Alt_L, Button3 },
14 };
15