home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / nicol / sti_edit / sti_hlp.txt < prev   
Encoding:
Text File  |  2007-12-21  |  5.4 KB  |  203 lines

  1. %TITLE     "Editor Help File"
  2. %VERSION   1   0
  3. %SAVE      NO
  4. %MODE      TEXT
  5. %SIZE      80  15
  6. %BORDERCOL    WHITE
  7. %PROMPTCOL    YELLOW
  8. %HIGHLIGHTCOL GREEN
  9. %TEXTCOL      WHITE
  10. %ENTRIES   5
  11.  
  12. %ENTRY                                      1
  13. %REFERENCES                                 3
  14. %KEYWORD         "Copyright"                2
  15. %KEYWORD         "Help System"              3
  16. %KEYWORD         "Editor System"            4
  17. %TEXT
  18.  "
  19.              $Opening Screen$
  20.  
  21.  
  22.  
  23.             STI_EDIT Version 1.0
  24.         Copyright (C) 1989,1990,1991
  25.     By Software Tecnology International
  26.             All Rights Reserved
  27.  
  28.  "
  29. %ENDTEXT
  30.  
  31.  
  32. %ENTRY                                      2
  33. %REFERENCES                                 2
  34. %KEYWORD         "Editor System"            4
  35. %KEYWORD         "Opening Screen"           1
  36. %TEXT
  37.  "
  38.              $Copyright Notice$
  39.  
  40.     This software is copyrighted by
  41.   Software Technology International. No
  42.   Part of this software may be copied or
  43.   distributed by any means, without the
  44.   written consent of Software Technology
  45.   International.
  46.  "
  47. %ENDTEXT
  48.  
  49.  
  50. %ENTRY                                      3
  51. %REFERENCES                                 2
  52. %KEYWORD         "Opening Screen"           1
  53. %KEYWORD         "Editor System"            4
  54. %TEXT
  55.  "
  56.                $Help on Help$
  57.  
  58.     This is a simple help system. It takes the
  59.  following keys.
  60.    ESC        : End the program
  61.    up arrow   : Move the highlight to the 
  62.                 keyword above
  63.    down arrow : Move the highlight to the
  64.                 keyword below
  65.     ->        : Scroll text area
  66.     <-        : Scroll text area
  67.    RET        : Select keyword to jump to
  68.  "
  69. %ENDTEXT
  70.  
  71.  
  72. %ENTRY                                      4
  73. %REFERENCES                                 2
  74. %KEYWORD         "Opening Screen"           1
  75. %KEYWORD         "Commands"                 5
  76. %TEXT
  77.  "
  78.           $About STI_EDIT Ver 1.0$
  79.  
  80.     This is a unit that with one call supplies
  81.   an editor to your application. While it is not
  82.   intended for serious editing tasks, it is more
  83.   than functional enough for simple tasks. The 
  84.   main limitation is that it edits on memory, so
  85.   the size of the file it may edit is limited.
  86.  
  87.     Some of the interesting features of this 
  88.   unit are that it allows you to specify help, 
  89.   directory and pass-on procedures. The pass on 
  90.   procedure allows you to access special key 
  91.   combinations not used by the editor. This way 
  92.   you can emulate the TP/TC/TD system of having
  93.   keys that take you to a menu.            
  94.  
  95.     Other interesting points are things like, 
  96.   word and line upper & lower case conversion, 
  97.   line centering, etc etc. The editor is also 
  98.   resizable, within  certain  limits, and  the
  99.   colors  are  changable.                          
  100.  
  101.     Also, the data structures used by the 
  102.   program are available, making it easy fo you
  103.   to add-on functions. Also, as you can escape 
  104.   from the editor then return, it is possible to 
  105.   have more than one editor working at once, 
  106.   though memory would be a problem..
  107.  
  108.     We hope you find this unit useful.
  109.  "
  110. %ENDTEXT
  111.  
  112.  
  113. %ENTRY                                      5
  114. %REFERENCES                                 2
  115. %KEYWORD         "Opening Screen"           1
  116. %KEYWORD         "Editor System"            4
  117. %TEXT
  118.  "
  119.  
  120.                 $Commands$
  121.            
  122.   The editor supports the following commands.
  123.  
  124.   BS    : deletes character to the left
  125.   TAB   : works as one would expect
  126.   RET   : works as normal
  127.   ESC   : read, but ignored
  128.   HELP  : calls help routine is specified
  129.   F1    : same as help
  130.   F2    : save the current file
  131.   F3    : load a file
  132.   F4    : Search
  133.   F5    : Search and Replace
  134.   F6    : Mark block start
  135.   F7    : Mark block end
  136.   F8    : Copy a block
  137.   F9    : Erase a block
  138.   F10   : Quit
  139.   Arrow : They work as is normal
  140.  
  141.   ^PP   : Print editor file
  142.   ^PB   : Print a block
  143.   ^S    : Left one character
  144.   ^D    : Right one character
  145.   ^E    : Up one line
  146.   ^X    : Down one line
  147.   ^A    : One word left
  148.   ^F    : One word right
  149.   ^R    : One screen up
  150.   ^C    : One screen down
  151.   ^G    : Delete character at cursor
  152.   ^I    : Insert mode toggle
  153.   ^Y    : Erase one line
  154.   ^T    : Erase next word
  155.   ^KD   : Quit
  156.   ^KQ   : Quit
  157.   ^KS   : Save
  158.   ^KB   : Mark Block Start
  159.   ^KC   : Copy a block
  160.   ^KK   : Mark  Block End
  161.   ^KY   : Delete a Block
  162.   ^KV   : Move a Block
  163.   ^KW   : Write a block
  164.   ^KR   : Read a block
  165.   ^QQ   : Search and Replace
  166.   ^QH   : Erase line contents
  167.   ^QF   : Search
  168.   ^QC   : Jump to end of file
  169.   ^QR   : Jump to start of file
  170.   ^LU   : Uppercase Line
  171.   ^LD   : Lowercase Line
  172.   ^LC   : Centre Line (to 128 char 7width)
  173.   ^LR   : Trim right side of line
  174.   ^LL   : Trim left side of line
  175.   ^WU   : Uppercase word
  176.   ^WD   : Lowercase word
  177.  
  178.   ^DELETE        : Delete word(^T)
  179.   ^LEFT ARROW    : Start of line
  180.   ^RIGHT ARROW   : End of line
  181.   ^UP ARROW      : One screen up
  182.   ^DOWN ARROW    : One screen down
  183.  
  184.   SHIFT+TAB        : Reset tab width
  185.   SHIFT+ROLL UP    : End of file
  186.   SHIFT+ROLL DOWN  : Start of file
  187.   SHIFT+INSERT     : Insert a lne
  188.   SHIFT+DELETE     : Delete a line
  189.   SHIFT+HOME CLR   : End of line
  190.   SHIFT+LEFT       : One word left
  191.   SHIFT+RIGHT      : One word right
  192.   SHIFT+UP         : Top of screen
  193.   SHIFT+DOWN       : Bottom of screen
  194.  
  195.    All other combinations are passed
  196.  on to the calling program.
  197.  "
  198. %ENDTEXT
  199.  
  200. %END
  201.  
  202.  
  203.