X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/702c420889ce4b910a74a5687ed1b30980d4dd3d..65baafba0e8cd74f2264b7e2f7625ff5bea84864:/docs/latex/wx/keycode.tex diff --git a/docs/latex/wx/keycode.tex b/docs/latex/wx/keycode.tex index 08f4f2ac5f..5edbb51558 100644 --- a/docs/latex/wx/keycode.tex +++ b/docs/latex/wx/keycode.tex @@ -1,5 +1,9 @@ \section{Keycodes}\label{keycodes} +\wxheading{Include files} + + + Keypresses are represented by an enumerated type, wxKeyCode. The possible values are the ASCII character codes, plus the following: @@ -113,7 +117,30 @@ values are the ASCII character codes, plus the following: // the following key codes are only generated under Windows currently WXK_WINDOWS_LEFT, WXK_WINDOWS_RIGHT, - WXK_WINDOWS_MENU + WXK_WINDOWS_MENU, + WXK_COMMAND, + + // Hardware-specific buttons + WXK_SPECIAL1 = 193, + WXK_SPECIAL2, + WXK_SPECIAL3, + WXK_SPECIAL4, + WXK_SPECIAL5, + WXK_SPECIAL6, + WXK_SPECIAL7, + WXK_SPECIAL8, + WXK_SPECIAL9, + WXK_SPECIAL10, + WXK_SPECIAL11, + WXK_SPECIAL12, + WXK_SPECIAL13, + WXK_SPECIAL14, + WXK_SPECIAL15, + WXK_SPECIAL16, + WXK_SPECIAL17, + WXK_SPECIAL18, + WXK_SPECIAL19, + WXK_SPECIAL20 \end{verbatim} }