diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-29 13:09:27 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-29 13:09:27 -0400 |
| commit | 5190c7c7637eada7e4a1aeaa6be4db3989524396 (patch) | |
| tree | 5b927677da5354f434a6b6f77fd9e88a0f47d267 /area_unix.go | |
| parent | 75acdfd9adb1f62411c17e32949dbd24aa98833f (diff) | |
Finished re-adding the numeric keypad keys and fixing up the GTK+ Area implementation to handle the new KeyEvent. Everything seems to work on this end...
Diffstat (limited to 'area_unix.go')
| -rw-r--r-- | area_unix.go | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/area_unix.go b/area_unix.go index 9e1370d..08dd48d 100644 --- a/area_unix.go +++ b/area_unix.go @@ -281,8 +281,12 @@ var extkeys = map[C.guint]ExtKey{ C.GDK_KEY_F10: F10, C.GDK_KEY_F11: F11, C.GDK_KEY_F12: F12, - // numpad numeric keys are handled in events_notdarwin.go + // numpad numeric keys and . are handled in events_notdarwin.go C.GDK_KEY_KP_Enter: NEnter, + C.GDK_KEY_KP_Add: NAdd, + C.GDK_KEY_KP_Subtract: NSubtract, + C.GDK_KEY_KP_Multiply: NMultiply, + C.GDK_KEY_KP_Divide: NDivide, } // sanity check @@ -292,7 +296,10 @@ func init() { included[v] = true } for i := 1; i < int(_nextkeys); i++ { - if i >= int(_N0) && i <= int(_N9) { // skip numpad numbers + if i >= int(N0) && i <= int(N9) { // skip numpad numbers and . + continue + } + if i == int(NDot) { continue } if !included[i] { |
