home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume20 / sc / part04 < prev    next >
Text File  |  1991-06-05  |  56KB  |  2,122 lines

  1. Newsgroups: comp.sources.misc
  2. From: Jeff Buhrt <prslnk!buhrt@cs.indiana.edu>
  3. Subject:  v20i038:  sc - The SC Spreadsheet, release 6.16, Part04/07
  4. Message-ID: <1991Jun5.172814.12170@sparky.IMD.Sterling.COM>
  5. X-Md4-Signature: 69e0a465a0fb1cf87d861e349692b612
  6. Date: Wed, 5 Jun 1991 17:28:14 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: Jeff Buhrt <prslnk!buhrt@cs.indiana.edu>
  10. Posting-number: Volume 20, Issue 38
  11. Archive-name: sc/part04
  12.  
  13. #! /bin/sh
  14. # into a shell via "sh file" or similar.  To overwrite existing files,
  15. # type "sh file -c".
  16. # The tool that generated this appeared in the comp.sources.unix newsgroup;
  17. # send mail to comp-sources-unix@uunet.uu.net if you want that tool.
  18. # Contents:  help.c range.c sc.c
  19. # Wrapped by kent@sparky on Wed Jun  5 09:22:20 1991
  20. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  21. echo If this archive is complete, you will see the following message:
  22. echo '          "shar: End of archive 4 (of 7)."'
  23. if test -f 'help.c' -a "${1}" != "-c" ; then 
  24.   echo shar: Will not clobber existing file \"'help.c'\"
  25. else
  26.   echo shar: Extracting \"'help.c'\" \(18188 characters\)
  27.   sed "s/^X//" >'help.c' <<'END_OF_FILE'
  28. X/*
  29. X * Help functions for sc 
  30. X * R. Bond, 1988
  31. X * J. Buhrt 1990
  32. X * $Revision: 6.16 $
  33. X */
  34. X
  35. X#ifdef QREF
  36. X#include <stdio.h>
  37. Xchar    *header = " Quick Reference\n\n$Revision: 6.16 $";
  38. X#else
  39. X#include <curses.h>
  40. X#include "sc.h"
  41. X#endif /* QREF */
  42. X
  43. Xchar *intro[] = {
  44. X" ",
  45. X" Overview:",
  46. X" ",
  47. X" A:   This overview",
  48. X" B:   Options",
  49. X" C:   Cursor movement commands",
  50. X" D:   Cell entry and editing commands",
  51. X" E:   Line Editing",
  52. X" F:   File commands",
  53. X" G:   Row and column commands",
  54. X" H:   Range commands",
  55. X" I:   Miscellaneous commands",
  56. X" J:   Variable names/Expressions",
  57. X" K:   Range functions",
  58. X" L:   Numeric functions",
  59. X" M:   String functions",
  60. X" N:   Financial functions",
  61. X" O:   Time and date functions",
  62. X" ",
  63. X" Q:   Return to main spreadsheet",
  64. X(char *)0
  65. X};
  66. X
  67. Xchar *options[] = {
  68. X" ",
  69. X" B: Options",
  70. X" ",
  71. X"     ^To  Toggle options. Toggle one option selected by o:",
  72. X" ",
  73. X"          a    Recalculate automatically or on ``@'' commands.",
  74. X"          c    Current cell highlighting enable/disable.",  
  75. X"          e    External function execution enable/disable.",
  76. X"          l    Autolabeling defined cells enable/disable.",
  77. X"          n    If enabled, a digit starts a numeric value.",
  78. X"          t    Top line display enable/disable.",
  79. X"          x    Encrypt/decrypt database and listing files.",
  80. X"          $    Dollar prescale.  If enabled, all numeric constants.",
  81. X"               (not expressions) entered are multipled by 0.01.",
  82. X" ",
  83. X"     S    Set options.  Options include:",
  84. X" ",
  85. X"          byrows        Recalculate in row order. (default)",
  86. X"          bycols        Recalculate in column order.",
  87. X"          iterations=n  Set the number of iterations allowed. (10)",
  88. X"          tblstyle=xx   Set ``T'' output style to:",
  89. X"                        0 (none), tex, latex, slatex, or tbl.",
  90. X"          rndinfinity   Round to infinity (round .5 up vs to nearest even).",
  91. X(char *)0
  92. X};
  93. X
  94. Xchar *cursor[] = {
  95. X" ",
  96. X" C: Cell cursor movement (always OK):",
  97. X" ",
  98. X"     ^N ^P ^B ^F Down, up, back, forward",
  99. X"     ^Ed         Go to end of range.  Follow ^E by a direction indicator",
  100. X"                 such as ^P or j.",
  101. X"     Arrow keys (if the terminal and termcap support them.)",
  102. X" ",
  103. X" Cell cursor movement if no prompt active:",
  104. X"     j,k,l,h    Down, up, right, left",
  105. X"     J,K,L,H    Down, up, right, left by 1/2 pages",
  106. X"     SPACE      Forward",
  107. X"     ^H         Back",
  108. X"     TAB        Forward, otherwise starts/ends a range",
  109. X"     ^          Up to row 0 of the current column.",
  110. X"     #          Down to the last valid row of the current column.",
  111. X"     0          Back to column A.  Preface with ^U if numeric mode.",
  112. X"     $          Forward to the last valid column of the current row.",
  113. X"     b          Back then up to the previous valid cell.",
  114. X"     w          Forward then down to the next valid cell.",
  115. X"     g          Go to a cell.  Cell name, range name, quoted string,",
  116. X"                a number, 'error', or 'invalid' to specify which cell.",
  117. X(char *)0
  118. X};
  119. X
  120. X
  121. Xchar *cell[] = {
  122. X" ",
  123. X" D: Cell entry and editing commands:",
  124. X" ",
  125. X"     =    Enter a numeric constant or expression.",
  126. X"     <    Enter a left justified string or string expression.",
  127. X"     \",>  Enter a right justified string or string expression.",
  128. X"     e    Edit the current cell's numeric value.",
  129. X"     E    Edit the current cell's string part.",
  130. X"     F    Assign a format to the current cell's numeric value.",
  131. X"     x    Clear the current cell.",
  132. X"     c    Copy the last marked cell to the current cell.",
  133. X"     m    Mark a cell to be used as the source for ``c''",
  134. X"     +    Increment numeric part",
  135. X"     -    Decrement numeric part",
  136. X"  RETURN  Enter insert mode if the input line was empty (ESC to edit)",
  137. X" ",
  138. X"     In numeric mode, a decimal digit, ``+'', ``-'', and ``.'' all start",
  139. X"     a new numeric constant or expression.",
  140. X(char *)0
  141. X};
  142. X
  143. X
  144. Xchar *vi[] = {
  145. X" ",
  146. X" E: Line Editor",
  147. X" ",
  148. X"     Hitting the ESC key while entering any command on the top line",
  149. X"     will start a one-line vi-style editor.  Supported commands:",
  150. X" ",
  151. X"     ESC q        Abort command entry.",
  152. X"     h l          Move cursor forward, backward.",
  153. X"     0 $          Move cursor to the beginning, end of the line.",
  154. X"     b w          Move cursor forward/back one word.",
  155. X"     fc           Move cursor to character c.",
  156. X"     tc           Move the cursor the the character before c.",
  157. X"     i a          Enter insert mode before/after the cursor.",
  158. X"     I            Move to cursor column 0 and enter insert mode.",
  159. X"     x X          Delete the character under/before the cursor.",
  160. X"     rc           Replace the character under the cursor with c.",
  161. X"     cm           Change - m = b,f,h,l,t or w.",
  162. X"     dm           Delete - m = b,f,h,l,t or w.",
  163. X"     R            Enter replace (overstrike) mode.",
  164. X"     + j - k /    Forward/backward/search the command history.",
  165. X"     n            Repeat last history search.",
  166. X"     . u          Repeat/undo the last command.",
  167. X(char *)0
  168. X};
  169. X
  170. Xchar *file[] = {
  171. X" ",
  172. X" F: File commands:",
  173. X" ",
  174. X"     G    Get a new database from a file. ",
  175. X"     M    Merge a new file into the current database.",
  176. X"     P    Put the current database into a file.",
  177. X"     W    Write a listing of the current database into a file in",
  178. X"          a form that matches its appearance on the screen.",
  179. X"     T    Write a listing of the current database to a file, but",
  180. X"          put delimiters between each pair of fields.",
  181. X"          Optionally brackets output with control lines for ``tbl'',",
  182. X"          ``LaTeX'', ``SLaTex'', or ``TeX''.",
  183. X" ",
  184. X"     If encryption mode is set, file I/O will be encrypted/decrypted.",
  185. X"     ``\"| program\"'' for a file name will pipe (unencrypted) output to",
  186. X"     a program for Put, Write and Table.  If a cell name is used",
  187. X"     as the file name, the cell's string part will be used as the",
  188. X"     file name.",
  189. X(char *)0
  190. X};
  191. X
  192. X
  193. Xchar *row[] = {
  194. X" ",
  195. X" G: Row and column commands:",
  196. X" ",
  197. X"     ir, ic      Insert a new, empty row (column)",
  198. X"     ar, ac      Append a new copy of the current row (column)",
  199. X"     dr, dc      Delete the current row (column)",
  200. X"     pr, pc, pm  Pull deleted cells back into the spreadsheet",
  201. X"                 Insert rows, columns or merge the cells.",
  202. X"     vr, vc      Remove expressions from the affected rows (columns),",
  203. X"                 leaving only the values.",
  204. X"     zr, zc      Hide (``zap'') the current row (column)",
  205. X"     sr, sc      Show hidden rows (columns)",
  206. X"     f           Set the output format to be used with the values of",
  207. X"                 each cell in this column.  Enter field width and",
  208. X"                 number of fractional digits.  A preceding count can be",
  209. X"                 used to change more than one column.",
  210. X" ",
  211. X"     Commands which move or copy cells also modify the row and column ",
  212. X"     references in the new cell expressions.  Use ``fixed'' or the",
  213. X"     ``$'' style cell reference to supress the change.",
  214. X" ",
  215. X"     @myrow, @mycol    return the row or column of the current cell",
  216. X(char *)0
  217. X};
  218. X
  219. X
  220. Xchar *range[] = {
  221. X" ",
  222. X" H: Range commands:",
  223. X" ",
  224. X"     /x   Clear a range. ",
  225. X"     /v   Remove the expressions from a range of cells, leaving ",
  226. X"          just the values.",
  227. X"     /c   Copy a source range to a destination range.",
  228. X"     /f   Fill a range with constant values starting with a given",
  229. X"          value and increasing by a given increment.",
  230. X"     /d   Assign a name to a cell or a range of cells.  Give the",
  231. X"          the name, surrounded by quotes, and either a cell name such",
  232. X"          as ``A10'' or a range such as ``a1:b20''.",
  233. X"     /s   Shows the currently defined range names.  Pipe output to",
  234. X"          sort, then to less.",
  235. X"     /u   Use this command to undefine a previously defined range name.",
  236. X"     /F   Assign a format string to a range of cells.",
  237. X" ",
  238. X"     Range operations affect a rectangular region on the screen",
  239. X"     defined by the upper left and lower right cells in the region.",
  240. X"     A range is specified by giving the cell names separated by ``:'',",
  241. X"     such as ``a20:k52''.  Another way to refer to a range is to use",
  242. X"     a name previously defined using ``/d''.",
  243. X(char *)0
  244. X};
  245. X
  246. X
  247. Xchar *misc[] = {
  248. X" ",
  249. X" I: Miscellaneous commands:",
  250. X" ",
  251. X"     Q q ^C   Exit from the program.",
  252. X"     ^G ESC   Abort entry of the current command.",
  253. X"     ?        Help",
  254. X"     !        Shell escape.  Enter a command to run.  ``!!'' repeats",
  255. X"              the last command.  Just ``!'' starts an interactive shell.",
  256. X"     ^L       Redraw the screen.",
  257. X"     ^R       Redraw the screen.  Highlight cells with values but no",
  258. X"              expressions.",
  259. X"     ^X       Redraw the screen.  Show formulas, not values.",
  260. X"     @        Recalculate the spreadsheet.",
  261. X"     ^V       Type, in the command line, the name of the current cell.",
  262. X"     ^W       Type, in the command line, the current cell's expression.",
  263. X"     ^A       Type, in the command line, the current cell's numeric value.",
  264. X"     TAB      When the character cursor is on the top line TAB can be used",
  265. X"              to start or stop the display of the default range.",
  266. X(char *)0
  267. X};
  268. X
  269. Xchar *var[] = {
  270. X" ",
  271. X" J: Variable names:",
  272. X" ",
  273. X"     K20    Row and column can vary on copies.",
  274. X"     $K$20  Row and column stay fixed on copies.",
  275. X"     $K20   Row can vary; column stays fixed on copies.",
  276. X"     K$20   Row stays fixed; column can vary on copies.",
  277. X"     fixed  holds following expession fixed on copies.",
  278. X"     Cells and ranges can be given a symbolic name via ``/d''.",
  279. X" ",
  280. X" Expressions:",
  281. X"     -e      Negation                e<=e  Less than or equal",
  282. X"     e+e     Addition                e=e   Equal",
  283. X"     e-e     Subtraction             e!=e  Not Equal",
  284. X"     e*e     Multiplication          e>=e  Greater than or equal",
  285. X"     e/e     Division                e>e  Greater than",
  286. X"     e%e     Modulo                  e<e  Less than",
  287. X"     e^e     Exponentiation          e&e  Boolean operator AND.",
  288. X"     ~e      Boolean operator NOT    e|e  Boolean operator OR",
  289. X"     e?e1:e2  or @if(e,e1,e2)",
  290. X"             Conditional: If e is non zero then then e1, else e2.",
  291. X"     Terms may be constants, variables, and parenthesized expressions.",
  292. X(char *)0
  293. X};
  294. X
  295. Xchar *rangef[] = {
  296. X" ",
  297. X" K: Range functions:",
  298. X" ",
  299. X"     @sum(r)           Sum all valid cells in the range.",
  300. X"     @prod(r)          Multiply together all valid cells in the range.",
  301. X"     @avg(r)           Average all valid cells in the range.",
  302. X"     @count(r)         Count all valid cells in the range.",
  303. X"     @max(r)           Return the maximum value in the range.",
  304. X"     @min(r)           Return the minimum value in the range.",
  305. X"     @stddev(r)        Return the sample standard deviation of ",
  306. X"                       the cells in the range.",
  307. X"     @index(e,r) @stindex(e,r)",
  308. X"                       Return the numeric (string) value of the cell at",
  309. X"                       index e into range r.",
  310. X"     @lookup(e,r) @hlookup(e,r,n) @vlookup(e,r,n)",
  311. X"                       Search through the range r for a value that",
  312. X"                       matches e.  If e is numeric, the last value <= e",
  313. X"                       matches; if string, an exact match is required.",
  314. X"                       @lookup searches a single row (column) and returns",
  315. X"                       the value from the next column (row); @hlookup",
  316. X"                       (@vlookup) searches the first row (column) in r and",
  317. X"                       returns the value n columns (rows) from the match.",
  318. X(char *)0
  319. X};
  320. X
  321. Xchar *numericf[] = {
  322. X" ",
  323. X" L: Numeric functions:",
  324. X" ",
  325. X"     @atan2(e1,e2)     Arc tangent of e1/e2.",
  326. X"     @ceil(e)          Smallest integer not less than e.",
  327. X"     @eqs(se1,se2)     1 if string expr se1 has the same value as se2.",
  328. X"     @exp(e)           Exponential function of e.",
  329. X"     @abs(e) @fabs(e)  Absolute value of e.",
  330. X"     @floor(e)         The largest integer not greater than e.",
  331. X"     @hypot(x,y)       Sqrt(x*x+y*y).",
  332. X"     @max(e1,e2,...)   The maximum of the values of the e's.",
  333. X"     @min(e1,e2,...)   The minimum of the values of the e's",
  334. X"     @nval(se,e)       The numeric value of a named cell.",
  335. X"     pi                A constant quite close to pi.",
  336. X"     @pow(e1,e2)       e1 raised to the power of e2.",
  337. X"     @rnd(e)           Round e to the nearest integer.",
  338. X"     @round(e,n)       Round e to n decimal places.",
  339. X"     @sqrt(e)          Square root of e.",
  340. X"     @ston(se)         Convert string expr se to a numeric",
  341. X"     @ln(e)   @log(e)           Natural/base 10 logarithm of e.",
  342. X"     @dtr(e)  @rtd(e)           Convert degrees to/from radians.",
  343. X"     @cos(e)  @sin(e)  @tan(e)  Trig functions of radian arguments.",
  344. X"     @asin(e) @acos(e) @atan(e) Inverse trig function.",
  345. X(char *)0
  346. X};
  347. X
  348. Xchar *stringf[] = {
  349. X" ",
  350. X" M: String functions:",
  351. X" ",
  352. X"     #                 Concatenate strings.  For example, the",
  353. X"                       string expression ``A0 # \"zy dog\"'' yields",
  354. X"                       ``the lazy dog'' if A0 is ``the la''.",
  355. X"     @substr(se,e1,e2) Extract characters e1 through e2 from the",
  356. X"                       string expression se.  For example,",
  357. X"                       ``@substr(\"Nice jacket\" 4, 7)'' yields ",
  358. X"                       ``e ja''.",
  359. X"     @fmt(se,e)        Convert a number to a string using sprintf(3).",
  360. X"                       For example,  ``@fmt(\"*%6.3f*\",10.5)'' yields",
  361. X"                       ``*10.500*''.  Use formats are e, E, f, g, and G.", 
  362. X"     @sval(se,e)       Return the string value of a cell selected by name.",
  363. X"     @ext(se,e)        Call an external function (program or",
  364. X"                       script).  Convert e to a string and append it",
  365. X"                       to the command line as an argument.  @ext yields",
  366. X"                       a string: the first line printed to standard",
  367. X"                       output by the command.",
  368. X"     @coltoa(e)        Return a column letter(s) from the passed number",
  369. X"     String expressions are made up of constant strings (characters",
  370. X"     surrounded by quotes), variables, and string functions.",
  371. X(char *)0
  372. X};
  373. X
  374. X
  375. Xchar *finf[] = {
  376. X" ",
  377. X" N: Financial functions:",
  378. X" ",
  379. X"     @pmt(e1,e2,e3)    @pmt(60000,.01,360) computes the monthly",
  380. X"                       payments for a $60000 mortgage at 12%",
  381. X"                       annual interest (.01 per month) for 30",
  382. X"                       years (360 months).",
  383. X" ",
  384. X"     @fv(e1,e2,e3)     @fv(100,.005,36) computes the future value",
  385. X"                       of 36 monthly payments of $100 at 6%",
  386. X"                       interest (.005 per month).  It answers the",
  387. X"                       question:  ``How much will I have in 36",
  388. X"                       months if I deposit $100 per month in a",
  389. X"                       savings account paying 6% interest com-",
  390. X"                       pounded monthly?''",
  391. X" ",
  392. X"     @pv(e1,e2,e3)     @pv(1000,.015,36) computes the present",
  393. X"                       value of an ordinary annuity of 36",
  394. X"                       monthly payments of $1000 at 18% annual",
  395. X"                       interest.  It answers the question: ``How",
  396. X"                       much can I borrow at 18% for 30 years if I",
  397. X"                       pay $1000 per month?''",
  398. X(char *)0
  399. X};
  400. X
  401. X
  402. Xchar *timef[] = {
  403. X" ",
  404. X" O: Time and date functions:",
  405. X" ",
  406. X"     @now              Return the time encoded in seconds since 1970.",
  407. X"     @dts(m,d,y)       Return m/d/y encoded in seconds since 1970.",
  408. X"     @tts(h,m,s)       Return h:m:s encoded in seconds since midnight.",
  409. X" ",
  410. X"     All of the following take an argument expressed in seconds:",
  411. X" ",
  412. X"     @date(e)          Convert the time in seconds to a date",
  413. X"                       string 24 characters long in the following",
  414. X"                       form: ``Sun Sep 16 01:03:52 1973''.  Note",
  415. X"                       that you can extract pieces of this fixed format",
  416. X"                       string with @substr.",
  417. X"     @year(e)          Return the year.  Valid years begin with 1970.",
  418. X"     @month(e)         Return the month: 1 (Jan) to 12 (Dec).",
  419. X"     @day(e)           Return the day of the month: 1 to 31.",
  420. X"     @hour(e)          Return the number of hours since midnight: 0 to 23.",
  421. X"     @minute(e)        Return the number of minutes since the",
  422. X"                       last full hour: 0 to 59.",
  423. X"     @second(e)        Return the number of seconds since the",
  424. X"                       last full minute: 0 to 59.",
  425. X(char *)0
  426. X};
  427. X
  428. X#ifndef QREF
  429. Xstatic    int    pscreen();
  430. X
  431. Xvoid
  432. Xhelp()
  433. X{
  434. X    int option;
  435. X    char **ns = intro;
  436. X
  437. X    while((option = pscreen(ns)) != 'q' && option != 'Q') {
  438. X        switch (option) {
  439. X    case 'a': case 'A': ns = intro; break;
  440. X    case 'b': case 'B': ns = options; break;
  441. X    case 'c': case 'C': ns = cursor; break;
  442. X    case 'd': case 'D': ns = cell; break;
  443. X    case 'e': case 'E': ns = vi; break;
  444. X    case 'f': case 'F': ns = file; break;
  445. X    case 'g': case 'G': ns = row; break;
  446. X    case 'h': case 'H': ns = range; break;
  447. X    case 'i': case 'I': ns = misc; break;
  448. X    case 'j': case 'J': ns = var; break;
  449. X    case 'k': case 'K': ns = rangef; break;
  450. X    case 'l': case 'L': ns = numericf; break;
  451. X    case 'm': case 'M': ns = stringf; break;
  452. X    case 'n': case 'N': ns = finf; break;
  453. X    case 'o': case 'O': ns = timef; break;
  454. X    default: ns = intro; break;
  455. X    }
  456. X    }
  457. X    FullUpdate++;
  458. X    (void) move(1,0);
  459. X    (void) clrtobot();
  460. X}
  461. X
  462. Xstatic    int
  463. Xpscreen(screen)
  464. Xchar *screen[];
  465. X{
  466. X    int lineno;
  467. X    int dbline;
  468. X
  469. X    (void) move(1,0);
  470. X    (void) clrtobot();
  471. X    dbline = 1;
  472. X    for (lineno = 0; screen[lineno]; lineno++) {
  473. X    (void) move(dbline++, 4);
  474. X    (void) addstr (screen[lineno]);
  475. X    (void) clrtoeol();
  476. X    }
  477. X    (void) move(0,0);
  478. X    (void) printw("Which Screen? [a-o, q]");
  479. X    (void) clrtoeol();
  480. X    (void) refresh();
  481. X    return(nmgetch());
  482. X}
  483. X#else
  484. Xchar    ** pages[] = { intro, options, cursor, cell, vi, file, row,
  485. X            range, misc, var, rangef, numericf, stringf,
  486. X            finf, timef, NULL};
  487. X
  488. Xvoid
  489. Xmain()
  490. X{   int    lineno;
  491. X    char    ***pagep = pages;
  492. X
  493. X    while (*pagep)
  494. X    {
  495. X    (void) fputs(SCNAME, stdout);
  496. X    (void) puts(header);
  497. X
  498. X    for (lineno = 0; (*pagep)[lineno]; lineno++) {
  499. X        (void) puts((*pagep)[lineno]);
  500. X    }
  501. X    (void) putchar('\f');
  502. X    pagep++;
  503. X    }
  504. X    (void) exit(0);
  505. X}
  506. X#endif /* QREF */
  507. END_OF_FILE
  508.   if test 18188 -ne `wc -c <'help.c'`; then
  509.     echo shar: \"'help.c'\" unpacked with wrong size!
  510.   fi
  511.   # end of 'help.c'
  512. fi
  513. if test -f 'range.c' -a "${1}" != "-c" ; then 
  514.   echo shar: Will not clobber existing file \"'range.c'\"
  515. else
  516.   echo shar: Extracting \"'range.c'\" \(5832 characters\)
  517.   sed "s/^X//" >'range.c' <<'END_OF_FILE'
  518. X
  519. X/*    SC    A Spreadsheet Calculator
  520. X *        Range Manipulations
  521. X *
  522. X *              Robert Bond, 4/87
  523. X *
  524. X *        $Revision: 6.16 $
  525. X */
  526. X
  527. X#include <sys/types.h>
  528. X#ifdef BSD42
  529. X#include <strings.h>
  530. X#else
  531. X#ifndef SYSIII
  532. X#include <string.h>
  533. X#endif
  534. X#endif
  535. X
  536. X#include <stdio.h>
  537. X#include <curses.h>
  538. X#include <ctype.h>
  539. X#include "sc.h"
  540. X
  541. Xstatic struct range *rng_base;
  542. X
  543. Xvoid
  544. Xadd_range(name, left, right, is_range)
  545. Xchar *name;
  546. Xstruct ent_ptr left, right;
  547. Xint is_range;
  548. X{
  549. X    struct range *r;
  550. X    register char *p;
  551. X    int len;
  552. X    int minr,minc,maxr,maxc;
  553. X    int minrf, mincf, maxrf, maxcf;
  554. X    register struct ent *rcp;
  555. X
  556. X    if (left.vp->row < right.vp->row) {
  557. X    minr = left.vp->row; minrf = left.vf & FIX_ROW;
  558. X    maxr = right.vp->row; maxrf = right.vf & FIX_ROW;
  559. X    } else {
  560. X    minr = right.vp->row; minrf = right.vf & FIX_ROW;
  561. X    maxr = left.vp->row; maxrf = right.vf & FIX_ROW;
  562. X    } 
  563. X
  564. X    if (left.vp->col < right.vp->col) {
  565. X    minc = left.vp->col; mincf = left.vf & FIX_COL;
  566. X    maxc = right.vp->col; maxcf = right.vf & FIX_COL;
  567. X    } else {
  568. X    minc = right.vp->col; mincf = right.vf & FIX_COL;
  569. X    maxc = left.vp->col; maxcf = left.vf & FIX_COL;
  570. X    } 
  571. X
  572. X    left.vp = lookat(minr, minc);
  573. X    left.vf = minrf | mincf;
  574. X    right.vp = lookat(maxr, maxc);
  575. X    right.vf = maxrf | maxcf;
  576. X
  577. X    if (find_range(name, strlen(name), (struct ent *)0, (struct ent *)0)) {
  578. X    error("Error: range name already defined");
  579. X    xfree(name);
  580. X    return;
  581. X    }
  582. X
  583. X    if (strlen(name) <= 2) {
  584. X    error("Invalid range name - too short");
  585. X    xfree(name);
  586. X    return;
  587. X    }
  588. X
  589. X    for(p=name, len=0; *p; p++, len++)
  590. X    if (!((isalpha(*p) && (len<=2)) ||
  591. X        ((isdigit(*p) || isalpha(*p) || (*p == '_')) && (len>2)))) {
  592. X        error("Invalid range name - illegal combination");
  593. X        xfree(name);
  594. X        return;
  595. X    }
  596. X    if(autolabel && minc>0 && !is_range) {
  597. X    rcp = lookat(minr,minc-1);
  598. X    if (rcp->label==0 && rcp->expr==0 && rcp->v==0)
  599. X        label(rcp, name, 0);
  600. X    }
  601. X
  602. X    r = (struct range *)xmalloc((unsigned)sizeof(struct range));
  603. X    r->r_name = name;
  604. X    r->r_left = left;
  605. X    r->r_right = right;
  606. X    r->r_next = rng_base;
  607. X    r->r_prev = (struct range *)0;
  608. X    r->r_is_range = is_range;
  609. X    if (rng_base)
  610. X        rng_base->r_prev = r;
  611. X    rng_base = r;
  612. X}
  613. X
  614. Xvoid
  615. Xdel_range(left, right)
  616. Xstruct ent *left, *right;
  617. X{
  618. X    register struct range *r;
  619. X    int minr,minc,maxr,maxc;
  620. X
  621. X    minr = left->row < right->row ? left->row : right->row;
  622. X    minc = left->col < right->col ? left->col : right->col;
  623. X    maxr = left->row > right->row ? left->row : right->row;
  624. X    maxc = left->col > right->col ? left->col : right->col;
  625. X
  626. X    left = lookat(minr, minc);
  627. X    right = lookat(maxr, maxc);
  628. X
  629. X    if (!(r = find_range((char *)0, 0, left, right))) 
  630. X    return;
  631. X
  632. X    if (r->r_next)
  633. X        r->r_next->r_prev = r->r_prev;
  634. X    if (r->r_prev)
  635. X        r->r_prev->r_next = r->r_next;
  636. X    else
  637. X    rng_base = r->r_next;
  638. X    xfree((char *)(r->r_name));
  639. X    xfree((char *)r);
  640. X}
  641. X
  642. Xvoid
  643. Xclean_range()
  644. X{
  645. X    register struct range *r;
  646. X    register struct range *nextr;
  647. X
  648. X    r = rng_base;
  649. X    rng_base = (struct range *)0;
  650. X
  651. X    while (r) {
  652. X    nextr = r->r_next;
  653. X    xfree((char *)(r->r_name));
  654. X    xfree((char *)r);
  655. X    r = nextr;
  656. X    }
  657. X}
  658. X
  659. X/* Match on name or lmatch, rmatch */
  660. X
  661. Xstruct range *
  662. Xfind_range(name, len, lmatch, rmatch)
  663. Xchar *name;
  664. Xint len;
  665. Xstruct ent *lmatch;
  666. Xstruct ent *rmatch;
  667. X{
  668. X    struct range *r;
  669. X    register char *rp, *np;
  670. X    register int c;
  671. X
  672. X    if (name) {
  673. X    for (r = rng_base; r; r = r->r_next) {
  674. X        for (np = name, rp = r->r_name, c = len;
  675. X         c && *rp && (*rp == *np);
  676. X         rp++, np++, c--) /* */;
  677. X        if (!c && !*rp)
  678. X        return(r);
  679. X    }
  680. X    return((struct range *)0);
  681. X    }
  682. X
  683. X    for (r = rng_base; r; r= r->r_next) {
  684. X    if ((lmatch == r->r_left.vp) && (rmatch == r->r_right.vp)) 
  685. X        return(r);
  686. X    }
  687. X    return((struct range *)0);
  688. X}
  689. X
  690. Xvoid
  691. Xsync_ranges()
  692. X{
  693. X    register struct range *r;
  694. X
  695. X    r = rng_base;
  696. X    while(r) {
  697. X    r->r_left.vp = lookat(r->r_left.vp->row, r->r_left.vp->col);
  698. X    r->r_right.vp = lookat(r->r_right.vp->row, r->r_right.vp->col);
  699. X    r = r->r_next;
  700. X    }
  701. X}
  702. X
  703. Xvoid
  704. Xwrite_range(f)
  705. XFILE *f;
  706. X{
  707. X    register struct range *r;
  708. X
  709. X    for (r = rng_base; r; r = r->r_next) {
  710. X    (void) fprintf(f, "define \"%s\" %s%s%s%d",
  711. X            r->r_name,
  712. X            r->r_left.vf & FIX_COL ? "$":"",
  713. X            coltoa(r->r_left.vp->col), 
  714. X            r->r_left.vf & FIX_ROW ? "$":"",
  715. X            r->r_left.vp->row);
  716. X    if (r->r_is_range)
  717. X        (void) fprintf(f, ":%s%s%s%d\n",
  718. X                r->r_right.vf & FIX_COL ? "$":"",
  719. X                coltoa(r->r_right.vp->col), 
  720. X                r->r_right.vf & FIX_ROW ? "$":"",
  721. X                r->r_right.vp->row);
  722. X    else
  723. X        (void) fprintf(f, "\n");
  724. X    }
  725. X}
  726. X
  727. Xvoid
  728. Xlist_range(f)
  729. XFILE *f;
  730. X{
  731. X    register struct range *r;
  732. X
  733. X    (void) fprintf(f, "%-30s %s\n\n","Name","Definition");
  734. X
  735. X    for (r = rng_base; r; r = r->r_next) {
  736. X    (void) fprintf(f, "%-30s %s%s%s%d",
  737. X                r->r_name,
  738. X                r->r_left.vf & FIX_COL ? "$":"",
  739. X                coltoa(r->r_left.vp->col), 
  740. X                r->r_left.vf & FIX_ROW ? "$":"",
  741. X                r->r_left.vp->row);
  742. X    if (r->r_is_range)
  743. X        (void) fprintf(f, ":%s%s%s%d\n",
  744. X                r->r_right.vf & FIX_COL ? "$":"",
  745. X                coltoa(r->r_right.vp->col), 
  746. X                r->r_right.vf & FIX_ROW ? "$":"",
  747. X                r->r_right.vp->row);
  748. X    else
  749. X        (void) fprintf(f, "\n");
  750. X    }
  751. X}
  752. X
  753. Xchar *
  754. Xv_name(row, col)
  755. Xint row, col;
  756. X{
  757. X    struct ent *v;
  758. X    struct range *r;
  759. X    static char buf[20];
  760. X
  761. X    v = lookat(row, col);
  762. X    if (r = find_range((char *)0, 0, v, v)) {
  763. X    return(r->r_name);
  764. X    } else {
  765. X        (void) sprintf(buf, "%s%d", coltoa(col), row);
  766. X    return(buf);
  767. X    }
  768. X}
  769. X
  770. Xchar *
  771. Xr_name(r1, c1, r2, c2)
  772. Xint r1, c1, r2, c2;
  773. X{
  774. X    struct ent *v1, *v2;
  775. X    struct range *r;
  776. X    static char buf[100];
  777. X
  778. X    v1 = lookat(r1, c1);
  779. X    v2 = lookat(r2, c2);
  780. X    if (r = find_range((char *)0, 0, v1, v2)) {
  781. X    return(r->r_name);
  782. X    } else {
  783. X        (void) sprintf(buf, "%s", v_name(r1, c1));
  784. X    (void) sprintf(buf+strlen(buf), ":%s", v_name(r2, c2));
  785. X    return(buf);
  786. X    }
  787. X}
  788. X
  789. Xint
  790. Xare_ranges()
  791. X{
  792. X    return (rng_base != 0);
  793. X}
  794. END_OF_FILE
  795.   if test 5832 -ne `wc -c <'range.c'`; then
  796.     echo shar: \"'range.c'\" unpacked with wrong size!
  797.   fi
  798.   # end of 'range.c'
  799. fi
  800. if test -f 'sc.c' -a "${1}" != "-c" ; then 
  801.   echo shar: Will not clobber existing file \"'sc.c'\"
  802. else
  803.   echo shar: Extracting \"'sc.c'\" \(27052 characters\)
  804.   sed "s/^X//" >'sc.c' <<'END_OF_FILE'
  805. X /*    SC    A Spreadsheet Calculator
  806. X *        Main driver
  807. X *
  808. X *        original by James Gosling, September 1982
  809. X *        modifications by Mark Weiser and Bruce Israel,
  810. X *            University of Maryland
  811. X *
  812. X *              More mods Robert Bond, 12/86
  813. X *        More mods by Alan Silverstein, 3-4/88, see list of changes.
  814. X *        Currently supported by sequent!sawmill!buhrt (Jeff Buhrt)
  815. X *        $Revision: 6.16 $
  816. X *
  817. X */
  818. X
  819. X#include <sys/types.h>
  820. X#include <signal.h>
  821. X#include <curses.h>
  822. X#include <ctype.h>
  823. X
  824. X#ifdef BSD42
  825. X#include <strings.h>
  826. X#else
  827. X#ifndef SYSIII
  828. X#include <string.h>
  829. X#endif
  830. X#endif
  831. X
  832. X#include <stdio.h>
  833. X#include "sc.h"
  834. X
  835. Xextern    char    *getenv();
  836. Xextern    void    startdisp(), stopdisp();
  837. X
  838. X#ifdef SYSV3
  839. Xvoid exit();
  840. X#endif
  841. X
  842. X#ifndef SAVENAME
  843. X#define    SAVENAME "SC.SAVE" /* file name to use for emergency saves */
  844. X#endif /* SAVENAME */
  845. X
  846. X#ifndef DFLT_PAGER
  847. X#define    DFLT_PAGER "more"    /* more is probably more widespread than less */
  848. X#endif /* DFLT_PAGER */
  849. X
  850. X#define MAXCMD 160    /* for ! command below */
  851. X
  852. X/* Globals defined in sc.h */
  853. X
  854. Xstruct ent ***tbl;
  855. Xint strow = 0, stcol = 0;
  856. Xint currow = 0, curcol = 0;
  857. Xint savedrow, savedcol;
  858. Xint FullUpdate = 0;
  859. Xint ClearScreen = 0;    /* don't try to be smart */
  860. Xint maxrow, maxcol;
  861. Xint maxrows, maxcols;
  862. Xint *fwidth;
  863. Xint *precision;
  864. Xint *realfmt;
  865. Xchar *col_hidden;
  866. Xchar *row_hidden;
  867. Xchar line[FBUFLEN];
  868. Xint changed;
  869. Xstruct ent *to_fix;
  870. Xint modflg;
  871. Xint numeric;
  872. Xchar *mdir;
  873. Xint showsc, showsr;    /* Starting cell for highlighted range */
  874. X
  875. Xvoid    update();
  876. Xvoid    repaint();
  877. X
  878. Xchar curfile[PATHLEN];
  879. Xchar    revmsg[80];
  880. X
  881. Xint  linelim = -1;
  882. X
  883. Xint  showtop   = 1;    /* Causes current cell value display in top line  */
  884. Xint  showcell  = 1;    /* Causes current cell to be highlighted      */
  885. Xint  showrange = 0;    /* Causes ranges to be highlighted          */
  886. Xint  showneed  = 0;    /* Causes cells needing values to be highlighted  */
  887. Xint  showexpr  = 0;    /* Causes cell exprs to be displayed, highlighted */
  888. X
  889. Xint  autocalc = 1 ;    /* 1 to calculate after each update */
  890. Xint  autolabel = 1;     /* If room, causes label to be created after a define*/
  891. Xint  calc_order = BYROWS;
  892. Xint  tbl_style = 0;    /* headers for T command output */
  893. Xint  rndinfinity = 0;
  894. Xint  numeric_field = 0; /* Started the line editing with a number */
  895. X#ifdef    SIGWINCH
  896. Xint  hitwinch = 0;    /* got a SIGWINCH? */
  897. X#endif
  898. X
  899. Xextern    int lastmx, lastmy;    /* Screen address of the cursor */
  900. Xextern    int lastcol, cols;    /* Spreadsheet Column the cursor was in last */
  901. X
  902. X/* a linked list of free [struct ent]'s, uses .next as the pointer */
  903. Xstruct ent *freeents = NULL;
  904. X
  905. Xextern    int    seenerr;
  906. Xextern    char    *rev;
  907. X
  908. X#ifdef VMS
  909. Xint VMS_read_raw = 0;
  910. X#endif
  911. X
  912. X/* return a pointer to a cell's [struct ent *], creating if needed */
  913. Xstruct ent *
  914. Xlookat(row,col)
  915. Xint    row, col;
  916. X{
  917. X    register struct ent **pp;
  918. X
  919. X    checkbounds(&row, &col);
  920. X    pp = ATBL(tbl, row, col);
  921. X    if (*pp == (struct ent *)0) {
  922. X        if (freeents != NULL)
  923. X    {    *pp = freeents;
  924. X        freeents = freeents->next;
  925. X    }
  926. X    else
  927. X        *pp = (struct ent *) xmalloc((unsigned)sizeof(struct ent));
  928. X    if (row>maxrow) maxrow = row;
  929. X    if (col>maxcol) maxcol = col;
  930. X    (*pp)->label = (char *)0;
  931. X    (*pp)->row = row;
  932. X    (*pp)->col = col;
  933. X    (*pp)->flags = 0;
  934. X    (*pp)->expr = (struct enode *)0;
  935. X    (*pp)->v = (double) 0.0;
  936. X    (*pp)->format = (char *)0;
  937. X    (*pp)->cellerror = CELLOK;
  938. X    (*pp)->next = NULL;
  939. X    }
  940. X    return *pp;
  941. X}
  942. X
  943. X/*
  944. X * This structure is used to keep ent structs around before they
  945. X * are deleted to allow the sync_refs routine a chance to fix the
  946. X * variable references.
  947. X * We also use it as a last-deleted buffer for the 'p' command.
  948. X */
  949. Xvoid
  950. Xfree_ent(p)
  951. Xregister struct ent *p;
  952. X{
  953. X    p->next = to_fix;
  954. X    to_fix = p;
  955. X    p->flags |= is_deleted;
  956. X}
  957. X
  958. X/* free deleted cells */
  959. Xvoid
  960. Xflush_saved()
  961. X{
  962. X    register struct ent *p;
  963. X    register struct ent *q;
  964. X
  965. X    if (!(p = to_fix))
  966. X    return;
  967. X    while (p) {
  968. X    (void) clearent(p);
  969. X    q = p->next;
  970. X    p->next = freeents;    /* put this ent on the front of freeents */
  971. X    freeents = p;
  972. X    p = q;
  973. X    }
  974. X    to_fix = NULL;
  975. X}
  976. X
  977. Xchar    *progname;
  978. X
  979. Xint
  980. Xmain (argc, argv)
  981. Xint argc;
  982. Xchar  **argv;
  983. X{
  984. X    int     inloop = 1;
  985. X    register int   c;
  986. X    int     edistate = -1;
  987. X    int     arg = 1;
  988. X    int     narg;
  989. X    int     nedistate;
  990. X    int        running;
  991. X    char    *revi;
  992. X    int        anychanged = FALSE;
  993. X
  994. X    /*
  995. X     * Keep command line options around until the file is read so the
  996. X     * command line overrides file options
  997. X     */
  998. X
  999. X    int Mopt = 0;
  1000. X    int Nopt = 0;
  1001. X    int Copt = 0; 
  1002. X    int Ropt = 0;
  1003. X
  1004. X    int tempx, tempy;     /* Temp versions of curx, cury */
  1005. X
  1006. X    if ((revi = strrchr(argv[0], '/')) != NULL)
  1007. X    progname = revi+1;
  1008. X    else
  1009. X    progname = argv[0];
  1010. X
  1011. X    while (argc > 1 && argv[1][0] == '-') {
  1012. X    argv++;
  1013. X    argc--;
  1014. X        switch (argv[0][1]) {
  1015. X        case 'x':
  1016. X#ifdef VMS
  1017. X            (void) fprintf(stderr, "Crypt not available for VMS\n");
  1018. X            exit(1);
  1019. X#else 
  1020. X            Crypt = 1;
  1021. X#endif
  1022. X            break;
  1023. X        case 'm':
  1024. X            Mopt = 1;
  1025. X            break;
  1026. X        case 'n':
  1027. X            Nopt = 1;
  1028. X            break;
  1029. X        case 'c':
  1030. X            Copt = 1;
  1031. X            break;
  1032. X        case 'r':
  1033. X            Ropt = 1;
  1034. X            break;
  1035. X        default:
  1036. X            (void) fprintf(stderr,"%s: unrecognized option: \"%c\"\n",
  1037. X            progname,argv[0][1]);
  1038. X            exit(1);
  1039. X    }
  1040. X    }
  1041. X
  1042. X    *curfile ='\0';
  1043. X
  1044. X    startdisp();
  1045. X    signals();
  1046. X
  1047. X    /* setup the spreadsheet arrays, initscr() will get the screen size */
  1048. X    if (!growtbl(GROWNEW, 0, 0))
  1049. X    {    stopdisp();
  1050. X    exit(1);
  1051. X    }
  1052. X
  1053. X    /*
  1054. X     * Build revision message for later use:
  1055. X     */
  1056. X
  1057. X    (void) strcpy (revmsg, progname);
  1058. X    for (revi = rev; (*revi++) != ':'; );    /* copy after colon */
  1059. X    (void) strcat (revmsg, revi);
  1060. X    revmsg [strlen (revmsg) - 2] = 0;        /* erase last character */
  1061. X    (void) strcat (revmsg, ":  Type '?' for help.");
  1062. X
  1063. X    if (argc > 1) {
  1064. X    (void) strcpy(curfile,argv[1]);
  1065. X    readfile (argv[1], 0);
  1066. X    }
  1067. X
  1068. X    if (Mopt)
  1069. X    autocalc = 0;
  1070. X    if (Nopt)
  1071. X    numeric = 1;
  1072. X    if (Copt)
  1073. X    calc_order = BYCOLS;
  1074. X    if (Ropt)
  1075. X    calc_order = BYROWS;
  1076. X
  1077. X    modflg = 0;
  1078. X#ifdef VENIX
  1079. X    setbuf (stdin, NULL);
  1080. X#endif
  1081. X    FullUpdate++;
  1082. X
  1083. X    while (inloop) { running = 1;
  1084. X    while (running) {
  1085. X    nedistate = -1;
  1086. X    narg = 1;
  1087. X    if (edistate < 0 && linelim < 0 && autocalc && (changed || FullUpdate))
  1088. X    {    EvalAll ();
  1089. X         if (changed)        /* if EvalAll changed or was before */
  1090. X        anychanged = TRUE;
  1091. X         changed = 0;
  1092. X    }
  1093. X    else        /* any cells change? */
  1094. X    if (changed)
  1095. X         anychanged = TRUE;
  1096. X
  1097. X#ifdef    SIGWINCH
  1098. X    /* got a SIGWINCH? */
  1099. X    if (hitwinch)
  1100. X    {    stopdisp();
  1101. X        startdisp();
  1102. X        FullUpdate++;
  1103. X    }
  1104. X#endif
  1105. X    update(anychanged);
  1106. X    anychanged = FALSE;
  1107. X#ifndef SYSV3    /* HP/Ux 3.1 this may not be wanted */
  1108. X    (void) refresh(); /* 5.3 does a refresh in getch */ 
  1109. X#endif
  1110. X    c = nmgetch();
  1111. X    getyx(stdscr, tempy, tempx);
  1112. X    (void) move (1, 0);
  1113. X    (void) clrtoeol ();
  1114. X    (void) move(tempy, tempx);
  1115. X/*    (void) fflush (stdout);*/
  1116. X    seenerr = 0;
  1117. X    showneed = 0;    /* reset after each update */
  1118. X    showexpr = 0;
  1119. X
  1120. X    /*
  1121. X     * there seems to be some question about what to do w/ the iscntrl
  1122. X     * some BSD systems are reportedly broken as well
  1123. X     */
  1124. X    /* if ((c < ' ') || ( c == DEL ))   how about international here ? PB */
  1125. X#if    pyr
  1126. X       if ( iscntrl(c) || (c >= 011 && c <= 015) )    /* iscntrl broken in OSx4.1 */
  1127. X#else
  1128. X       if ( iscntrl(c) )
  1129. X#endif
  1130. X        switch (c) {
  1131. X#ifdef SIGTSTP
  1132. X        case ctl('z'):
  1133. X            (void) deraw();
  1134. X            (void) kill(0, SIGTSTP); /* Nail process group */
  1135. X
  1136. X            /* the pc stops here */
  1137. X
  1138. X            (void) goraw();
  1139. X            break;
  1140. X#endif
  1141. X        case ctl('r'):
  1142. X            showneed = 1;
  1143. X        case ctl('l'):
  1144. X            FullUpdate++;
  1145. X            ClearScreen++;
  1146. X            (void) clearok(stdscr,1);
  1147. X            break;
  1148. X        case ctl('x'):
  1149. X            FullUpdate++;
  1150. X            showexpr = 1;
  1151. X            (void) clearok(stdscr,1);
  1152. X            break;
  1153. X        default:
  1154. X            error ("No such command (^%c)", c + 0100);
  1155. X            break;
  1156. X        case ctl('b'):
  1157. X            if (numeric_field) {
  1158. X            write_line(ctl('m'));
  1159. X            numeric_field = 0;
  1160. X            }
  1161. X            backcol(arg);
  1162. X            break;
  1163. X        case ctl('c'):
  1164. X            running = 0;
  1165. X            break;
  1166. X
  1167. X        case ctl('e'):
  1168. X
  1169. X            switch (nmgetch()) {
  1170. X            case ctl('p'): case 'k':    doend (-1, 0);    break;
  1171. X            case ctl('n'): case 'j':    doend ( 1, 0);    break;
  1172. X            case ctl('b'): case 'h':
  1173. X            case ctl('h'):        doend ( 0,-1);    break;
  1174. X            case ctl('f'): case 'l':
  1175. X            case ctl('i'): case ' ':    doend ( 0, 1);    break;
  1176. X
  1177. X            case ESC:
  1178. X            case ctl('g'):
  1179. X            break;
  1180. X
  1181. X            default:
  1182. X            error("Invalid ^E command");
  1183. X            break;
  1184. X            }
  1185. X
  1186. X            break;
  1187. X
  1188. X        case ctl('f'):
  1189. X            if (numeric_field) {
  1190. X            write_line(ctl('m'));
  1191. X            numeric_field = 0;
  1192. X            }
  1193. X            forwcol(arg);
  1194. X            break;
  1195. X
  1196. X        case ctl('g'):
  1197. X            showrange = 0;
  1198. X            linelim = -1;
  1199. X            (void) move (1, 0);
  1200. X            (void) clrtoeol ();
  1201. X            break;
  1202. X
  1203. X        case ESC:    /* ctl('[') */
  1204. X            write_line(ESC);
  1205. X            break;
  1206. X
  1207. X        case ctl('d'):
  1208. X            write_line(ctl('d'));
  1209. X            break;
  1210. X
  1211. X        case DEL:
  1212. X        case ctl('h'):
  1213. X            if (linelim < 0) {    /* not editing line */
  1214. X            backcol(arg);    /* treat like ^B    */
  1215. X            break;
  1216. X            }
  1217. X            write_line(ctl('h'));
  1218. X            break;
  1219. X
  1220. X        case ctl('i'):         /* tab */
  1221. X            if (linelim < 0) {    /* not editing line */
  1222. X            forwcol(arg);
  1223. X            break;
  1224. X            }
  1225. X            if (!showrange) {
  1226. X            startshow();
  1227. X            } else {
  1228. X            showdr();
  1229. X            linelim = strlen(line);
  1230. X            line[linelim++] = ' ';
  1231. X            line[linelim] = '\0';
  1232. X            showrange = 0;
  1233. X            }
  1234. X            linelim = strlen (line);
  1235. X            break;
  1236. X
  1237. X        case ctl('m'):
  1238. X        case ctl('j'):
  1239. X            numeric_field = 0;
  1240. X            write_line(ctl('m'));
  1241. X            break;
  1242. X
  1243. X        case ctl('n'):
  1244. X            if (numeric_field) {
  1245. X            write_line(ctl('m'));
  1246. X            numeric_field = 0;
  1247. X            }
  1248. X            forwrow(arg);
  1249. X            break;
  1250. X
  1251. X        case ctl('p'):
  1252. X            if (numeric_field) {
  1253. X            write_line(ctl('m'));
  1254. X            numeric_field = 0;
  1255. X            }
  1256. X            backrow(arg);
  1257. X            break;
  1258. X
  1259. X        case ctl('q'):
  1260. X            break;    /* ignore flow control */
  1261. X
  1262. X        case ctl('s'):
  1263. X            break;    /* ignore flow control */
  1264. X
  1265. X        case ctl('t'):
  1266. X            error(
  1267. X"Toggle: a:auto  c:cell  e:ext funcs  n:numeric  t:top  x:encrypt  $:pre-scale");
  1268. X            (void) refresh();
  1269. X
  1270. X            switch (nmgetch()) {
  1271. X            case 'a': case 'A':
  1272. X            case 'm': case 'M':
  1273. X                autocalc ^= 1;
  1274. X                error("Automatic recalculation %sabled.",
  1275. X                autocalc ? "en":"dis");
  1276. X                break;
  1277. X            case 'n': case 'N':
  1278. X                numeric = (! numeric);
  1279. X                error ("Numeric input %sabled.",
  1280. X                    numeric ? "en" : "dis");
  1281. X                break;
  1282. X            case 't': case 'T':
  1283. X                showtop = (! showtop);
  1284. X                error ("Top line %sabled.", showtop ? "en" : "dis");
  1285. X                break;
  1286. X            case 'c': case 'C':
  1287. X                showcell = (! showcell);
  1288. X                repaint(lastmx, lastmy, fwidth[lastcol]);
  1289. X                error ("Cell highlighting %sabled.",
  1290. X                    showcell ? "en" : "dis");
  1291. X                break;
  1292. X            case 'x': case 'X':
  1293. X                Crypt = (! Crypt);
  1294. X                error ("Encryption %sabled.", Crypt? "en" : "dis");
  1295. X                break;
  1296. X            case 'l': case 'L':
  1297. X                autolabel = (! autolabel);
  1298. X                error ("Autolabel %sabled.",
  1299. X                   autolabel? "en" : "dis");
  1300. X                break;
  1301. X            case '$':
  1302. X                if (prescale == 1.0) {
  1303. X                error ("Prescale enabled.");
  1304. X                prescale = 0.01;
  1305. X                } else {
  1306. X                prescale = 1.0;
  1307. X                error ("Prescale disabled.");
  1308. X                }
  1309. X                break;
  1310. X            case 'e': case 'E':
  1311. X                extfunc = (! extfunc);
  1312. X                error ("External functions %sabled.",
  1313. X                    extfunc? "en" : "dis");
  1314. X                break;
  1315. X            case ESC:
  1316. X            case ctl('g'):
  1317. X                --modflg;    /* negate the modflg++ */
  1318. X                break;
  1319. X            default:
  1320. X                error ("Invalid toggle command");
  1321. X                --modflg;    /* negate the modflg++ */
  1322. X            }
  1323. X            FullUpdate++;
  1324. X            modflg++;
  1325. X            break;
  1326. X
  1327. X        case ctl('u'):
  1328. X            narg = arg * 4;
  1329. X            nedistate = 1;
  1330. X            break;
  1331. X
  1332. X        case ctl('v'):    /* insert variable name */
  1333. X            if (linelim > 0)
  1334. X                ins_string(v_name(currow, curcol));
  1335. X            break;
  1336. X
  1337. X        case ctl('w'):    /* insert variable expression */
  1338. X            if (linelim > 0)  {
  1339. X            static    char *temp = NULL, *temp1 = NULL;
  1340. X            static    unsigned    templen = 0;
  1341. X            int templim;
  1342. X
  1343. X            /* xrealloc will xmalloc if needed */
  1344. X            if (strlen(line)+1 > templen)
  1345. X            {    templen = strlen(line)+40;
  1346. X
  1347. X                temp = xrealloc(temp, templen);
  1348. X                temp1= xrealloc(temp1, templen);
  1349. X            }
  1350. X            strcpy(temp, line);
  1351. X            templim = linelim;
  1352. X            linelim = 0;        /* reset line to empty    */
  1353. X            editexp(currow,curcol);
  1354. X            strcpy(temp1, line);
  1355. X            strcpy(line, temp);
  1356. X            linelim = templim;
  1357. X            ins_string(temp1);
  1358. X            }
  1359. X            break;
  1360. X
  1361. X        case ctl('a'):    /* insert variable value */
  1362. X            if (linelim > 0) {
  1363. X            struct ent *p = *ATBL(tbl, currow, curcol);
  1364. X            char temp[100];
  1365. X
  1366. X            if (p && p -> flags & is_valid) {
  1367. X                (void) sprintf (temp, "%.*f",
  1368. X                    precision[curcol],p -> v);
  1369. X                ins_string(temp);
  1370. X            }
  1371. X            }
  1372. X            break;
  1373. X
  1374. X        } /* End of the control char switch stmt */
  1375. X    else if (isdigit(c) && ((numeric && edistate >= 0) ||
  1376. X            (!numeric && (linelim < 0 || edistate >= 0)))) {
  1377. X        /* we got a leading number */
  1378. X        if (edistate != 0) {
  1379. X        /* First char of the count */
  1380. X        if (c == '0')      /* just a '0' goes to left col */
  1381. X            curcol = 0;
  1382. X        else {
  1383. X            nedistate = 0;
  1384. X            narg = c - '0';
  1385. X        }
  1386. X        } else {
  1387. X        /* Succeeding count chars */
  1388. X        nedistate = 0;
  1389. X        narg = arg * 10 + (c - '0');
  1390. X        }
  1391. X    } else if (linelim >= 0) {
  1392. X        /* Editing line */
  1393. X        switch(c) {
  1394. X        case ')':
  1395. X        if (showrange) {
  1396. X            showdr();
  1397. X            showrange = 0;
  1398. X            linelim = strlen (line);
  1399. X        }
  1400. X        break;
  1401. X        default:
  1402. X        break;
  1403. X        }
  1404. X        write_line(c);
  1405. X
  1406. X    } else if (!numeric && ( c == '+' || c == '-' ) ) {
  1407. X        /* increment/decrement ops */
  1408. X        register struct ent *p = *ATBL(tbl, currow, curcol);
  1409. X        if (!p)
  1410. X        continue;
  1411. X        if (p->expr && !(p->flags & is_strexpr)) {
  1412. X        error("Can't increment/decrement a formula\n");
  1413. X        continue;
  1414. X        }
  1415. X        FullUpdate++;
  1416. X        modflg++;
  1417. X        if( c == '+' )
  1418. X            p -> v += (double) arg;
  1419. X        else
  1420. X        p -> v -= (double) arg;
  1421. X    } else
  1422. X        /* switch on a normal command character */
  1423. X        switch (c) {
  1424. X        case ':':
  1425. X            break;    /* Be nice to vi users */
  1426. X
  1427. X        case '@':
  1428. X            EvalAll ();
  1429. X            changed = 0;
  1430. X            anychanged = TRUE;
  1431. X            break;
  1432. X
  1433. X        case '0': case '1': case '2': case '3': case '4':
  1434. X        case '5': case '6': case '7': case '8': case '9':
  1435. X        case '-': case '.': case '+':
  1436. X            numeric_field = 1;
  1437. X            (void) sprintf(line,"let %s = %c",
  1438. X                v_name(currow, curcol), c);
  1439. X            linelim = strlen (line);
  1440. X            insert_mode();
  1441. X            break;
  1442. X
  1443. X        case '=':
  1444. X            (void) sprintf(line,"let %s = ",
  1445. X                    v_name(currow, curcol));
  1446. X            linelim = strlen (line);
  1447. X            insert_mode();
  1448. X            break;
  1449. X
  1450. X        case '!':
  1451. X            {
  1452. X            /*
  1453. X             *  "! command"  executes command
  1454. X             *  "!"    forks a shell
  1455. X             *  "!!" repeats last command
  1456. X             */
  1457. X#ifdef VMS
  1458. X            error("Not implemented on VMS");
  1459. X#else /* VMS */
  1460. X            char *shl;
  1461. X            int pid, temp;
  1462. X            char cmd[MAXCMD];
  1463. X            static char lastcmd[MAXCMD];
  1464. X
  1465. X            if (!(shl = getenv("SHELL")))
  1466. X            shl = "/bin/sh";
  1467. X
  1468. X            deraw();
  1469. X            (void) fputs("! ", stdout);
  1470. X            (void) fflush(stdout);
  1471. X            (void) fgets(cmd, MAXCMD, stdin);
  1472. X            cmd[strlen(cmd) - 1] = '\0';    /* clobber \n */
  1473. X            if(strcmp(cmd,"!") == 0)        /* repeat? */
  1474. X                (void) strcpy(cmd, lastcmd);
  1475. X            else
  1476. X                (void) strcpy(lastcmd, cmd);
  1477. X
  1478. X            if (modflg)
  1479. X            {
  1480. X            (void) puts ("[No write since last change]");
  1481. X            (void) fflush (stdout);
  1482. X            }
  1483. X
  1484. X            if (!(pid = fork()))
  1485. X            {
  1486. X            (void) signal (SIGINT, SIG_DFL);  /* reset */
  1487. X            if(strlen(cmd))
  1488. X                (void)execl(shl,shl,"-c",cmd,(char *)0);
  1489. X            else
  1490. X                (void) execl(shl, shl, (char *)0);
  1491. X            exit(-127);
  1492. X            }
  1493. X
  1494. X            while (pid != wait(&temp));
  1495. X
  1496. X            (void) printf("Press RETURN to continue ");
  1497. X            fflush(stdout);
  1498. X            (void)nmgetch();
  1499. X            goraw();
  1500. X#endif /* VMS */
  1501. X            break;
  1502. X            }
  1503. X
  1504. X        /*
  1505. X         * Range commands:
  1506. X         */
  1507. X
  1508. X        case '/':
  1509. X            error (
  1510. X"Range:  x:erase  v:value  c:copy  f:fill  d:define  s:show  u:undefine  F:fmt");
  1511. X            (void) refresh();
  1512. X
  1513. X            switch (nmgetch()) {
  1514. X            case 'c':
  1515. X            (void) sprintf(line,"copy [dest_range src_range] ");
  1516. X            linelim = strlen(line);
  1517. X            startshow();
  1518. X            insert_mode();
  1519. X            break;
  1520. X            case 'x':
  1521. X            (void) sprintf(line,"erase [range] ");
  1522. X            linelim = strlen(line);
  1523. X            startshow();
  1524. X            insert_mode();
  1525. X            break;
  1526. X            case 'v':
  1527. X            (void) sprintf(line, "value [range] ");
  1528. X            linelim = strlen(line);
  1529. X            startshow();
  1530. X            insert_mode();
  1531. X            break;
  1532. X            case 'f':
  1533. X            (void) sprintf(line,"fill [range start inc] ");
  1534. X            linelim = strlen(line);
  1535. X            startshow();
  1536. X            insert_mode();
  1537. X            break;
  1538. X            case 'd':
  1539. X            (void) sprintf(line,"define [string range] \"");
  1540. X            linelim = strlen(line);
  1541. X            startshow();
  1542. X            insert_mode();
  1543. X            modflg++;
  1544. X            break;
  1545. X            case 'u':
  1546. X            (void) sprintf(line,"undefine [range] ");
  1547. X            linelim = strlen(line);
  1548. X            insert_mode();
  1549. X            modflg++;
  1550. X            break;
  1551. X            case 's':
  1552. X            if(are_ranges())
  1553. X            {
  1554. X            FILE *f;
  1555. X            int pid;
  1556. X            char px[MAXCMD] ;
  1557. X            char *pager;
  1558. X
  1559. X            (void) strcpy(px, "| sort | ");
  1560. X            if(!(pager = getenv("PAGER")))
  1561. X                pager = DFLT_PAGER;
  1562. X            (void) strcat(px,pager);
  1563. X            f = openout(px, &pid);
  1564. X            if (!f) {
  1565. X                error("Can't open pipe to sort");
  1566. X                break;
  1567. X            }
  1568. X            list_range(f);
  1569. X            closeout(f, pid);
  1570. X            }
  1571. X            else error("No ranges defined");
  1572. X            break;
  1573. X            case 'F':
  1574. X            (void) sprintf(line, "fmt [range \"format\"] ");
  1575. X            linelim = strlen(line);
  1576. X            startshow();
  1577. X            insert_mode();
  1578. X            break;
  1579. X            case ESC:
  1580. X            case ctl('g'):
  1581. X            break;
  1582. X           default:
  1583. X            error("Invalid region command");
  1584. X            break;
  1585. X           }
  1586. X           break;
  1587. X
  1588. X        /*
  1589. X         * Row/column commands:
  1590. X         */
  1591. X
  1592. X        case 'i':
  1593. X        case 'a':
  1594. X        case 'd':
  1595. X        case 'p':
  1596. X        case 'v':
  1597. X        case 'z':
  1598. X        case 's':
  1599. X            {
  1600. X            register rcqual;
  1601. X
  1602. X            if (! (rcqual = get_rcqual (c))) {
  1603. X                error ("Invalid row/column command");
  1604. X                break;
  1605. X            }
  1606. X
  1607. X            error ("");    /* clear line */
  1608. X
  1609. X            if ( rcqual == ESC || rcqual == ctl('g'))
  1610. X                break;
  1611. X
  1612. X            switch (c) {
  1613. X
  1614. X            case 'i':
  1615. X                if (rcqual == 'r')    insertrow(arg);
  1616. X                else        opencol(curcol, arg);
  1617. X                break;
  1618. X
  1619. X            case 'a':
  1620. X                if (rcqual == 'r')    while (arg--) duprow();
  1621. X                else        while (arg--) dupcol();
  1622. X                break;
  1623. X
  1624. X            case 'd':
  1625. X                if (rcqual == 'r')    deleterow(arg);
  1626. X                else        closecol(curcol, arg);
  1627. X                break;
  1628. X
  1629. X            case 'p':
  1630. X                while (arg--)    pullcells(rcqual);
  1631. X                break;
  1632. X
  1633. X            /*
  1634. X             * turn an area starting at currow/curcol into
  1635. X             * constants vs expressions - not reversable
  1636. X             */
  1637. X            case 'v':
  1638. X                if (rcqual == 'r')
  1639. X                valueize_area(currow, 0,
  1640. X                          currow + arg - 1, maxcol);
  1641. X                else
  1642. X                valueize_area(0, curcol,
  1643. X                          maxrow, curcol + arg - 1);
  1644. X                modflg = 1;
  1645. X                break;
  1646. X
  1647. X            case 'z':
  1648. X                if (rcqual == 'r')    hiderow(arg);
  1649. X                else        hidecol(arg);
  1650. X                break;
  1651. X
  1652. X            case 's':
  1653. X                /* special case; no repeat count */
  1654. X
  1655. X                if (rcqual == 'r')    rowshow_op();
  1656. X                else        colshow_op();
  1657. X                break;
  1658. X            }
  1659. X            break;
  1660. X            }
  1661. X
  1662. X        case '$':
  1663. X            {
  1664. X            register struct ent *p;
  1665. X
  1666. X            curcol = maxcols - 1;
  1667. X            while (!VALID_CELL(p, currow, curcol) && curcol > 0)
  1668. X            curcol--;
  1669. X            break;
  1670. X            }
  1671. X        case '#':
  1672. X            {
  1673. X            register struct ent *p;
  1674. X
  1675. X            currow = maxrows - 1;
  1676. X            while (!VALID_CELL(p, currow, curcol) && currow > 0)
  1677. X            currow--;
  1678. X            break;
  1679. X            }
  1680. X        case 'w':
  1681. X            {
  1682. X            register struct ent *p;
  1683. X
  1684. X            while (--arg>=0) {
  1685. X            do {
  1686. X                if (curcol < maxcols - 1)
  1687. X                curcol++;
  1688. X                else {
  1689. X                if (currow < maxrows - 1) {
  1690. X                    while(++currow < maxrows - 1 &&
  1691. X                        row_hidden[currow]) /* */;
  1692. X                    curcol = 0;
  1693. X                } else {
  1694. X                    error("At end of table");
  1695. X                    break;
  1696. X                }
  1697. X                }
  1698. X            } while(col_hidden[curcol] ||
  1699. X                !VALID_CELL(p, currow, curcol));
  1700. X            }
  1701. X            break;
  1702. X            }
  1703. X        case 'b':
  1704. X            {
  1705. X            register struct ent *p;
  1706. X
  1707. X            while (--arg>=0) {
  1708. X            do {
  1709. X                if (curcol) 
  1710. X                curcol--;
  1711. X                else {
  1712. X                if (currow) {
  1713. X                    while(--currow &&
  1714. X                    row_hidden[currow]) /* */;
  1715. X                    curcol = maxcols - 1;
  1716. X                } else {
  1717. X                    error ("At start of table");
  1718. X                    break;
  1719. X                }
  1720. X                }
  1721. X            } while(col_hidden[curcol] ||
  1722. X                !VALID_CELL(p, currow, curcol));
  1723. X            }
  1724. X            break;
  1725. X            }
  1726. X        case '^':
  1727. X            currow = 0;
  1728. X            break;
  1729. X        case '?':
  1730. X            help();
  1731. X            break;
  1732. X        case '"':
  1733. X            (void) sprintf (line, "label %s = \"",
  1734. X                    v_name(currow, curcol));
  1735. X            linelim = strlen (line);
  1736. X            insert_mode();
  1737. X            break;
  1738. X        case '<':
  1739. X            (void) sprintf (line, "leftstring %s = \"",
  1740. X                v_name(currow, curcol));
  1741. X            linelim = strlen (line);
  1742. X            insert_mode();
  1743. X            break;
  1744. X        case '>':
  1745. X            (void) sprintf (line, "rightstring %s = \"",
  1746. X               v_name(currow, curcol));
  1747. X            linelim = strlen (line);
  1748. X            insert_mode();
  1749. X            break;
  1750. X        case 'e':
  1751. X            editv (currow, curcol);
  1752. X            edit_mode();
  1753. X            break;
  1754. X        case 'E':
  1755. X            edits (currow, curcol);
  1756. X            edit_mode();
  1757. X            break;
  1758. X        case 'f':
  1759. X            if (arg == 1)
  1760. X            (void) sprintf (line, "format [for column] %s ",
  1761. X                coltoa(curcol));
  1762. X            else {
  1763. X            (void) sprintf(line, "format [for columns] %s:",
  1764. X                coltoa(curcol));
  1765. X            (void) sprintf(line+strlen(line), "%s ",
  1766. X                coltoa(curcol+arg-1));
  1767. X            }
  1768. X            error("Current format is %d %d %d",
  1769. X            fwidth[curcol],precision[curcol],realfmt[curcol]);
  1770. X            linelim = strlen (line);
  1771. X            insert_mode();
  1772. X            break;
  1773. X        case 'F': {
  1774. X            register struct ent *p = *ATBL(tbl, currow, curcol);
  1775. X            if (p && p->format)
  1776. X            {    (void) sprintf(line, "fmt [format] %s \"%s",
  1777. X                   v_name(currow, curcol), p->format);
  1778. X            edit_mode();
  1779. X            }
  1780. X            else
  1781. X            {    (void) sprintf(line, "fmt [format] %s \"",
  1782. X                   v_name(currow, curcol));
  1783. X            insert_mode();
  1784. X            }
  1785. X            linelim = strlen(line);
  1786. X            break;
  1787. X        }
  1788. X        case 'g':
  1789. X            (void) sprintf (line, "goto [v] ");
  1790. X            linelim = strlen (line);
  1791. X            insert_mode();
  1792. X            break;
  1793. X        case 'P':
  1794. X            (void) sprintf (line, "put [\"dest\" range] \"");
  1795. X            if (*curfile)
  1796. X            error ("Default path is \"%s\"",curfile);
  1797. X            linelim = strlen (line);
  1798. X            insert_mode();
  1799. X            break;
  1800. X        case 'M':
  1801. X            (void) sprintf (line, "merge [\"source\"] \"");
  1802. X            linelim = strlen (line);
  1803. X            insert_mode();
  1804. X            break;
  1805. X        case 'R':
  1806. X            if (mdir)
  1807. X            (void) sprintf (line,"merge [\"macro_file\"] \"%s/", mdir);
  1808. X            else
  1809. X            (void) sprintf (line,"merge [\"macro_file\"] \"");
  1810. X            linelim = strlen (line);
  1811. X            insert_mode();
  1812. X            break;
  1813. X        case 'D':
  1814. X            (void) sprintf (line, "mdir [\"macro_directory\"] \"");
  1815. X            linelim = strlen (line);
  1816. X            insert_mode();
  1817. X            break;
  1818. X        case 'G':
  1819. X            (void) sprintf (line, "get [\"source\"] \"");
  1820. X            if (*curfile)
  1821. X            error ("Default file is \"%s\"",curfile);
  1822. X            linelim = strlen (line);
  1823. X            insert_mode();
  1824. X            break;
  1825. X        case 'W':
  1826. X            (void) sprintf (line, "write [\"dest\" range] \"");
  1827. X            linelim = strlen (line);
  1828. X            insert_mode();
  1829. X            break;
  1830. X        case 'S':    /* set options */
  1831. X            (void) sprintf (line, "set ");
  1832. X            error("Options:byrows,bycols,iterations=n,tblstyle=(0|tbl|latex|slatex|tex),rndinfinity");
  1833. X            linelim = strlen (line);
  1834. X            insert_mode();
  1835. X            break;
  1836. X        case 'T':    /* tbl output */
  1837. X            (void) sprintf (line, "tbl [\"dest\" range] \"");
  1838. X            linelim = strlen (line);
  1839. X            insert_mode();
  1840. X            break;
  1841. X        case 'x':
  1842. X            {
  1843. X            register struct ent **pp;
  1844. X            register int c1;
  1845. X
  1846. X            flush_saved();
  1847. X            if(calc_order == BYROWS) {
  1848. X              for (c1 = curcol; arg-- && c1 < maxcols; c1++) {
  1849. X            pp = ATBL(tbl, currow, c1);
  1850. X            if (*pp) {
  1851. X                free_ent(*pp);
  1852. X                *pp = (struct ent *)0;
  1853. X            }
  1854. X              }
  1855. X            }
  1856. X            else {
  1857. X              for (c1 = currow; arg-- && c1 < maxrows; c1++) {
  1858. X            pp = ATBL(tbl, c1, curcol);
  1859. X            if (*pp) {
  1860. X                free_ent(*pp);
  1861. X                *pp = (struct ent *)0;
  1862. X            }
  1863. X              }
  1864. X            }
  1865. X            sync_refs();
  1866. X            modflg++;
  1867. X            FullUpdate++;
  1868. X            }
  1869. X            break;
  1870. X        case 'Q':
  1871. X        case 'q':
  1872. X            running = 0;
  1873. X            break;
  1874. X        case 'h':
  1875. X            backcol(arg);
  1876. X            break;
  1877. X        case 'j':
  1878. X            forwrow(arg);
  1879. X            break;
  1880. X        case 'k':
  1881. X            backrow(arg);
  1882. X            break;
  1883. X        case 'H':
  1884. X            backcol((curcol-stcol+1)+1);
  1885. X            break;
  1886. X#ifdef KEY_NPAGE
  1887. X        case KEY_NPAGE:            /* page precedente */
  1888. X#endif
  1889. X        case 'J':
  1890. X            forwrow(LINES-RESROW-(currow-strow)+1);
  1891. X            break;
  1892. X#ifdef    KEY_PPAGE
  1893. X        case KEY_PPAGE:            /* page suivante */
  1894. X#endif
  1895. X        case 'K':
  1896. X            backrow((currow-strow+1)+3);
  1897. X            break;
  1898. X        case 'L':
  1899. X            forwcol(cols-(curcol-stcol)+1);
  1900. X            break;
  1901. X        case ' ':
  1902. X        case 'l':
  1903. X            forwcol(arg);
  1904. X            break;
  1905. X        case 'm':
  1906. X            savedrow = currow;
  1907. X            savedcol = curcol;
  1908. X            break;
  1909. X        case 'c': {
  1910. X            register struct ent *p = *ATBL(tbl, savedrow, savedcol);
  1911. X            register c1;
  1912. X            register struct ent *n;
  1913. X            if (!p)
  1914. X            break;
  1915. X            FullUpdate++;
  1916. X            modflg++;
  1917. X            for (c1 = curcol; arg-- && c1 < maxcols; c1++) {
  1918. X            n = lookat (currow, c1);
  1919. X            (void) clearent(n);
  1920. X            copyent( n, p, currow - savedrow, c1 - savedcol);
  1921. X            }
  1922. X            break;
  1923. X        }
  1924. X        default:
  1925. X            if ((toascii(c)) != c)
  1926. X            error ("Weird character, decimal %d\n",
  1927. X                (int) c);
  1928. X            else
  1929. X                error ("No such command (%c)", c);
  1930. X            break;
  1931. X        }
  1932. X    edistate = nedistate;
  1933. X    arg = narg;
  1934. X    }                /* while (running) */
  1935. X    inloop = modcheck(" before exiting");
  1936. X    }                /*  while (inloop) */
  1937. X    stopdisp();
  1938. X#ifdef VMS    /* Until VMS "fixes" exit we should say 1 here */
  1939. X    exit(1);
  1940. X#else
  1941. X    exit(0);
  1942. X#endif
  1943. X    /*NOTREACHED*/
  1944. X}
  1945. X
  1946. X/* show the current range (see ^I), we are moving around to define a range */
  1947. Xvoid
  1948. Xstartshow()
  1949. X{
  1950. X    showrange = 1;
  1951. X    showsr = currow;
  1952. X    showsc = curcol;
  1953. X}
  1954. X
  1955. X/* insert the range we defined by moving around the screen, see startshow() */
  1956. Xvoid
  1957. Xshowdr()
  1958. X{
  1959. X    int     minsr, minsc, maxsr, maxsc;
  1960. X
  1961. X    minsr = showsr < currow ? showsr : currow;
  1962. X    minsc = showsc < curcol ? showsc : curcol;
  1963. X    maxsr = showsr > currow ? showsr : currow;
  1964. X    maxsc = showsc > curcol ? showsc : curcol;
  1965. X    (void) sprintf (line+linelim,"%s", r_name(minsr, minsc, maxsr, maxsc));
  1966. X}
  1967. X
  1968. X/* set the calculation order */
  1969. Xvoid
  1970. Xsetorder(i)
  1971. Xint i;
  1972. X{
  1973. X    if((i == BYROWS)||(i == BYCOLS))
  1974. X        calc_order = i;
  1975. X}
  1976. X
  1977. Xvoid
  1978. Xsetauto(i)
  1979. Xint i;
  1980. X{
  1981. X    autocalc = i;
  1982. X}
  1983. X
  1984. Xvoid
  1985. Xsignals()
  1986. X{
  1987. X#ifdef SIGVOID
  1988. X    void quit();
  1989. X    void time_out();
  1990. X    void dump_me();
  1991. X#ifdef    SIGWINCH
  1992. X    void winchg();
  1993. X#endif
  1994. X#else
  1995. X    int quit();
  1996. X    int time_out();
  1997. X    int dump_me();
  1998. X#ifdef    SIGWINCH
  1999. X    int winchg();
  2000. X#endif
  2001. X#endif
  2002. X
  2003. X    (void) signal(SIGINT, SIG_IGN);
  2004. X    (void) signal(SIGQUIT, dump_me);
  2005. X    (void) signal(SIGPIPE, quit);
  2006. X    (void) signal(SIGTERM, quit);
  2007. X    (void) signal(SIGALRM, time_out);
  2008. X    (void) signal(SIGFPE, quit);
  2009. X    (void) signal(SIGBUS, quit);
  2010. X#ifdef    SIGWINCH
  2011. X    (void) signal(SIGWINCH, winchg);
  2012. X#endif
  2013. X}
  2014. X
  2015. X#ifdef    SIGWINCH
  2016. X#ifdef SIGVOID
  2017. Xvoid
  2018. X#else
  2019. Xint
  2020. X#endif
  2021. Xwinchg()
  2022. X{    hitwinch++;
  2023. X}
  2024. X#endif
  2025. X
  2026. X#ifdef SIGVOID
  2027. Xvoid
  2028. X#else
  2029. Xint
  2030. X#endif
  2031. Xquit()
  2032. X{
  2033. X    diesave();
  2034. X    stopdisp();
  2035. X    exit(1);
  2036. X}
  2037. X
  2038. X#ifdef SIGVOID
  2039. Xvoid
  2040. X#else
  2041. Xint
  2042. X#endif
  2043. Xdump_me()
  2044. X{
  2045. X    diesave();
  2046. X    deraw();
  2047. X    abort();
  2048. X}
  2049. X
  2050. X/* try to save the current spreadsheet if we can */
  2051. Xvoid
  2052. Xdiesave()
  2053. X{   char    path[PATHLEN];
  2054. X
  2055. X    if (modcheck(" before Spreadsheet dies") == 1)
  2056. X    {    (void) sprintf(path, "~/%s", SAVENAME);
  2057. X    if (writefile(path, 0, 0, maxrow, maxcol) < 0)
  2058. X    {
  2059. X        (void) sprintf(path, "/tmp/%s", SAVENAME);
  2060. X        if (writefile(path, 0, 0, maxrow, maxcol) < 0)
  2061. X        error("Couldn't save current spreadsheet, Sorry");
  2062. X    }
  2063. X    }
  2064. X}
  2065. X
  2066. X/* check if tbl was modified and ask to save */
  2067. Xint
  2068. Xmodcheck(endstr)
  2069. Xchar *endstr;
  2070. X{
  2071. X    if (modflg && curfile[0]) {
  2072. X    int    yn_ans;
  2073. X    char    lin[100];
  2074. X
  2075. X    (void) sprintf (lin,"File \"%s\" is modified, save%s? ",curfile,endstr);
  2076. X    if ((yn_ans = yn_ask(lin)) < 0)
  2077. X        return(1);
  2078. X    else
  2079. X    if (yn_ans == 1)
  2080. X    {    if (writefile(curfile, 0, 0, maxrow, maxcol) < 0)
  2081. X         return (1);
  2082. X    }
  2083. X    } else if (modflg) {
  2084. X    int    yn_ans;
  2085. X
  2086. X    if ((yn_ans = yn_ask("Do you want a chance to save the data? ")) < 0)
  2087. X        return(1);
  2088. X    else
  2089. X        return(yn_ans);
  2090. X    }
  2091. X    return(0);
  2092. X}
  2093. END_OF_FILE
  2094.   if test 27052 -ne `wc -c <'sc.c'`; then
  2095.     echo shar: \"'sc.c'\" unpacked with wrong size!
  2096.   fi
  2097.   # end of 'sc.c'
  2098. fi
  2099. echo shar: End of archive 4 \(of 7\).
  2100. cp /dev/null ark4isdone
  2101. MISSING=""
  2102. for I in 1 2 3 4 5 6 7 ; do
  2103.     if test ! -f ark${I}isdone ; then
  2104.     MISSING="${MISSING} ${I}"
  2105.     fi
  2106. done
  2107. if test "${MISSING}" = "" ; then
  2108.     echo You have unpacked all 7 archives.
  2109.     rm -f ark[1-9]isdone
  2110. else
  2111.     echo You still must unpack the following archives:
  2112.     echo "        " ${MISSING}
  2113. fi
  2114. exit 0
  2115. exit 0 # Just in case...
  2116. -- 
  2117. Kent Landfield                   INTERNET: kent@sparky.IMD.Sterling.COM
  2118. Sterling Software, IMD           UUCP:     uunet!sparky!kent
  2119. Phone:    (402) 291-8300         FAX:      (402) 291-4362
  2120. Please send comp.sources.misc-related mail to kent@uunet.uu.net.
  2121.