File: interface_draw.ml

package info (click to toggle)
orpie 1.4.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,008 kB
  • ctags: 2,193
  • sloc: ml: 14,745; ansic: 2,979; makefile: 312; sh: 13; python: 11
file content (776 lines) | stat: -rw-r--r-- 31,902 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
(*  Orpie -- a stack-based RPN calculator for the console
 *  Copyright (C) 2003-2004  Paul Pelzl
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Please send bug reports, patches, etc. to Paul Pelzl at 
 *  <pelzlpj@eecs.umich.edu>.
 *)


open Curses;;
open Printf;;
open Rpc_calc;;
open Rpc_stack;;
open Complex;;
open Big_int;;
open Operations;;
open Interface;;


type abbrev_help_display_t = {functions : string list; 
                              modes : string list;
                              misc : string list}

(* display the stack, where the bottom line of the display
 * corresponds to stack level 'stack_bottom_row' *)
let draw_stack (iface : interface_state_t) =
   let print_numbered_line l_num =
      let num_len = 
         String.length (string_of_int (pred (iface.stack_bottom_row +
         iface.scr.sw_lines)))
      in
      if num_len <= 2 then
         (sprintf "%2d:   %s" l_num)
      else if num_len = 3 then
         (sprintf "%3d:  %s" l_num)
      else if num_len = 4 then
         (sprintf "%4d: %s" l_num)
      else
         (* if the line number is really huge, truncate to least
          * significant digits *)
         let l_num_str = string_of_int l_num in
         let str_len = String.length l_num_str in
         let trunc_num = Str.string_after l_num_str (str_len - 4) in
         (sprintf "%s: %s" trunc_num)
   in
   (* if there is no help window, then print the calculator mode
    * information above the stack *)
   let num_stack_lines =
      begin match iface.scr.help_win with
      |Some win ->
         iface.scr.sw_lines
      |None ->
         let modes = iface.calc#get_modes () in
         assert (wmove iface.scr.stack_win 0 0);
         wclrtoeol iface.scr.stack_win;
         wattron iface.scr.stack_win WA.bold;
         assert (mvwaddstr iface.scr.stack_win 0 2 "angle:      base:      complex:");
         wattroff iface.scr.stack_win WA.bold;
         let angle_str = match modes.angle with
         |Rad -> "RAD"
         |Deg -> "DEG" in
         assert (mvwaddstr iface.scr.stack_win 0 9 angle_str);
         let base_str = match modes.base with
         |Bin -> "BIN"
         |Oct -> "OCT"
         |Hex -> "HEX"
         |Dec -> "DEC" in
         assert (mvwaddstr iface.scr.stack_win 0 20 base_str);
         let complex_str = match modes.complex with
         |Rect -> "REC"
         |Polar -> "POL" in
         assert (mvwaddstr iface.scr.stack_win 0 34 complex_str);
         assert (mvwaddstr iface.scr.stack_win 1 0 (String.make (iface.scr.sw_cols) '-'));
         iface.scr.sw_lines - 2
      end
   in
   (* display the stack data itself *)
   for line = iface.stack_bottom_row to 
   pred (iface.stack_bottom_row + num_stack_lines) do
      let s = iface.calc#get_display_line line in
      let len = String.length s in
      assert (wmove iface.scr.stack_win 
      (iface.scr.sw_lines + iface.stack_bottom_row - 1 - line) 0);
      wclrtoeol iface.scr.stack_win;
      begin
         if line = iface.stack_selection && 
         iface.interface_mode = BrowsingMode then
            wattron iface.scr.stack_win WA.reverse
         else
            ()
      end;
      begin
         if len > iface.scr.sw_cols - 7 then
            (* need to truncate the string *)
            let line_string =
               if line = iface.stack_selection && 
               iface.interface_mode = BrowsingMode then
                  let sub_s = 
                     if iface.horiz_scroll < len - iface.scr.sw_cols + 7 then
                        String.sub s iface.horiz_scroll (iface.scr.sw_cols - 7)
                     else
                        String.sub s (len - iface.scr.sw_cols + 7) 
                        (iface.scr.sw_cols - 7)
                  in
                  print_numbered_line line sub_s
               else
                  let sub_s = String.sub s 0 (iface.scr.sw_cols - 10) in
                  print_numbered_line line (sub_s ^ "...")
            in
            assert (waddstr iface.scr.stack_win line_string)
         else
            let spacer = String.make (iface.scr.sw_cols - 7 - len) ' ' in
            let line_string = print_numbered_line line (spacer ^ s) in 
            assert (waddstr iface.scr.stack_win line_string)
      end;
      begin
         if line = iface.stack_selection && 
         iface.interface_mode = BrowsingMode then
            wattroff iface.scr.stack_win WA.reverse
         else
            ()
      end
   done;
   assert (wnoutrefresh iface.scr.stack_win);
   assert (wmove iface.scr.entry_win (iface.scr.ew_lines - 1) (iface.scr.ew_cols - 1))


