-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
108 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright 2019 Bogdan Popa <[email protected]> | ||
Copyright 2019-2024 Bogdan Popa <[email protected]> | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#lang racket/base | ||
|
||
#|review: ignore|# | ||
|
||
(provide (prefix-out key: (all-defined-out))) | ||
|
||
(define null #\uE000) | ||
(define cancel #\uE001) | ||
(define help #\uE002) | ||
(define backspace #\uE003) | ||
(define tab #\uE004) | ||
(define clear #\uE005) | ||
(define return #\uE006) | ||
(define enter #\uE007) | ||
(define shift #\uE008) | ||
(define left-shift #\uE008) | ||
(define control #\uE009) | ||
(define left-control #\uE009) | ||
(define alt #\uE00a) | ||
(define left-alt #\uE00a) | ||
(define pause #\uE00b) | ||
(define escape #\uE00c) | ||
(define space #\uE00d) | ||
(define page-up #\uE00e) | ||
(define page-down #\uE00f) | ||
(define end #\uE010) | ||
(define home #\uE011) | ||
(define left #\uE012) | ||
(define arrow-left #\uE012) | ||
(define up #\uE013) | ||
(define arrow-up #\uE013) | ||
(define right #\uE014) | ||
(define arrow-right #\uE014) | ||
(define down #\uE015) | ||
(define arrow-down #\uE015) | ||
(define insert #\uE016) | ||
(define delete #\uE017) | ||
(define semicolon #\uE018) | ||
(define equals #\uE019) | ||
(define numpad-0 #\uE01a) | ||
(define numpad-1 #\uE01b) | ||
(define numpad-2 #\uE01c) | ||
(define numpad-3 #\uE01d) | ||
(define numpad-4 #\uE01e) | ||
(define numpad-5 #\uE01f) | ||
(define numpad-6 #\uE020) | ||
(define numpad-7 #\uE021) | ||
(define numpad-8 #\uE022) | ||
(define numpad-9 #\uE023) | ||
(define multiply #\uE024) | ||
(define add #\uE025) | ||
(define separator #\uE026) | ||
(define subtract #\uE027) | ||
(define decimal #\uE028) | ||
(define divide #\uE029) | ||
(define f1 #\uE031) | ||
(define f2 #\uE032) | ||
(define f3 #\uE033) | ||
(define f4 #\uE034) | ||
(define f5 #\uE035) | ||
(define f6 #\uE036) | ||
(define f7 #\uE037) | ||
(define f8 #\uE038) | ||
(define f9 #\uE039) | ||
(define f10 #\uE03a) | ||
(define f11 #\uE03b) | ||
(define f12 #\uE03c) | ||
(define meta #\uE03d) | ||
(define command #\uE03d) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright 2019 Bogdan Popa <[email protected]> | ||
Copyright 2019-2024 Bogdan Popa <[email protected]> | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright 2019 Bogdan Popa <[email protected]> | ||
Copyright 2019-2024 Bogdan Popa <[email protected]> | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
|