home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l180 / 1.ddi / EDIT.BAS < prev    next >
Encoding:
BASIC Source File  |  1989-02-07  |  27.8 KB  |  836 lines

  1.   ' ************************************************
  2.   ' **  Name:          EDIT                       **
  3.   ' **  Type:          Toolbox                    **
  4.   ' **  Module:        EDIT.BAS                   **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' USAGE:           No command line parameters
  9.   ' .MAK FILE:       EDIT.BAS
  10.   '                  KEYS.BAS
  11.   ' PARAMETERS:      (none)
  12.   ' VARIABLES:       a$         String to be edited by the user
  13.   
  14.     CONST FALSE = 0
  15.     CONST TRUE = NOT FALSE
  16.   
  17.   ' Key code numbers
  18.     CONST BACKSPACE = 8
  19.     CONST CTRLLEFTARROW = 29440
  20.     CONST CTRLRIGHTARROW = 29696
  21.     CONST CTRLY = 25
  22.     CONST CTRLQ = 17
  23.     CONST DELETE = 21248
  24.     CONST DOWNARROW = 20480
  25.     CONST ENDKEY = 20224
  26.     CONST ENTER = 13
  27.     CONST ESCAPE = 27
  28.     CONST HOME = 18176
  29.     CONST INSERTKEY = 20992
  30.     CONST LEFTARROW = 19200
  31.     CONST RIGHTARROW = 19712
  32.     CONST TABKEY = 9
  33.     CONST UPARROW = 18432
  34.   
  35.   ' Functions
  36.     DECLARE FUNCTION KeyCode% ()
  37.   
  38.   ' Subprograms
  39.     DECLARE SUB EditLine (a$, exitCode%)
  40.     DECLARE SUB DrawBox (row1%, col1%, row2%, col2%)
  41.     DECLARE SUB EditBox (a$, row1%, col1%, row2%, col2%)
  42.     DECLARE SUB FormatTwo (a$, b$, col%)
  43.     DECLARE SUB InsertCharacter (x$(), kee$, cp%, rp%, wide%, high%)
  44.   
  45.   ' Demonstrate the EditLine subprogram
  46.     a$ = " Edit this line, and then press Up arrow, Down arrow, or Enter "
  47.     CLS
  48.     COLOR 14, 1
  49.     EditLine a$, exitCode%
  50.     COLOR 7, 0
  51.     PRINT
  52.     PRINT
  53.     PRINT "Result of edit ..."
  54.     COLOR 14, 0
  55.     PRINT a$
  56.     COLOR 7, 0
  57.     PRINT
  58.     SELECT CASE exitCode%
  59.     CASE 0
  60.         PRINT "Enter";
  61.     CASE -1
  62.         PRINT "Down arrow";
  63.     CASE 1
  64.         PRINT "Up arrow";
  65.     CASE ELSE
  66.     END SELECT
  67.     PRINT " key pressed."
  68.   
  69.   ' Demonstrate the EditBox subprogram
  70.     a$ = "Now, edit text inside this box.  Press "
  71.     a$ = a$ + "Esc to end the editing..."
  72.     COLOR 12, 1
  73.     DrawBox 8, 17, 19, 57
  74.     COLOR 11, 1
  75.     EditBox a$, 8, 17, 19, 57
  76.     LOCATE 21, 1
  77.     COLOR 7, 0
  78.     PRINT "Result..."
  79.     COLOR 14, 0
  80.     PRINT a$
  81.     COLOR 7, 0
  82.  
  83.   ' ************************************************
  84.   ' **  Name:          DrawBox                    **
  85.   ' **  Type:          Subprogram                 **
  86.   ' **  Module:        EDIT.BAS                   **
  87.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  88.   ' ************************************************
  89.   '
  90.   ' Draws a double-lined box.
  91.   '
  92.   ' EXAMPLE OF USE:  DrawBox row1%, col1%, row2%, col2%
  93.   ' PARAMETERS:      row1%    Screen text row at upper left corner of the box
  94.   '                  col1%    Screen text column at upper left corner of the box
  95.   '                  row2%    Screen text row at lower right corner of the box
  96.   '                  col2%    Screen text column at lower right corner of the
  97.   '                           box
  98.   ' VARIABLES:       wide%    Inside width of box
  99.   '                  row3%    Loop row number for creating sides of box
  100.   ' MODULE LEVEL
  101.   '   DECLARATIONS:  DECLARE SUB DrawBox (row1%, col1%, row2%, col2%)
  102.   '
  103.     SUB DrawBox (row1%, col1%, row2%, col2%) STATIC
  104.       
  105.       ' Determine inside width of box
  106.         wide% = col2% - col1% - 1
  107.       
  108.       ' Across the top
  109.         LOCATE row1%, col1%, 0
  110.         PRINT CHR$(201);
  111.         PRINT STRING$(wide%, 205);
  112.         PRINT CHR$(187);
  113.       
  114.       ' Down the sides
  115.         FOR row3% = row1% + 1 TO row2% - 1
  116.             LOCATE row3%, col1%, 0
  117.             PRINT CHR$(186);
  118.             PRINT SPACE$(wide%);
  119.             PRINT CHR$(186);
  120.         NEXT row3%
  121.       
  122.       ' Across the bottom
  123.         LOCATE row2%, col1%, 0
  124.         PRINT CHR$(200);
  125.         PRINT STRING$(wide%, 205);
  126.         PRINT CHR$(188);
  127.       
  128.     END SUB
  129.  
  130.   ' ************************************************
  131.   ' **  Name:          EditBox                    **
  132.   ' **  Type:          Subprogram                 **
  133.   ' **  Module:        EDIT.BAS                   **
  134.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  135.   ' ************************************************
  136.   '
  137.   ' Allows the user to edit text inside a rectangular area.
  138.   '
  139.   ' EXAMPLE OF USE:  EditBox a$, row1%, col1%, row2%, col2%
  140.   ' PARAMETERS:      a$     String to be edited
  141.   '                  row1%  Screen text row at upper left corner of the area
  142.   '                  col1%  Screen text column at upper left corner of the area
  143.   '                  row2%  Screen text row at lower right corner of the area
  144.   '                  col2%  Screen text column at lower right corner of the area
  145.   ' VARIABLES:       r1%    Upper inside row of rectangular area
  146.   '                  r2%    Lower inside row of rectangular area
  147.   '                  c1%    Left inside column of rectangular area
  148.   '                  c2%    Right inside column of rectangular area
  149.   '                  wide%  Width of area
  150.   '                  high%  Height of area
  151.   '                  rp%    Index to current working row
  152.   '                  cp%    Index to current working column
  153.   '                  insert%  Flag for insert/replace mode
  154.   '                  quit%  Flag for quitting the subprogram
  155.   '                  across%  Saved current cursor column
  156.   '                  down%  Saved current cursor row
  157.   '                  x$()  Workspace string array
  158.   '                  i%  Looping index
  159.   '                  b$  Works with a$ to format a$ into x$()
  160.   '                  keyNumber%  Integer code for any key press
  161.   '                  c$  Temporary string workspace
  162.   '                  ds%  Index to double-space groupings
  163.   '                  sp%  Index to character where split of string is to occur
  164.   '                  ctrlQflag%  Indicates Ctrl-Q has been pressed
  165.   '                  kee$  Character entered from keyboard
  166.   ' MODULE LEVEL
  167.   '   DECLARATIONS:  DECLARE FUNCTION KeyCode% ()
  168.   '                  DECLARE SUB EditBox (a$, row1%, col1%, row2%, col2%)
  169.   '                  DECLARE SUB FormatTwo (a$, b$, col%)
  170.   '                  DECLARE SUB InsertCharacter (x$(), kee$, cp%, rp%,
  171.   '                                               wide%, high%)
  172.   '
  173.     SUB EditBox (a$, row1%, col1%, row2%, col2%) STATIC
  174.       
  175.       ' Set up some working variables
  176.         r1% = row1% + 1
  177.         r2% = row2% - 1
  178.         c1% = col1% + 2
  179.         c2% = col2% - 2
  180.         wide% = c2% - c1% + 1
  181.         high% = r2% - r1% + 1
  182.         rp% = 1
  183.         cp% = 1
  184.         insert% = TRUE
  185.         quit% = FALSE
  186.       
  187.       ' Record the current cursor location
  188.         across% = POS(0)
  189.         down% = CSRLIN
  190.       
  191.       ' Dimension a workspace array
  192.         REDIM x$(1 TO high%)
  193.       
  194.       ' Format a$ into array space
  195.         FOR i% = 1 TO high%
  196.             FormatTwo a$, b$, wide%
  197.             x$(i%) = a$
  198.             a$ = b$
  199.         NEXT i%
  200.       
  201.       ' Display the strings
  202.         FOR i% = 1 TO high%
  203.             LOCATE r1% + i% - 1, c1%, 0
  204.             PRINT x$(i%);
  205.         NEXT i%
  206.       
  207.       ' Process each keystroke
  208.         DO
  209.           
  210.           ' Update the current line
  211.             LOCATE r1% + rp% - 1, c1%, 0
  212.             PRINT x$(rp%);
  213.           
  214.           ' Place the cursor
  215.             IF insert% THEN
  216.                 LOCATE r1% + rp% - 1, c1% + cp% - 1, 1, 6, 7
  217.             ELSE
  218.                 LOCATE r1% + rp% - 1, c1% + cp% - 1, 1, 1, 7
  219.             END IF
  220.           
  221.           ' Grab next keystroke
  222.             keyNumber% = KeyCode%
  223.           
  224.           ' Process the key
  225.             SELECT CASE keyNumber%
  226.               
  227.             CASE INSERTKEY
  228.                 IF insert% THEN
  229.                     insert% = FALSE
  230.                 ELSE
  231.                     insert% = TRUE
  232.                 END IF
  233.               
  234.             CASE BACKSPACE
  235.               
  236.               ' Rub out character to the left
  237.                 IF cp% > 1 THEN
  238.                     x$(rp%) = x$(rp%) + " "
  239.                     b$ = LEFT$(x$(rp%), cp% - 2)
  240.                     c$ = MID$(x$(rp%), cp%)
  241.                     x$(rp%) = b$ + c$
  242.                     cp% = cp% - 1
  243.                   
  244.               ' Upper left corner, so reformat the whole box
  245.                 ELSEIF rp% = 1 THEN
  246.                   
  247.                   ' Pull all the strings together
  248.                     a$ = ""
  249.                     FOR i% = 1 TO high%
  250.                         a$ = a$ + LTRIM$(RTRIM$(x$(i%))) + " "
  251.                     NEXT i%
  252.                   
  253.                   ' Remove double spaces
  254.                     ds% = INSTR(a$, "  ")
  255.                     DO WHILE ds%
  256.                         a$ = LEFT$(a$, ds% - 1) + MID$(a$, ds% + 1)
  257.                         ds% = INSTR(a$, "  ")
  258.                     LOOP
  259.                   
  260.                   ' Format into the array and display lines
  261.                     FOR i% = 1 TO high%
  262.                         FormatTwo a$, b$, wide%
  263.                         x$(i%) = a$
  264.                         a$ = b$
  265.                         LOCATE r1% + i% - 1, c1%, 0
  266.                         PRINT x$(i%);
  267.                     NEXT i%
  268.                   
  269.               ' Concatenate to the preceding line
  270.                 ELSE
  271.                   
  272.                   ' Use the InsertCharacter sub to insert a space
  273.                     rp% = rp% - 1
  274.                     cp% = wide% + 1
  275.                     InsertCharacter x$(), " ", rp%, cp%, wide%, high%
  276.                   
  277.                   ' Remove the extra spaces introduced
  278.                     IF cp% > 2 THEN
  279.                         b$ = LEFT$(x$(rp%), cp% - 3)
  280.                         c$ = MID$(x$(rp%), cp%)
  281.                     ELSE
  282.                         b$ = ""
  283.                         c$ = MID$(x$(rp%), cp% + 1)
  284.                     END IF
  285.                   
  286.                   ' Pull the line pieces together
  287.                     x$(rp%) = LEFT$(b$ + c$ + SPACE$(3), wide%)
  288.                   
  289.                   ' Adjust the cursor position
  290.                     cp% = cp% - 1
  291.                   
  292.                   ' Display the lines
  293.                     FOR i% = 1 TO high%
  294.                         LOCATE r1% + i% - 1, c1%, 0
  295.                         PRINT x$(i%);
  296.                     NEXT i%
  297.                 END IF
  298.               
  299.             CASE DELETE
  300.                 x$(rp%) = x$(rp%) + " "
  301.                 b$ = LEFT$(x$(rp%), cp% - 1)
  302.                 c$ = MID$(x$(rp%), cp% + 1)
  303.                 x$(rp%) = b$ + c$
  304.               
  305.             CASE UPARROW
  306.                 IF rp% > 1 THEN
  307.                     rp% = rp% - 1
  308.                 END IF
  309.               
  310.             CASE DOWNARROW
  311.                 IF rp% < high% THEN
  312.                     rp% = rp% + 1
  313.                 END IF
  314.               
  315.             CASE LEFTARROW
  316.                 IF cp% > 1 THEN
  317.                     cp% = cp% - 1
  318.                 END IF
  319.               
  320.             CASE RIGHTARROW
  321.                 IF cp% < wide% THEN
  322.                     cp% = cp% + 1
  323.                 END IF
  324.               
  325.             CASE ENTER
  326.                 IF rp% < high% AND x$(high%) = SPACE$(wide%) THEN
  327.                   
  328.                   ' Shuffle lines down
  329.                     FOR i% = high% TO rp% + 1 STEP -1
  330.                         x$(i%) = x$(i% - 1)
  331.                     NEXT i%
  332.                   
  333.                   ' Split current line at cursor
  334.                     sp% = wide% - cp% + 1
  335.                     IF sp% THEN
  336.                         MID$(x$(rp%), cp%, sp%) = SPACE$(sp%)
  337.                     END IF
  338.                   
  339.                   ' Move to next line
  340.                     rp% = rp% + 1
  341.                     x$(rp%) = MID$(x$(rp%), cp%) + SPACE$(cp% - 1)
  342.                     cp% = 1
  343.                   
  344.                   ' Display the modified lines
  345.                     FOR i% = rp% - 1 TO high%
  346.                         LOCATE r1% + i% - 1, c1%, 0
  347.                         PRINT x$(i%);
  348.                     NEXT i%
  349.                   
  350.                 ELSE
  351.                   
  352.                   ' Nowhere to push things down
  353.                     BEEP
  354.                   
  355.                 END IF
  356.               
  357.             CASE HOME
  358.                 cp% = 1
  359.               
  360.             CASE ENDKEY
  361.                 cp% = wide% + 1
  362.               
  363.               ' Move back to just after last character
  364.                 IF x$(rp%) <> SPACE$(wide%) THEN
  365.                     DO UNTIL MID$(x$(rp%), cp% - 1, 1) <> " "
  366.                         cp% = cp% - 1
  367.                     LOOP
  368.                 ELSE
  369.                     cp% = 1
  370.                 END IF
  371.               
  372.             CASE CTRLRIGHTARROW
  373.               
  374.               ' Find next space
  375.                 DO UNTIL MID$(x$(rp%), cp%, 1) = " " OR cp% = wide%
  376.                     cp% = cp% + 1
  377.                 LOOP
  378.               
  379.               ' Find first non-space character
  380.                 DO UNTIL MID$(x$(rp%), cp%, 1) <> " " OR cp% = wide%
  381.                     cp% = cp% + 1
  382.                 LOOP
  383.               
  384.             CASE CTRLLEFTARROW
  385.               
  386.               ' Find first space to the left
  387.                 DO UNTIL MID$(x$(rp%), cp%, 1) = " " OR cp% = 1
  388.                     cp% = cp% - 1
  389.                 LOOP
  390.               
  391.               ' Find first non-space character to the left
  392.                 DO UNTIL MID$(x$(rp%), cp%, 1) <> " " OR cp% = 1
  393.                     cp% = cp% - 1
  394.                 LOOP
  395.               
  396.               ' Find next space to the left
  397.                 DO UNTIL MID$(x$(rp%), cp%, 1) = " " OR cp% = 1
  398.                     cp% = cp% - 1
  399.                 LOOP
  400.               
  401.               ' Adjust cursor position to first non-space character
  402.                 IF cp% > 1 THEN
  403.                     cp% = cp% + 1
  404.                 END IF
  405.               
  406.             CASE CTRLY
  407.                 IF rp% < high% THEN
  408.                   ' Shuffle lines up, spacing out the last
  409.                     FOR i% = rp% TO high%
  410.                         IF i% < high% THEN
  411.                             x$(i%) = x$(i% + 1)
  412.                         ELSE
  413.                             x$(i%) = SPACE$(wide%)
  414.                         END IF
  415.                         LOCATE r1% + i% - 1, c1%, 0
  416.                         PRINT x$(i%);
  417.                     NEXT i%
  418.                 END IF
  419.               
  420.               ' Move cursor to far left
  421.                 cp% = 1
  422.               
  423.             CASE CTRLQ
  424.                 ctrlQflag% = TRUE
  425.               
  426.             CASE ESCAPE
  427.                 quit% = TRUE
  428.               
  429.             CASE IS > 255
  430.                 SOUND 999, 1
  431.               
  432.             CASE IS < 32
  433.                 SOUND 999, 1
  434.               
  435.             CASE ELSE
  436.                 kee$ = CHR$(keyNumber%)
  437.               
  438.               ' Insert mode
  439.                 IF insert% THEN
  440.                     InsertCharacter x$(), kee$, rp%, cp%, wide%, high%
  441.                     FOR i% = 1 TO high%
  442.                         LOCATE r1% + i% - 1, c1%, 0
  443.                         PRINT x$(i%);
  444.                     NEXT i%
  445.                   
  446.               ' Must be overstrike mode
  447.                 ELSE
  448.                     MID$(x$(rp%), cp%, 1) = kee$
  449.                     IF cp% < wide% THEN
  450.                         cp% = cp% + 1
  451.                     ELSE
  452.                         IF rp% < high% THEN
  453.                             LOCATE r1% + rp% - 1, c1%, 0
  454.                             PRINT x$(rp%);
  455.                             rp% = rp% + 1
  456.                             cp% = 1
  457.                         END IF
  458.                     END IF
  459.                 END IF
  460.               
  461.               ' Correct for bottom right corner problem
  462.                 IF rp% > high% THEN
  463.                     cp% = wide%
  464.                     rp% = high%
  465.                 END IF
  466.               
  467.               ' Check for Ctrl-Q-Y combination (del to end of line)
  468.                 IF kee$ = "y" AND ctrlQflag% THEN
  469.                     cp% = cp% - 1
  470.                     IF cp% = 0 THEN
  471.                         cp% = wide%
  472.                         rp% = rp% - 1
  473.                     END IF
  474.                     sp% = wide% - cp% + 1
  475.                     MID$(x$(rp%), cp%, sp%) = SPACE$(sp%)
  476.                 END IF
  477.               
  478.               ' Clear out the possible Ctrl-Q signal
  479.                 ctrlQflag% = FALSE
  480.               
  481.             END SELECT
  482.           
  483.         LOOP UNTIL quit%
  484.       
  485.       ' Concatenate the array strings to form the result
  486.         a$ = ""
  487.         FOR i% = 1 TO high%
  488.             a$ = a$ + " " + LTRIM$(RTRIM$(x$(i%)))
  489.         NEXT i%
  490.       
  491.       ' Remove double spaces
  492.         ds% = INSTR(a$, "  ")
  493.         DO WHILE ds%
  494.             a$ = LEFT$(a$, ds% - 1) + MID$(a$, ds% + 1)
  495.             ds% = INSTR(a$, "  ")
  496.         LOOP
  497.       
  498.       ' Trim both ends of spaces
  499.         a$ = LTRIM$(RTRIM$(a$))
  500.       
  501.       ' Restore original cursor position
  502.         LOCATE down%, across%, 1
  503.       
  504.     END SUB
  505.  
  506.   ' ************************************************
  507.   ' **  Name:          EditLine                   **
  508.   ' **  Type:          Subprogram                 **
  509.   ' **  Module:        EDIT.BAS                   **
  510.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  511.   ' ************************************************
  512.   '
  513.   ' Allows the user to edit a string at the current cursor position
  514.   ' on the screen.  Keys acted upon are Ctrl-Y, Ctrl-Q-Y, Right
  515.   ' arrow, Left arrow, Ctrl-Left arrow, Ctrl-Right arrow, Home, End,
  516.   ' Insert, Escape, Backspace, and Delete.
  517.   ' Pressing Enter, Up arrow, or Down arrow terminates
  518.   ' the subprogram and returns exitCode% of 0, +1, or -1.
  519.   '
  520.   ' EXAMPLE OF USE:  EditLine a$, exitCode%
  521.   ' PARAMETERS:      a$         String to be edited
  522.   '                  exitCode%  Returned code indicating the terminating
  523.   '                             key press
  524.   ' VARIABLES:       row%       Saved current cursor row
  525.   '                  col%       Saved current cursor column
  526.   '                  length%    Length of a$
  527.   '                  ptr%       Location of cursor during the editing
  528.   '                  insert%    Insert mode toggle
  529.   '                  quit%      Flag for quitting the editing
  530.   '                  original$  Saved copy of starting a$
  531.   '                  keyNumber% Integer code for any key press
  532.   '                  ctrlQflag% Indicates Ctrl-Q key press
  533.   '                  kee$       Character of key just pressed
  534.   '                  sp%        Length of space string
  535.   ' MODULE LEVEL
  536.   '   DECLARATIONS:  DECLARE FUNCTION KeyCode% ()
  537.   '                  DECLARE SUB EditLine (a$, exitCode%)
  538.   '
  539.     SUB EditLine (a$, exitCode%) STATIC
  540.       
  541.       ' Set up some variables
  542.         row% = CSRLIN
  543.         col% = POS(0)
  544.         length% = LEN(a$)
  545.         ptr% = 0
  546.         insert% = TRUE
  547.         quit% = FALSE
  548.         original$ = a$
  549.       
  550.       ' Main processing loop
  551.         DO
  552.           
  553.           ' Display the line
  554.             LOCATE row%, col%, 0
  555.             PRINT a$;
  556.           
  557.           ' Show appropriate cursor type
  558.             IF insert% THEN
  559.                 LOCATE row%, col% + ptr%, 1, 6, 7
  560.             ELSE
  561.                 LOCATE row%, col% + ptr%, 1, 1, 7
  562.             END IF
  563.           
  564.           ' Get next keystroke
  565.             keyNumber% = KeyCode%
  566.           
  567.           ' Process the key
  568.             SELECT CASE keyNumber%
  569.               
  570.             CASE INSERTKEY
  571.                 IF insert% THEN
  572.                     insert% = FALSE
  573.                 ELSE
  574.                     insert% = TRUE
  575.                 END IF
  576.               
  577.             CASE BACKSPACE
  578.                 IF ptr% THEN
  579.                     a$ = a$ + " "
  580.                     a$ = LEFT$(a$, ptr% - 1) + MID$(a$, ptr% + 1)
  581.                     ptr% = ptr% - 1
  582.                 END IF
  583.               
  584.             CASE DELETE
  585.                 a$ = a$ + " "
  586.                 a$ = LEFT$(a$, ptr%) + MID$(a$, ptr% + 2)
  587.               
  588.             CASE UPARROW
  589.                 exitCode% = 1
  590.                 quit% = TRUE
  591.               
  592.             CASE DOWNARROW
  593.                 exitCode% = -1
  594.                 quit% = TRUE
  595.               
  596.             CASE LEFTARROW
  597.                 IF ptr% THEN
  598.                     ptr% = ptr% - 1
  599.                 END IF
  600.               
  601.             CASE RIGHTARROW
  602.                 IF ptr% < length% - 1 THEN
  603.                     ptr% = ptr% + 1
  604.                 END IF
  605.               
  606.             CASE ENTER
  607.                 exitCode% = 0
  608.                 quit% = TRUE
  609.               
  610.             CASE HOME
  611.                 ptr% = 0
  612.               
  613.             CASE ENDKEY
  614.                 ptr% = length% - 1
  615.               
  616.             CASE CTRLRIGHTARROW
  617.                 DO UNTIL MID$(a$, ptr% + 1, 1) = " " OR ptr% = length% - 1
  618.                     ptr% = ptr% + 1
  619.                 LOOP
  620.                 DO UNTIL MID$(a$, ptr% + 1, 1) <> " " OR ptr% = length% - 1
  621.                     ptr% = ptr% + 1
  622.                 LOOP
  623.               
  624.             CASE CTRLLEFTARROW
  625.                 DO UNTIL MID$(a$, ptr% + 1, 1) = " " OR ptr% = 0
  626.                     ptr% = ptr% - 1
  627.                 LOOP
  628.                 DO UNTIL MID$(a$, ptr% + 1, 1) <> " " OR ptr% = 0
  629.                     ptr% = ptr% - 1
  630.                 LOOP
  631.                 DO UNTIL MID$(a$, ptr% + 1, 1) = " " OR ptr% = 0
  632.                     ptr% = ptr% - 1
  633.                 LOOP
  634.                 IF ptr% THEN
  635.                     ptr% = ptr% + 1
  636.                 END IF
  637.               
  638.             CASE CTRLY
  639.                 a$ = SPACE$(length%)
  640.                 ptr% = 0
  641.               
  642.             CASE CTRLQ
  643.                 ctrlQflag% = TRUE
  644.               
  645.             CASE ESCAPE
  646.                 a$ = original$
  647.                 ptr% = 0
  648.                 insert% = TRUE
  649.               
  650.             CASE IS > 255
  651.                 SOUND 999, 1
  652.               
  653.             CASE IS < 32
  654.                 SOUND 999, 1
  655.               
  656.             CASE ELSE
  657.               
  658.               ' Convert key code to character string
  659.                 kee$ = CHR$(keyNumber%)
  660.               
  661.               ' Insert or overstrike
  662.                 IF insert% THEN
  663.                     a$ = LEFT$(a$, ptr%) + kee$ + MID$(a$, ptr% + 1)
  664.                     a$ = LEFT$(a$, length%)
  665.                 ELSE
  666.                     IF ptr% < length% THEN
  667.                         MID$(a$, ptr% + 1, 1) = kee$
  668.                     END IF
  669.                 END IF
  670.               
  671.               ' Are we up against the wall?
  672.                 IF ptr% < length% THEN
  673.                     ptr% = ptr% + 1
  674.                 ELSE
  675.                     SOUND 999, 1
  676.                 END IF
  677.               
  678.               ' Special check for Ctrl-Q-Y (del to end of line)
  679.                 IF kee$ = "y" AND ctrlQflag% THEN
  680.                     IF ptr% <= length% THEN
  681.                         sp% = length% - ptr% + 1
  682.                         MID$(a$, ptr%, sp%) = SPACE$(sp%)
  683.                         ptr% = ptr% - 1
  684.                     END IF
  685.                 END IF
  686.               
  687.               ' Clear out the Ctrl-Q signal
  688.                 ctrlQflag% = FALSE
  689.               
  690.             END SELECT
  691.           
  692.         LOOP UNTIL quit%
  693.       
  694.     END SUB
  695.  
  696.   ' ************************************************
  697.   ' **  Name:          FormatTwo                  **
  698.   ' **  Type:          Subprogram                 **
  699.   ' **  Module:        EDIT.BAS                   **
  700.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  701.   ' ************************************************
  702.   '
  703.   ' Splits a string into two strings between words,
  704.   ' and with spaces padded to the first string to bring it to
  705.   ' length, col%.
  706.   '
  707.   ' EXAMPLE OF USE:  FormatTwo a$, b$, col%
  708.   ' PARAMETERS:      a$         String to be split
  709.   '                  b$         Returns the tail of the string
  710.   '                  col%       Maximum length of a$ after being split
  711.   ' VARIABLES:       ptr%       Pointer to split point in a$
  712.   ' MODULE LEVEL
  713.   '   DECLARATIONS:  DECLARE SUB FormatTwo (a$, b$, col%)
  714.   '
  715.     SUB FormatTwo (a$, b$, col%) STATIC
  716.       
  717.       ' Be sure string is long enough
  718.         a$ = a$ + SPACE$(col%)
  719.       
  720.       ' Look for rightmost space
  721.         ptr% = col% + 1
  722.         DO WHILE MID$(a$, ptr%, 1) <> " " AND ptr% > 1
  723.             ptr% = ptr% - 1
  724.         LOOP
  725.       
  726.       ' Do the split
  727.         IF ptr% = 1 THEN
  728.             b$ = MID$(a$, col% + 1)
  729.             a$ = LEFT$(a$, col%)
  730.         ELSE
  731.             b$ = MID$(a$, ptr% + 1)
  732.             a$ = LEFT$(a$, ptr% - 1)
  733.         END IF
  734.       
  735.       ' Pad the first string with spaces to length col%
  736.         a$ = LEFT$(a$ + SPACE$(col%), col%)
  737.       
  738.       ' Trim extra spaces from end of second string
  739.         b$ = RTRIM$(b$)
  740.       
  741.     END SUB
  742.  
  743.   ' ************************************************
  744.   ' **  Name:          InsertCharacter            **
  745.   ' **  Type:          Subprogram                 **
  746.   ' **  Module:        EDIT.BAS                   **
  747.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  748.   ' ************************************************
  749.   '
  750.   ' Handles the task of inserting a character
  751.   ' for the EditBox subprogram.
  752.   '
  753.   ' EXAMPLE OF USE:  InsertCharacter x$(), kee$, rp%, cp%, wide%, high%
  754.   ' PARAMETERS:      x$()       Array in EditBox where character is to be
  755.   '                             inserted
  756.   '                  kee$       Character to be inserted
  757.   '                  rp%        Row location of insert
  758.   '                  cp%        Column location of insert
  759.   '                  wide%      Width of rectangular area being edited
  760.   '                  high%      Height of rectangular area being edited
  761.   ' VARIABLES:       dum$       Marker character
  762.   '                  b$         String from array at insertion point
  763.   '                  c$         Right part of string at insertion point
  764.   '                  i%         Looping index
  765.   '                  ds%        Position in string of double spaces
  766.   ' MODULE LEVEL
  767.   '   DECLARATIONS:  DECLARE SUB InsertCharacter (x$(), kee$, cp%, rp%,
  768.   '                                               wide%, high%)
  769.   '
  770.     SUB InsertCharacter (x$(), kee$, rp%, cp%, wide%, high%) STATIC
  771.       
  772.       ' First, insert a dummy character as a marker
  773.         dum$ = CHR$(255)
  774.         b$ = LEFT$(x$(rp%), cp% - 1)
  775.         c$ = MID$(x$(rp%), cp%)
  776.         b$ = b$ + dum$ + c$
  777.       
  778.       ' If end of string is a space, then drop it
  779.         IF RIGHT$(b$, 1) = " " THEN
  780.             x$(rp%) = LEFT$(b$, wide%)
  781.           
  782.       ' Otherwise, need to adjust the lines
  783.         ELSE
  784.           
  785.           ' If not in the last line, then tack them all together
  786.             IF rp% < high% THEN
  787.                 FOR i% = rp% + 1 TO high%
  788.                     b$ = b$ + " " + x$(i%)
  789.                 NEXT i%
  790.             END IF
  791.           
  792.           ' Trim both ends
  793.             b$ = LTRIM$(RTRIM$(b$))
  794.           
  795.           ' Remove all double spaces
  796.             ds% = INSTR(b$, "  ")
  797.             DO WHILE ds%
  798.                 b$ = LEFT$(b$, ds% - 1) + MID$(b$, ds% + 1)
  799.                 ds% = INSTR(b$, "  ")
  800.             LOOP
  801.           
  802.           ' Reformat the lines
  803.             FOR i% = rp% TO high%
  804.                 FormatTwo b$, c$, wide%
  805.                 x$(i%) = b$
  806.                 b$ = c$
  807.             NEXT i%
  808.           
  809.         END IF
  810.       
  811.       ' Find out where that dummy character is now
  812.         FOR rp% = 1 TO high%
  813.             cp% = INSTR(x$(rp%), dum$)
  814.             IF cp% THEN
  815.                 EXIT FOR
  816.             END IF
  817.         NEXT rp%
  818.       
  819.       ' Replace the dummy character with the keystroke character
  820.         IF cp% THEN
  821.             MID$(x$(rp%), cp%, 1) = kee$
  822.         END IF
  823.       
  824.       ' Increment the cursor location
  825.         IF cp% < wide% + 1 THEN
  826.             cp% = cp% + 1
  827.         ELSE
  828.             IF rp% < high% THEN
  829.                 cp% = 1
  830.                 rp% = rp% + 1
  831.             END IF
  832.         END IF
  833.       
  834.     END SUB
  835.  
  836.