let draw_update_stack iface =
   draw_stack iface;
   assert (doupdate ())




(* display the data that the user is in the process of entering *)
let draw_entry (iface : interface_state_t) =
   assert (mvwaddstr iface.scr.entry_win 0 0 (String.make iface.scr.ew_cols '-'));
   assert (wmove iface.scr.entry_win 1 0);
   wclrtoeol iface.scr.entry_win;
   (* Safely draw a string into the entry window, with "..." when
    * truncation occurs.  Highlight the first 'highlight_len'
    * characters. *)
   let draw_entry_string str highlight_len =
      let len_str = String.length str in
      begin
         if len_str > iface.scr.ew_cols - 1 then
            let trunc_str = String.sub str (len_str - iface.scr.ew_cols + 4) 
            (iface.scr.ew_cols - 4) in
            assert (mvwaddstr iface.scr.entry_win 1 0 ("..." ^ trunc_str))
         else
            if highlight_len <= len_str then
               begin
                  (* highlight the first 'highlight_len' characters *)
                  wattron iface.scr.entry_win WA.bold;
                  assert (mvwaddstr iface.scr.entry_win 1 (iface.scr.ew_cols - len_str - 1)
                     (Str.string_before str (highlight_len)));
                  wattroff iface.scr.entry_win WA.bold;
                  assert (mvwaddstr iface.scr.entry_win 1 (iface.scr.ew_cols - len_str -
                     1 + highlight_len) (Str.string_after str (highlight_len)))
               end
            else
               assert (mvwaddstr iface.scr.entry_win 1 (iface.scr.ew_cols - len_str - 1) str)
      end;
      assert (wnoutrefresh iface.scr.entry_win)
   in
   (* draw a string for a single floating-point number *)
   let get_float_str is_current mantissa exponent =
      let sign_space =
         if String.length exponent > 0 then
            match exponent.[0] with
            |'-' -> ""
            |'+' -> ""
            |_ -> " "
         else
            " "
      in
      if (is_current && iface.is_entering_exponent) || String.length exponent > 0 then
         mantissa ^ " x10^" ^ sign_space ^ exponent
      else if is_current || String.length mantissa > 0 then
         mantissa
      else 
         "0"
   in
   (* get a string representation of the data that is in the entry buffer *)
   let data_string =
      match iface.entry_type with
      |IntEntry ->
         if iface.is_entering_base then
            "# " ^ iface.int_entry_buffer ^ "`" ^ iface.int_base_string
         else
            "# " ^ iface.int_entry_buffer
      |FloatEntry ->
         let mantissa_str = iface.gen_buffer.(0).re_mantissa
         and exponent_str = iface.gen_buffer.(0).re_exponent in
         let ff = get_float_str true mantissa_str exponent_str in
         if iface.is_entering_units then
            ff ^ "_" ^ iface.units_entry_buffer
         else
            ff
      |ComplexEntry ->
         let buffer = iface.gen_buffer.(0) in
         let cc = 
            if iface.is_entering_imag then
               let temp = get_float_str false buffer.re_mantissa buffer.re_exponent in
               let re_str = 
                  if String.length temp > 0 then temp
                  else "0"
               in
               let im_str = get_float_str true buffer.im_mantissa buffer.im_exponent in
               match buffer.is_polar with
               |false ->
                  "(" ^ re_str ^ ", " ^ im_str ^ ")"
               |true ->
                  "(" ^ re_str ^ " <" ^ im_str ^ ")"
            else
               let re_str = get_float_str true buffer.re_mantissa buffer.re_exponent in
               "(" ^ re_str ^ ")"
         in
         if iface.is_entering_units then
            cc ^ "_" ^ iface.units_entry_buffer
         else
            cc
      |FloatMatrixEntry ->
         let ss = ref "[[" in
         for el = 0 to pred iface.curr_buf do
            let temp_re = get_float_str false iface.gen_buffer.(el).re_mantissa
            iface.gen_buffer.(el).re_exponent in
            if iface.has_multiple_rows && ((succ el) mod iface.matrix_cols) = 0 then
               ss := !ss ^ temp_re ^ "]["
            else
               ss := !ss ^ temp_re ^ ", "
         done;
         let temp_re = get_float_str true iface.gen_buffer.(iface.curr_buf).re_mantissa
         iface.gen_buffer.(iface.curr_buf).re_exponent in
         ss := !ss ^ temp_re ^ "]]";
         if iface.is_entering_units then
            !ss ^ "_" ^ iface.units_entry_buffer
         else
            !ss
      |ComplexMatrixEntry ->
         let ss = ref "[[" in
         for el = 0 to pred iface.curr_buf do
            let temp_re = get_float_str false iface.gen_buffer.(el).re_mantissa
            iface.gen_buffer.(el).re_exponent and
            temp_im = get_float_str false iface.gen_buffer.(el).im_mantissa
            iface.gen_buffer.(el).im_exponent in
            (if iface.has_multiple_rows && ((succ el) mod iface.matrix_cols) = 0 then
               match iface.gen_buffer.(el).is_polar with
               |false ->
                  ss := !ss ^ "(" ^ temp_re ^ ", " ^ temp_im ^ ")]["
               |true ->
                  ss := !ss ^ "(" ^ temp_re ^ " <" ^ temp_im ^ ")]["
            else
               match iface.gen_buffer.(el).is_polar with
               |false ->
                  ss := !ss ^ "(" ^ temp_re ^ ", " ^ temp_im ^ "), "
               |true ->
                  ss := !ss ^ "(" ^ temp_re ^ " <" ^ temp_im ^ "), ")
         done;
         (if iface.is_entering_imag then
            let temp_re = get_float_str false iface.gen_buffer.(iface.curr_buf).re_mantissa
            iface.gen_buffer.(iface.curr_buf).re_exponent and
            temp_im = get_float_str true iface.gen_buffer.(iface.curr_buf).im_mantissa
            iface.gen_buffer.(iface.curr_buf).im_exponent in
            match iface.gen_buffer.(iface.curr_buf).is_polar with
            |false ->
               ss := !ss ^ "(" ^ temp_re ^ ", " ^ temp_im ^ ")]]"
            |true ->
               ss := !ss ^ "(" ^ temp_re ^ " <" ^ temp_im ^ ")]]"
         else
            let temp_re = get_float_str true iface.gen_buffer.(iface.curr_buf).re_mantissa
            iface.gen_buffer.(iface.curr_buf).re_exponent in
            ss := !ss ^ "(" ^ temp_re ^ ")]]");
         if iface.is_entering_units then
            !ss ^ "_" ^ iface.units_entry_buffer
         else
            !ss
      |VarEntry ->
         "@ " ^ iface.variable_entry_buffer
   in
   begin match iface.interface_mode with
   |StandardEntryMode ->
      draw_entry_string data_string 0
   |IntEditMode ->
      draw_entry_string data_string 0
   |AbbrevEntryMode ->
      let highlight_len = String.length iface.abbrev_entry_buffer in
      if highlight_len = 0 then
         draw_entry_string "<enter command abbreviation>" 0
      else
         let is_function =
            match (Rcfile.translate_abbrev iface.matched_abbrev_entry) with
            |Function ff -> true
            |_ -> false
         in
         if is_function then
            draw_entry_string (iface.matched_abbrev_entry ^ 
            "( )") highlight_len
         else
            draw_entry_string iface.matched_abbrev_entry highlight_len
   |BrowsingMode ->
      ()
   |VarEditMode ->
      if String.length iface.variable_entry_buffer = 0 then
         draw_entry_string "<enter variable name>" 0
      else
         draw_entry_string data_string 0
   |UnitEditMode ->
      draw_entry_string data_string 0
   end;
   assert (wmove iface.scr.entry_win (iface.scr.ew_lines - 1) (iface.scr.ew_cols - 1))


