소스 검색

+ Keyboard unit overhaul
+ Shift+arrow keys now working in xterm
+ Keyboard restored when vt-switching away from application on Linux
console
+ Escape key remapped on Linux console so it works instantly.
+ Try to use Linux console more aggressively
+ Linux specific code now only executed on Linux terminals and not
on xterm, FreeBSD etc.

git-svn-id: trunk@2383 -

daniel 19 년 전
부모
커밋
56d3bf1403
2개의 변경된 파일296개의 추가작업 그리고 457개의 파일을 삭제
  1. 2 1
      rtl/inc/keyscan.inc
  2. 294 456
      rtl/unix/keyboard.pp

+ 2 - 1
rtl/inc/keyscan.inc

@@ -1,7 +1,8 @@
 { list of all dos scancode for key giving 0 as char }
 Const
    kbNoKey       = $00;
-   kbAltEsc      = $01;
+   kbAltEsc      = $01;  {Alt+Esc = scancode 01, ascii code 0.}
+   kbEsc         = $01;  {Esc     = scancode 01, ascii code 27.}
    kbAltSpace    = $02;
    kbCtrlIns     = $04;
    kbShiftIns    = $05;

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 294 - 456
rtl/unix/keyboard.pp


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.