home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / prog_demos / turbotext / support / ttx_northgate.dfn < prev    next >
Text File  |  1991-01-24  |  2KB  |  55 lines

  1.  
  2. /** $VER: TTX_Northgate.dfn Demo 1.0 (9.1.91)
  3.  **
  4.  ** This definition file contains keyboard definitions for the Northgate
  5.  ** OmniKey ULTRA keyboard.
  6.  **
  7.  ** All "dead" keys are activated. Keys perform their labeled functions whenever
  8.  ** appropriate. The following keys are redefined:
  9.  **
  10.  ** Rate Select:          Open New
  11.  ** Print Screen:         Delete
  12.  ** CTRL-Print Screen:    Print current file
  13.  ** Scroll Lock:          Current window to front
  14.  ** Pause:                Current window to back
  15.  ** Num Lock:             Keypad (
  16.  ** SHIFT-Num Lock        Keypad )
  17.  ** F11                   Save current file
  18.  ** F12                   Open new file
  19.  ** SHIFT-F11             Set bookmark 11
  20.  ** SHIFT-F12             Set bookmark 12
  21.  ** ALT-F11               Go to bookmark 11
  22.  ** ALT-F12               Go to bookmark 12
  23.  **
  24.  ** Written by Denny Atkin
  25.  ** Modified by Martin Taillefer
  26.  **/
  27.  
  28.  
  29. KEYBOARD: APPEND
  30.  
  31.   @28        OpenDoc FileReq        /* Rate Select */
  32.   @71        Delete                 /* Print Screen */
  33.   CTRL-@71   PrintFile
  34.  
  35.   @72        Window2Front           /* Scroll Lock */
  36.   @73        Window2Back            /* Pause */
  37.   @90        Insert (               /* Num Lock */
  38.   SHIFT-@90  Insert )
  39.  
  40.   @104       SaveFile               /* F11 */
  41.   @105       OpenFile               /* F12 */
  42.  
  43.   @107       MoveSOF                /* Home */
  44.   @108       MoveEOF                /* End */
  45.   @109       MoveUpScr              /* Page Up */
  46.   @110       MoveDownScr            /* Page Down */
  47.   @111       Insert "="             /* Keypad = */
  48.  
  49.   SHIFT-@104 SetBookmark 11
  50.   SHIFT-@105 SetBookmark 12
  51.  
  52.   ALT-@104   MoveBookmark 11
  53.   ALT-@105   MoveBookmark 12
  54. #
  55.