let draw_update_entry iface =
   draw_entry iface;
   assert (doupdate ())



(* create the lists of abbreviations to display in the abbrev command
 * help screen *)
let generate_abbrev_help () =
   let rec trunc_list lst n =
      if n = 0 then
         []
      else
         match lst with
         |[] ->
            []
         |head :: tail ->
            head :: (trunc_list tail (pred n))
   in
   let get_abbr op =
      try Rcfile.abbrev_of_operation op
      with Not_found -> ""
   in
   let functions_str =
      (get_abbr (Function Sin))       ^ "  " ^ 
      (get_abbr (Function Asin))      ^ "  " ^ 
      (get_abbr (Function Cos))       ^ "  " ^ 
      (get_abbr (Function Acos))      ^ "  " ^ 
      (get_abbr (Function Tan))       ^ "  " ^ 
      (get_abbr (Function Atan))      ^ "  " ^ 
      (get_abbr (Function Exp))       ^ "  " ^ 
      (get_abbr (Function Ln))        ^ "  " ^ 
      (get_abbr (Function Ten_x))     ^ "  " ^ 
      (get_abbr (Function Log10))     ^ "  " ^ 
      (get_abbr (Function Sq))        ^ "  " ^ 
      (get_abbr (Function Sqrt))      ^ "  " ^ 
      (get_abbr (Function Inv))       ^ "  " ^ 
      (get_abbr (Function Gamma))     ^ "  " ^ 
      (get_abbr (Function LnGamma))   ^ "  " ^ 
      (get_abbr (Function Erf))       ^ "  " ^ 
      (get_abbr (Function Erfc))      ^ "  " ^ 
      (get_abbr (Function Transpose)) ^ "  " ^ 
      (get_abbr (Function Re))        ^ "  " ^ 
      (get_abbr (Function Im))        ^ "  " ^
      (get_abbr (Function Mod))       ^ "  " ^
      (get_abbr (Function Floor))     ^ "  " ^
      (get_abbr (Function Ceiling))   ^ "  " ^
      (get_abbr (Function ToInt))     ^ "  " ^
      (get_abbr (Function ToFloat))   ^ "  " ^
      (get_abbr (Function Eval))      ^ "  " ^
      (get_abbr (Function Store))     ^ "  " ^
      (get_abbr (Function Purge))
   in
   let functions_str_wrap = trunc_list 
   (Utility.wordwrap_nspace functions_str 34 2) 5 in
   let modes_str = 
      (get_abbr (Command SetRadians)) ^ "  " ^ 
      (get_abbr (Command SetDegrees)) ^ "  " ^ 
      (get_abbr (Command SetBin))     ^ "  " ^ 
      (get_abbr (Command SetOct))     ^ "  " ^ 
      (get_abbr (Command SetDec))     ^ "  " ^ 
      (get_abbr (Command SetHex))     ^ "  " ^ 
      (get_abbr (Command SetRect))    ^ "  " ^ 
      (get_abbr (Command SetPolar))
   in
   let modes_str_wrap = trunc_list 
   (Utility.wordwrap_nspace modes_str 34 2) 2 in
   let misc_str = 
      (get_abbr (Command EnterPi)) ^ "  " ^ 
      (get_abbr (Command Undo))    ^ "  " ^ 
      (get_abbr (Command View))
   in
   let misc_str_wrap = trunc_list
   (Utility.wordwrap_nspace misc_str 34 2) 1 in
   {functions = functions_str_wrap;
   modes      = modes_str_wrap;
   misc       = misc_str_wrap}



(* display the help window *)
let draw_help (iface : interface_state_t) =
   let mvwaddstr_safe w vert horiz st =
      let st_trunc =
         if String.length st > 36 then
            Str.string_before st 36
         else
            st
      in
      assert (mvwaddstr w vert horiz st_trunc)
   in
   let modes = iface.calc#get_modes () in
   begin match iface.scr.help_win with
   |Some win ->
      wclear win;
      wattron win WA.bold;
      let s = sprintf "Orpie v%s" iface.version in
      mvwaddstr_safe win 0 0 s;
      wattroff win WA.bold;
      let h_pos = String.length s in
      mvwaddstr_safe win 0 (h_pos + 1) ("-- " ^ iface.tagline);
      assert (mvwaddstr win 1 0 "--------------------------------------");
      for i = 0 to pred iface.scr.hw_lines do
         assert (mvwaddch win i 38 (int_of_char '|'))
      done;
      wattron win WA.bold;
      assert (mvwaddstr win 2 0 "Calculator Modes:");
      assert (mvwaddstr win 3 2 "angle:      base:      complex:");
      wattroff win WA.bold;
      let angle_str = match modes.angle with
      |Rad -> "RAD"
      |Deg -> "DEG" in
      assert (mvwaddstr win 3 9 angle_str);
      let base_str = match modes.base with
      |Bin -> "BIN"
      |Oct -> "OCT"
      |Hex -> "HEX"
      |Dec -> "DEC" in
      assert (mvwaddstr win 3 20 base_str);
      let complex_str = match modes.complex with
      |Rect -> "REC"
      |Polar -> "POL" in
      assert (mvwaddstr win 3 34 complex_str);
      let try_find fn el =
         try fn el
         with Not_found -> "(N/A)"
      in
      (* FIXME: this could be done more cleanly... shouldn't have
       * to look at two completely different modes *)
      begin match iface.interface_mode with
      |BrowsingMode ->
         wattron win WA.bold;
         assert (mvwaddstr win 5 0 "Browsing Operations:");
         wattroff win WA.bold;
         mvwaddstr_safe win 6 2  ("prev        : " ^
         try_find Rcfile.key_of_browse (Browse PrevLine));
         mvwaddstr_safe win 7 2  ("next        : " ^
         try_find Rcfile.key_of_browse (Browse NextLine));
         mvwaddstr_safe win 8 2  ("scroll left : " ^
         try_find Rcfile.key_of_browse (Browse ScrollLeft));
         mvwaddstr_safe win 9 2  ("scroll right: " ^
         try_find Rcfile.key_of_browse (Browse ScrollRight));
         mvwaddstr_safe win 10 2 ("roll down   : " ^
         try_find Rcfile.key_of_browse (Browse RollDown));
         mvwaddstr_safe win 11 2 ("roll up     : " ^
         try_find Rcfile.key_of_browse (Browse RollUp));
         mvwaddstr_safe win 12 2 ("dup         : " ^
         try_find Rcfile.key_of_command (Command Dup));
         mvwaddstr_safe win 13 2 ("view        : " ^
         try_find Rcfile.key_of_browse (Browse ViewEntry));
         mvwaddstr_safe win 14 2 ("edit        : " ^
         try_find Rcfile.key_of_browse (Browse EditEntry));
         mvwaddstr_safe win 15 2 ("drop        : " ^
         try_find Rcfile.key_of_browse (Browse Drop1));
         mvwaddstr_safe win 16 2 ("dropn       : " ^
         try_find Rcfile.key_of_browse (Browse DropN));
         mvwaddstr_safe win 17 2 ("keep        : " ^
         try_find Rcfile.key_of_browse (Browse Keep));
         mvwaddstr_safe win 18 2 ("keepn       : " ^
         try_find Rcfile.key_of_browse (Browse KeepN));
         mvwaddstr_safe win 20 1 ("exit browsing mode: " ^
         try_find Rcfile.key_of_browse (Browse EndBrowse));
         assert (wnoutrefresh win)
      |_ ->
         begin match iface.help_mode with
         |StandardHelp ->
            if iface.help_page = 0 then begin
               wattron win WA.bold;
               assert (mvwaddstr win 5 0 "Common Operations:");
               wattroff win WA.bold;
               mvwaddstr_safe win 6 2  ("enter    : " ^
               try_find Rcfile.key_of_edit (Edit Enter));
               mvwaddstr_safe win 7 2  ("drop     : " ^
               try_find Rcfile.key_of_command (Command Drop));
               mvwaddstr_safe win 8 2  ("swap     : " ^
               try_find Rcfile.key_of_command (Command Swap));
               mvwaddstr_safe win 9 2  ("backspace: " ^
               try_find Rcfile.key_of_edit (Edit Backspace));
               mvwaddstr_safe win 10 2 ("add      : " ^
               try_find Rcfile.key_of_function (Function Add));
               mvwaddstr_safe win 11 2 ("subtract : " ^
               try_find Rcfile.key_of_function (Function Sub));
               mvwaddstr_safe win 12 2 ("multiply : " ^
               try_find Rcfile.key_of_function (Function Mult));
               mvwaddstr_safe win 13 2 ("divide   : " ^
               try_find Rcfile.key_of_function (Function Div));
               mvwaddstr_safe win 14 2 ("x^y      : " ^
               try_find Rcfile.key_of_function (Function Pow));
               mvwaddstr_safe win 15 2 ("negation : " ^
               try_find Rcfile.key_of_function (Function Neg));
               wattron win WA.bold;
               mvwaddstr_safe win 16 0 "Miscellaneous:";
               wattroff win WA.bold;
               mvwaddstr_safe win 17 2 ("scientific notation     : " ^
               try_find Rcfile.key_of_edit (Edit SciNotBase));
               mvwaddstr_safe win 18 2 ("abbreviation entry mode : " ^
               try_find Rcfile.key_of_command  (Command BeginAbbrev));
               mvwaddstr_safe win 19 2 ("stack browsing mode     : " ^
               try_find Rcfile.key_of_command (Command BeginBrowse));
               mvwaddstr_safe win 20 2 ("refresh display         : " ^
               try_find Rcfile.key_of_command (Command Refresh));
               mvwaddstr_safe win 21 2 ("quit                    : " ^
               try_find Rcfile.key_of_command (Command Quit));
               assert (wnoutrefresh win)
            end else begin
               let adjust_len s len =
                  if String.length s < len then
                     s ^ (String.make (len - (String.length s)) ' ')
                  else
                     Str.string_before s len
               in
               let make_string colon_pos key_string abbr =
                  (adjust_len key_string colon_pos) ^ ": " ^ abbr
               in
               wattron win WA.bold;
               mvwaddstr_safe win 5 0 "Autobindings:";
               wattroff win WA.bold;
               if Array.length !Rcfile.autobind_keys <= 0 then
                  mvwaddstr_safe win 6 2 "(none)"
               else
                  for i = 0 to pred (min (iface.scr.hw_lines - 6) (Array.length
                  !Rcfile.autobind_keys)) do
                     let (key, key_string, bound_f, age) = !Rcfile.autobind_keys.(i) in
                     let abbr = match bound_f with
                        |None    -> "(none)"
                        |Some op -> Rcfile.abbrev_of_operation op
                     in
                     mvwaddstr_safe win (i + 6) 2 (make_string 12 key_string abbr)
                  done;
               assert (wnoutrefresh win)
            end
         |StandardIntHelp ->
            wattron win WA.bold;
            mvwaddstr_safe win 5 0 "Integer Editing Operations:";
            wattroff win WA.bold;
            mvwaddstr_safe win 6 2 ("enter    : " ^
            try_find Rcfile.key_of_edit (Edit Enter));
            mvwaddstr_safe win 7 2 ("set base : " ^
            try_find Rcfile.key_of_edit (Edit SciNotBase));
            mvwaddstr_safe win 8 2 ("cancel   : " ^
            try_find Rcfile.key_of_intedit (IntEdit ExitIntEdit));
            assert (wnoutrefresh win)
         |AbbrevHelp ->
            if String.length iface.abbrev_entry_buffer = 0 then
               let abbr_strings = generate_abbrev_help () in
               let rec print_help_lines lines v_pos =
                  begin match lines with
                  |[] ->
                     ()
                  |head :: tail ->
                     mvwaddstr_safe win v_pos 2 head;
                     print_help_lines tail (succ v_pos)
                  end
               in
               begin
                  wattron win WA.bold;
                  mvwaddstr_safe win 5 0 "Abbreviations:";
                  wattroff win WA.bold;
                  mvwaddstr_safe win 6 1 "Common Functions:";
                  print_help_lines abbr_strings.functions 7;
                  mvwaddstr_safe win 13 1 "Change Modes:";
                  print_help_lines abbr_strings.modes 14;
                  mvwaddstr_safe win 17 1 "Miscellaneous:";
                  print_help_lines abbr_strings.misc 18;
                  mvwaddstr_safe win 20 1 ("execute abbreviation : " ^
                  try_find Rcfile.key_of_abbrev (Abbrev EnterAbbrev));
                  mvwaddstr_safe win 21 1 ("cancel abbreviation  : " ^
                  try_find Rcfile.key_of_abbrev (Abbrev ExitAbbrev));
                  assert (wnoutrefresh win)
               end
            else
               begin
                  wattron win WA.bold;
                  assert (mvwaddstr win 5 0 "Matched Abbreviations:");
                  wattroff win WA.bold;
                  let highlight_len = String.length iface.abbrev_entry_buffer in
                  let rec draw_matches v_pos match_list =
                     if v_pos < iface.scr.hw_lines then
                        begin match match_list with
                        |[] ->
                           ()
                        |m :: tail ->
                           begin
                              (* highlight the first 'highlight_len' characters *)
                              wattron win WA.bold;
                              let len_str = String.length m in
                              mvwaddstr_safe win v_pos 2
                                 (Str.string_before m (highlight_len));
                              wattroff win WA.bold;
                              mvwaddstr_safe win v_pos (2 + highlight_len)
                                 (Str.string_after m (highlight_len));
                              draw_matches (succ v_pos) tail
                           end
                        end
                     else
                        ()
                  in
                  draw_matches 6 iface.matched_abbrev_entry_list;
                  assert (wnoutrefresh win)
               end 
         |VarHelp ->
            wattron win WA.bold;
            mvwaddstr_safe win 5 0 "Variable Mode Commands:";
            wattroff win WA.bold;
            mvwaddstr_safe win 6 2 ("enter variable   : " ^
            try_find Rcfile.key_of_varedit (VarEdit EnterVarEdit));
            mvwaddstr_safe win 7 2 ("complete variable: " ^
            try_find Rcfile.key_of_varedit (VarEdit CompleteVarEdit));
            mvwaddstr_safe win 8 2 ("cancel entry     : " ^
            try_find Rcfile.key_of_varedit (VarEdit ExitVarEdit));
            wattron win WA.bold;
            mvwaddstr_safe win 10 0 "Matched variables:";
            wattroff win WA.bold;
            let highlight_len = 
               begin match iface.completion with
               |None   -> String.length iface.variable_entry_buffer 
               |Some _ -> 0
               end
            in
            let rec draw_matches v_pos match_list count =
               if v_pos < iface.scr.hw_lines then
                  begin match match_list with
                  |[] ->
                     ()
                  |m :: tail ->
                     begin match iface.completion with
                     |None ->
                        (* highlight the first 'highlight_len' characters *)
                        wattron win WA.bold;
                        let len_str = String.length m in
                        mvwaddstr_safe win v_pos 2
                           (Str.string_before m (highlight_len));
                        wattroff win WA.bold;
                        mvwaddstr_safe win v_pos (2 + highlight_len)
                           (Str.string_after m (highlight_len));
                     |Some num ->
                        (* highlight the entire selected match *)
                        if count = num then begin
                           wattron win WA.bold;
                           mvwaddstr_safe win v_pos 2 m;
                           wattroff win WA.bold;
                        end else
                           mvwaddstr_safe win v_pos 2 m;
                     end;
                     draw_matches (succ v_pos) tail (succ count)
                  end
               else
                  ()
            in
            if List.length iface.matched_variables = 0 then
               mvwaddstr_safe win 11 2 "(none)"
            else
               draw_matches 11 iface.matched_variables 0;
            assert (wnoutrefresh win)
         end 
      end
   |None ->
      ()
   end; 
   assert (wmove iface.scr.entry_win (iface.scr.ew_lines - 1) (iface.scr.ew_cols - 1))


let draw_message (iface : interface_state_t) msg =
   draw_update_stack iface;
   let error_lines = Utility.wordwrap msg (iface.scr.sw_cols-2) in
   let trunc_error_lines = 
      if List.length error_lines > 4 then
         (List.nth error_lines 0) :: (List.nth error_lines 1) ::
         (List.nth error_lines 2) :: (List.nth error_lines 3) :: [] 
      else
         error_lines 
   in
   let top_line =
      begin match iface.scr.help_win with
      |Some win -> 0
      |None     -> 2
      end
   in
   for i = 0 to pred (List.length trunc_error_lines) do
      assert (wmove iface.scr.stack_win (i + top_line) 0);
      wclrtoeol iface.scr.stack_win;
      assert (mvwaddstr iface.scr.stack_win (i + top_line) 1 (List.nth trunc_error_lines i))
   done;
   let s = String.make iface.scr.sw_cols '-' in
   assert (mvwaddstr iface.scr.stack_win ((List.length trunc_error_lines) +
   top_line) 0 s);
   assert (wnoutrefresh iface.scr.stack_win);
   assert (wmove iface.scr.entry_win (iface.scr.ew_lines - 1) (iface.scr.ew_cols - 1))


(* write an error message to the stack window *)
let draw_error (iface : interface_state_t) msg =
   draw_message iface ("Error: " ^ msg)


(* display the "about" screen *)
let draw_about (iface : interface_state_t) =
   erase ();
   (* draw the box outline *)
   let horiz_line = String.make iface.scr.cols '*' in
   let vert_line_piece = String.make iface.scr.cols ' ' in
   vert_line_piece.[0] <- '*';
   vert_line_piece.[pred iface.scr.cols] <- '*';
   assert (mvaddstr 0 0 horiz_line);
   assert (mvaddstr (iface.scr.lines - 2) 0 horiz_line);
   for i = 1 to iface.scr.lines - 3 do
      assert (mvaddstr i 0 vert_line_piece)
   done;
   (* draw the text *)
   let vert_center  = (iface.scr.lines - 2) / 2
   and horiz_center = iface.scr.cols / 2 in
   let left_shift = 17 in
   attron A.bold;
   assert (mvaddstr (vert_center - 6) (horiz_center - left_shift) 
   ("Orpie v" ^ iface.version));
   attroff A.bold;
   assert (mvaddstr (vert_center - 5) (horiz_center - left_shift) 
   "Copyright (C) 2004 Paul Pelzl");
   assert (mvaddstr (vert_center - 3) (horiz_center - left_shift)
   "\"Because, frankly, GUI calculator");
   assert (mvaddstr (vert_center - 2) (horiz_center - left_shift) 
   " programs are pure evil.  ");
   attron A.bold;
   assert (mvaddstr (vert_center - 2) (horiz_center - left_shift + 26) 
   "Orpie");
   attroff A.bold;
   assert (mvaddstr (vert_center - 2) (horiz_center - left_shift + 31) 
   ", on");
   assert (mvaddstr (vert_center - 1) (horiz_center - left_shift)
   " the other hand, is only a little");
   assert (mvaddstr (vert_center + 0) (horiz_center - left_shift)
   " bit evil.\"");
   assert (mvaddstr (vert_center + 2) (horiz_center - left_shift)
   "Orpie comes with ABSOLUTELY NO");
   assert (mvaddstr (vert_center + 3) (horiz_center - left_shift)
   "WARRANTY.  This is free software,");
   assert (mvaddstr (vert_center + 4) (horiz_center - left_shift)
   "and you are welcome to redistribute");
   assert (mvaddstr (vert_center + 5) (horiz_center - left_shift)
   "it under certain conditions; see");
   assert (mvaddstr (vert_center + 6) (horiz_center - left_shift)
   "'COPYING' for details.");
   assert (mvaddstr (iface.scr.lines - 4) (horiz_center - 12)
   "Press any key to continue.");
   assert (move (iface.scr.lines - 1) (iface.scr.cols - 1));
   assert (refresh ())



(* arch-tag: DO_NOT_CHANGE_044cbd96-d20b-48c6-92e7-62709c2aa3df *)