File: edit-text.lisp

package info (click to toggle)
clue 20011230
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,112 kB
  • ctags: 2,646
  • sloc: lisp: 31,991; makefile: 40; sh: 24
file content (1001 lines) | stat: -rw-r--r-- 37,131 bytes parent folder | download | duplicates (3)
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
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
;;; -*- Mode:Lisp; Package:CLIO-OPEN; Base:10; Lowercase:T; Syntax:Common-Lisp -*-


;;;----------------------------------------------------------------------------------+
;;;                                                                                  |
;;;                          TEXAS INSTRUMENTS INCORPORATED                          |
;;;                                  P.O. BOX 149149                                 |
;;;                             AUSTIN, TEXAS 78714-9149                             |
;;;                                                                                  |
;;;             Copyright (C) 1990, 1990 Texas Instruments Incorporated.             |
;;;                                                                                  |
;;; Permission is granted to any individual or institution to use, copy, modify, and |
;;; distribute this software, provided that  this complete copyright and  permission |
;;; notice is maintained, intact, in all copies and supporting documentation.        |
;;;                                                                                  |
;;; Texas Instruments Incorporated provides this software "as is" without express or |
;;; implied warranty.                                                                |
;;;                                                                                  |
;;;----------------------------------------------------------------------------------+

(in-package "CLIO-OPEN")

(export '(
	  edit-text
	  edit-text-clear
	  edit-text-cut
	  edit-text-field
	  edit-text-grow
	  edit-text-field-length
	  edit-text-paste

	  make-edit-text
	  make-edit-text-field
	  )
	'clio-open)


(defmacro char-or-keysym (keysym)
  ;; Expands to the character corresponding to the KEYSYM in the
  ;; default global (display-independent) keysym mapping, if any.
  ;; Otherwise, expands to the KEYSYM.
  (let ((mapping (find-if #'(lambda (mapping)
			      ;; Better to use keysym-mapping accessors directly, but in R3 CLX these
			      ;; macros are defined only at compile time. 
			      (and (characterp (first mapping))		       ; xlib::keysym-mapping-object 
				   (not (second mapping))		       ; xlib::keysym-mapping-mask 
				   (not (third mapping))		       ; xlib::keysym-mapping-modifiers 
				   (not (fourth mapping))		       ; xlib::keysym-mapping-lowercase 
				   (not (fifth mapping))		       ; xlib::keysym-mapping-translate 
				   ))
			  
			  (gethash keysym xlib::*keysym->character-map*))))
    `,(if mapping
	(first mapping)							       ; xlib::keysym-mapping-object 
	keysym)))



(defconstant
  *default-edit-text-field-command-table*
  (make-text-command-table
    :default                                 'text-insert
    #\rubout                                 'text-rubout
    #\newline                                'text-complete
    #\linefeed                               'text-complete
    (char-or-keysym #.(xlib::keysym 255 83)) '(text-move-point :chars 1)       ; Right Arrow
    (char-or-keysym #.(xlib::keysym 255 81)) '(text-move-point :chars -1)      ; Left Arrow 
    (char-or-keysym #.(xlib::keysym 255 82)) 'ignore			       ; Up Arrow
    (char-or-keysym #.(xlib::keysym 255 84)) 'ignore			       ; Down Arrow

    ;; KCL or CMUCL doesn't support char-bits!
    #-(or kcl cmu) #\Control-\y    #-(or kcl cmu) 'edit-text-paste
    #-(or kcl cmu) #\Control-\w    #-(or kcl cmu) 'edit-text-cut
    #-(or kcl cmu) #\Meta-\w       #-(or kcl cmu) 'display-text-copy
    #-(or kcl cmu) #\Control-\a    #-(or kcl cmu) '(text-move-sol)
    #-(or kcl cmu) #\Control-\e    #-(or kcl cmu) '(text-move-eol)
    #-(or kcl cmu) #\Control-\k    #-(or kcl cmu) '(text-delete-eol)
    ))
	      

;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                text-editor                                 |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defconstant *i-bar-cursor-index* 152)

(defcontact text-editor ()
  ((commands         :type	     list
		     :initform       (list *default-edit-text-field-command-table*)
		     :initarg	     :commands
		     :accessor	     edit-text-commands)   

   (focus-p          :type           boolean
		     :initform       nil
		     :accessor       edit-text-focus-p))
  
  (:resources
    (cursor :initform *i-bar-cursor-index* :type cursor))
  
  (:documentation  "Basic behaviors for editing text."))



;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                              Event Handling                                |
;;;                                                                            |
;;;----------------------------------------------------------------------------+
 
(defevent text-editor (:button-press :button-1 :control) edit-text-cut)
(defevent text-editor :enter-notify  (change-focus t))
(defevent text-editor :leave-notify  (change-focus nil))
(defevent text-editor :focus-out     (change-focus nil t))
(defevent text-editor :focus-in      (change-focus t t))
(defevent text-editor :key-press     perform-command)

(defun change-focus (text new-value &optional explicit-p)
  (with-event (focus-p kind)
    (when
      (and
	;; Text window actually the one gaining/losing focus?
	(if explicit-p
	    (member kind '(:ancestor :inferior :nonlinear))     
	    focus-p)

	;; Actually losing when leaving?
	(or new-value explicit-p (not (eq (input-focus (contact-display text)) text))))
      
      (setf (edit-text-focus-p text) new-value))))



;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                  Display                                   |
;;;                                                                            |
;;;----------------------------------------------------------------------------+



(defmethod (setf text-caret-displayed-p) (boolean (text text-editor)
					  &optional exposed-x exposed-y exposed-width exposed-height)
  (unless (or (not (realized-p text)) (text-selection-range text))
    (with-slots (focus-p point foreground) text
      (let*
	((scale  (contact-scale text))
	 (caret  (getf *text-caret-dimensions* scale))
	 (offset (text-caret-baseline-offset caret)))
	
	;; Get image and dimensions for active/inactive caret.
	(multiple-value-bind (width height image)
	    (if focus-p
		(values
		  (text-caret-width caret)
		  (text-caret-height caret)		
		  (getf (getf *text-caret-images* :active) scale))
		
		(values
		  nil
		  (or (text-caret-inactive-height caret) (text-caret-height caret))		
		  (getf (getf *text-caret-images* :inactive) scale)))
	  
	  ;; Adjust amount of image to copy.
	  (setf width  (or width height)
		height (min height (+ (text-caret-descent text scale) offset)))
	  
	  ;; Copy image pixmap.
	  (multiple-value-bind (x y) (text-base-position text point)
	    (using-gcontext (gc :drawable text :function boole-xor :exposures :off)
	      (with-gcontext (gc :clip-mask (when exposed-x (list exposed-x exposed-y exposed-width exposed-height)))
		(copy-area
		  (contact-image-mask
		    text image
		    :foreground (logxor foreground (contact-current-background-pixel text)))
		  gc
		  0 0 width height
		  text
		  (1+ (- x (pixel-round width 2))) (- y offset)))))))))
  boolean)


(defgeneric text-caret-descent (text scale)
  (:documentation "Return the descent of the displayed caret for TEXT."))


(defmethod text-caret-descent ((text text-editor) scale)
  (let ((dimensions (getf *text-caret-dimensions* scale)))
    (- (or (text-caret-inactive-height dimensions)
	   (text-caret-height dimensions))
       (text-caret-baseline-offset dimensions))))


(defmethod compute-text-geometry :around ((text text-editor))
  (with-slots (gravity) text
    (multiple-value-bind (left top width height ascent descent)
	(call-next-method)
      (values
	;; Leave room for caret at end.
	(case gravity
	  ((:north-west :west :south-west)
	   (+ left (pixel-round (text-caret-width (getf *text-caret-dimensions* (contact-scale text))) 2)))
	  ((:north-east :east :south-east)
	   (- left (pixel-round (text-caret-width (getf *text-caret-dimensions* (contact-scale text))) 2)))
	  (otherwise
	   left))
	top width height ascent descent))))



;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                 Selection                                  |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defgeneric edit-text-clear (text)
  (:documentation "Sets the source of the TEXT to the empty string."))

(defmethod edit-text-clear ((text text-editor))
  (setf (display-text-source text) ""))

(defgeneric edit-text-cut (text)
  (:documentation "Causes the TEXT selection to be deleted into the :CLIPBOARD.
Returns the deleted text."))

(defmethod edit-text-cut ((text text-editor))
  (let ((clip (clipboard-copy text)))
    (when clip (text-rubout text))
    clip))

(defgeneric edit-text-paste (text)
  (:documentation "Inserts the :CLIPBOARD into the TEXT and returns the inserted string."))

(defmethod edit-text-paste ((text text-editor))
  (let*
    ((display     (contact-display text))
     (client-clip (display-clipboard-text display))
     (paste       
       ;; Does this client own the :CLIPBOARD selection?
       (if (plusp (length client-clip))
	   
	   ;; Yes, get it the easy way.
	   client-clip
	   
	   ;; No, use interclient communication.
	   (flet
	     ((throw-convert (text) 
			     (declare (ignore text))
			     (with-event (property) (throw :convert property))))
	     
	     (let ((time (when (processing-event-p) (with-event (time) time))))
	       (with-event-mode (text `(:selection-notify ,#'throw-convert)) 
		 (convert-selection :clipboard :string text :paste time)
		 
		 ;; Wait for :selection-notify to report result of conversion.
		 (when (catch :convert (loop (process-next-event display)))
		   
		   ;; Conversion successful --- get stored value.
		   (get-property
		     text :paste :result-type 'string

		     ;; The :string target specifies Latin-1 encoding. This happens to correspond
		     ;; to the keysym encoding, hence the following transform function.
		     ;; Note that #'code-char might work on many systems, but this is not guaranteed
		     ;; since Common Lisp does not specify a standard character encoding.
		     
		     :transform #'(lambda (code) (keysym->character display code))))))))))
    
    (if paste
	(text-insert text paste)
	(bell display))
    paste))


;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                 Accessors                                  |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defmethod (setf edit-text-focus-p) :around (new-value (text text-editor))
  (with-slots (focus-p) text
    (let* ((changed-p (if new-value (not focus-p) focus-p))
	   (caret-p   (and changed-p (not (text-selection-range text)))))
      (when caret-p
	(setf (text-caret-displayed-p text) nil))      
      (call-next-method)      
      (when changed-p
	(when caret-p
	  (setf (text-caret-displayed-p text) t))
	(apply-callback text (if new-value :resume :suspend)))))  
  new-value)




;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                              edit-text-field                               |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defcontact edit-text-field (text-editor select-text display-text-field)
  ((length           :type	     (or null (integer 0 *))
		     :initform       nil
		     :initarg	     :length
		     :accessor	     edit-text-field-length))
  
  (:resources
    (font :initform *default-display-text-font*)
    (display-gravity :initform :west)
    length)
  
  (:documentation  "A single line of editable text."))

(defun make-edit-text-field (&rest initargs)
  (apply #'make-contact 'edit-text-field initargs))


;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                 Accessors                                  |
;;;                                                                            |
;;;----------------------------------------------------------------------------+


(defmethod (setf edit-text-point) :before (new-point (text edit-text-field) &key clear-p)
  (declare (ignore clear-p))
  (check-type new-point (or null (integer 0 *))))

(defmethod (setf edit-text-mark) :before (new-mark (text edit-text-field))
  (check-type new-mark (or null (integer 0 *))))


;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                  Display                                   |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defmethod display :around ((text edit-text-field) &optional x y width height &key) 
  
  ;; Display underline
  (multiple-value-bind (base-x base-y) (call-next-method)    
    (let ((scale (contact-scale text)))
      (with-slots (foreground font length width clip-rectangle) text      
	(let*
	  ((underline-y (+ base-y (text-caret-descent text scale)))
	   ;; Length of line reflects max string length
	   (start-x     (if length
			    base-x
			    0))
	   (end-x       (if length
			    (+ base-x
			       (* length
				  ;; Use average char width and hope for the best.
				  (pixel-round (+ (min-char-width font) (max-char-width font)) 2)))
			    width)))
	  
	  (using-gcontext (gc :drawable   text
			      :foreground foreground
			      :clip-mask  clip-rectangle)
	    (draw-line text gc start-x underline-y end-x underline-y))))))
  
  ;; Display caret, current selection
  (setf (text-selection-displayed-p text x y width height) t)
  (setf (text-caret-displayed-p text) t))

(defmethod text-clear-line ((text edit-text-field) base-x base-y)
  (with-slots (font) text
    (clear-area
      text
      :x      base-x
      :y      (- base-y (font-ascent font))
      :height (+ (font-ascent font) (text-caret-descent text (contact-scale text))))))



(defmethod text-change-highlight ((text edit-text-field) from to
				  &optional exposed-x exposed-y exposed-width exposed-height)
  (when (realized-p text)
    (with-slots (font foreground clip-rectangle) text
    (let ((ascent  (font-ascent font))
	  (descent (font-descent font)))
      
      (multiple-value-bind (from-x from-y)
	  (text-mark-point text from)
	(let ((to-x (text-mark-point text to)))
	  
	  (using-gcontext
	    (gc :drawable   text
		:function   boole-xor
		:clip-mask  clip-rectangle
		:foreground (logxor
			      foreground
			      (contact-current-background-pixel text)))	    	    
	    
	    (if (every #'numberp (list exposed-x exposed-y
				       exposed-width exposed-height))
		
		;; Clip highlight to intersection of clip rectangle and exposed region.
		(let
		  ((old-clip-x      (display-clip-x text))
		   (old-clip-y      (display-clip-y text))
		   (old-clip-width  (display-clip-width text))
		   (old-clip-height (display-clip-height text)))
		  
		  (setf
		    (display-clip-x text)     (max old-clip-x exposed-x)
		    (display-clip-y text)     (max old-clip-y exposed-y)
		    (display-clip-width text) (- (min (+ exposed-x exposed-width)
						      (+ old-clip-x old-clip-width))
						 (display-clip-x text))
		    (display-clip-height text) (- (min (+ exposed-y exposed-height)
						       (+ old-clip-y old-clip-height))
						  (display-clip-y text)))
		  ;; Does intersection exist?
		  (when (and (plusp (display-clip-width text)) (plusp (display-clip-height text)))
		    (with-gcontext (gc :clip-mask clip-rectangle)
		      (draw-rectangle
			text gc
			(min from-x to-x) (- from-y ascent)
			(abs (- from-x to-x))
			(+ ascent descent)
			t)))
		  
		  ;; Restore clip rectangle
		  (setf (display-clip-x text)      old-clip-x
			(display-clip-y text)      old-clip-y
			(display-clip-width text)  old-clip-width
			(display-clip-height text) old-clip-height))
		
		;; Else draw highlight without additional clipping
		(draw-rectangle
		  text gc
		  (min from-x to-x) (- from-y ascent)
		  (abs (- from-x to-x))
		  (+ ascent descent)
		  t)))))))))




;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                   Geometry                                 |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defmethod preferred-size ((text edit-text-field) &key width height border-width)
  (with-slots
    (length font (contact-width width) (contact-height height) (contact-border-width border-width))
    text
    (multiple-value-bind (text-width text-height) 
	(if length
	    ;; Prefer to be big enough for length chars (use average char width and hope for the best).
	    (values (* length (pixel-round (+ (min-char-width font) (max-char-width font)) 2))
		    (+ (font-ascent font) (font-descent font)))

	    ;; Else use current source extent.
	    (display-text-extent text))

      (let ((scale (contact-scale text)))	
	(values
	  ;; Ensure wide enough to display caret at end.
	  (max (+ text-width (text-caret-width (getf *text-caret-dimensions* scale))) (or width contact-width))

	  ;; Ensure tall enough to display caret and underline.
	  (max (+ text-height (text-caret-descent text scale) 1) (or height contact-height))
	  (or border-width contact-border-width))))))


(defmethod text-caret-descent :around ((text edit-text-field) scale)
  ;; Decrement normal caret height to avoid underline.
  (1- (call-next-method)))


(defmethod display-text-extent :around ((text edit-text-field))
  (multiple-value-bind (width height ascent) (call-next-method)
    (declare (ignore height))
    (let ((descent (1+ (text-caret-descent text (contact-scale text)))))
      (values width (+ ascent descent) ascent descent))))	  



;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                             Command Functions                              |
;;;                                                                            |
;;;----------------------------------------------------------------------------+


(defun perform-command (edit-text)
  (with-slots (commands) edit-text
    (with-event (character keysym)
      (let ((input (or character keysym)))
	
	;; Look up command in command table list.
	(multiple-value-bind (command default)
	    (dolist (table commands)
	      (let* ((command (text-command table input))
		     (default (unless command (text-command table :default))))
		(when (or command default)
		  (return (values command default)))))
	  
	  (cond
	    ;; Command found --- call with edit-text and other args.
	    (command
	     (if (listp command)
		 (apply (first command) edit-text (rest command))
		 (funcall command edit-text)))
	    
	    ;; Default command found --- call with edit-text, input, and other args.
	    (default
	     (if (listp default)
		 (apply (first default) edit-text input (rest default))
		 (funcall default edit-text input)))))))))


  
(defgeneric text-insert (edit-text chars)
  (:documentation "Insert the CHARS into the EDIT-TEXT at the current point
and increment the point."))


(defmethod text-insert ((text text-editor) input)
  ;; If input not character or string, then ignore.
  ;; This case may occur for non-character keysyms like arrow keys.
  (declare (ignore input)))

(defmethod text-insert :around ((text text-editor) (input character))
  ;; Ignore non-graphic characters (e.g. #\Hyper-Q).
  (if (graphic-char-p input)
      (call-next-method)
      (text-insert-nongraphic text input)))


(defgeneric text-insert-nongraphic (text input)
  (:documentation "Insert non-graphic INPUT into the EDIT-TEXT at the current point."))

(defmethod text-insert-nongraphic ((text text-editor) input)
  (declare (ignore input))
  (bell (contact-display text)))



(flet
  ((edit-text-field-insert (text char) 
     (declare (type edit-text-field text)
	      (type (or character string) char))
     (with-slots (buffer mark point gravity length) text 
       (multiple-value-bind (select-start select-end) (text-selection-range text)
	 
	 ;; Invoke :insert callback
	 (let ((initial-insert-point (or select-start point)))
	   (multiple-value-bind (insert-point char)
	       (apply-callback-else (text :insert text initial-insert-point char)
		 (values initial-insert-point char))
	     
	     (when
	       (or
		 ;; Insertion refused?
		 (not insert-point)
		 
		 ;; Too many chars?
		 (and length (>= (buffer-length buffer) length)
		      (bell (contact-display text)) t))
	       
	       ;; Insertion not allowed. 
	       (return-from edit-text-field-insert))
	     
	     ;; If insert point altered, then clear selection and do not delete it.
	     (unless (or (not select-start) (= insert-point initial-insert-point))
	       (setf (edit-text-mark text) point
		     select-start          nil))
	     
	     (while-changing-marks (text) 
	       (let*
		 ((clear-all-p
		    (case gravity
		      ((:north-west :west :south-west) select-start)
		      (otherwise                       t)))
		  (clear-position
		    (if clear-all-p 0 insert-point)))
		 
		 ;; Clear before changing source.
		 (multiple-value-bind (base-x base-y) (text-base-position text clear-position)
		   (text-clear-line text base-x base-y)
		   
		   ;; Delete current selection.
		   (when select-start
		     (buffer-delete buffer select-start select-end))
		   
		   
		   ;; Insert new character and move point
		   (let ((new-point (buffer-line-insert buffer char insert-point)))	      	      
		     
		     ;; Refresh new line
		     (text-refresh-line
		       text clear-position
		       :clear-p nil
		       :base-x  (unless clear-all-p base-x)
		       :base-y  base-y)	       
		     
		     ;; Update point, mark.
		     (setf mark (setf point new-point))))))))))))

  (defmethod text-insert ((text edit-text-field) (char character))
    (edit-text-field-insert text char))

  (defmethod text-insert ((text edit-text-field) (char string))
    (edit-text-field-insert text char)))

 
(defgeneric text-move-point (edit-text &key lines chars)
  (:documentation "Increment the point of the EDIT-TEXT by the 
given number of LINES and CHARS."))

(defmethod text-move-point ((text text-editor) &key (lines 0) (chars 0))
  (with-slots (point mark  buffer) text
    (while-changing-marks (text)
      (let ((new-point (buffer-move-mark buffer point :chars chars :lines lines)))
	(if (text-selection-range text)
	    (text-change-highlight text point new-point)
	    (setf mark (move-mark mark new-point)))
	(setf point (move-mark point new-point))))
    
    (apply-callback text :point text (buffer-mark-position buffer point))))



(defgeneric text-move-sol (edit-text)
  (:documentation "Move to the start of the current line of EDIT-TEXT."))

(defmethod text-move-sol ((text text-editor))
  (with-slots (point buffer) text
    (setf (edit-text-point text :clear-p (not (text-selection-range text)))
	  (buffer-sol buffer point))))

(defgeneric text-move-eol (edit-text)
  (:documentation "Move to the end of the current line of EDIT-TEXT."))

(defmethod text-move-eol ((text text-editor))
  (with-slots (point buffer) text
    (setf (edit-text-point text :clear-p (not (text-selection-range text)))
	  (buffer-eol buffer point))))


(defgeneric text-delete-eol (edit-text)
  (:documentation "Delete to the end of the current line of EDIT-TEXT."))

(defmethod text-delete-eol ((text text-editor))
  (with-slots (point buffer) text
    ;; Select to end of line...
    (setf (edit-text-mark text) (buffer-eol buffer point))

    ;; ...and delete it.
    (text-rubout text)))

(defgeneric text-rubout (edit-text)
  (:documentation "Decrement the current point and delete the character in the EDIT-TEXT 
at the new point."))


(defmethod text-rubout ((text edit-text-field))
  (with-slots (point mark gravity buffer) text
    (multiple-value-bind (select-start select-end) (text-selection-range text)
      
      ;; Attempt to delete non-existent character?
      (if (and (not select-start) point (zerop point))
	  
	  ;; Yes, beep a warning.
	  (bell (contact-display text))
	  
	  ;; No, perform delete.	  
	  (let ((initial-start (or select-start (buffer-move-mark buffer point :chars -1)))
		(initial-end  (or select-end point)))
	    
	    ;; Invoke :delete callback.
	    (multiple-value-bind (start end)
		(apply-callback-else (text :delete text initial-start initial-end)
		  (values initial-start initial-end))
	      
	      ;; Deletion allowed?
	      (unless start (return-from text-rubout))
	      
	      ;; If delete range altered, then clear selection and do not delete it.
	      (unless (and (= start initial-start) (= end initial-end))
		(setf (edit-text-mark text) point
		      select-start          nil))
	      
	      (let*
		((clear-all-p
		   (case gravity
		     ((:north-west :west :south-west) select-start)
		     (otherwise                       t)))
		 (clear-position
		   (if clear-all-p 0 start)))
		
		(while-changing-marks (text)
		  ;; Clear before changing source.
		  (multiple-value-bind (base-x base-y) (text-base-position text clear-position)
		    (text-clear-line text base-x base-y)
		    
		    ;; Delete chars and reset point, mark.
		    (buffer-line-delete buffer (setf point (setf mark start)) end)      
		    
		    ;; Redisplay chars	
		    (text-refresh-line
		      text clear-position
		      :clear-p nil
		      :base-x  (unless clear-all-p base-x)
		      :base-y  base-y))))))))))


(defgeneric text-complete (edit-text)
  (:documentation "Invoke the :complete callback."))

(defmethod text-complete ((text text-editor))
  (multiple-value-bind (verified-p message)
      (apply-callback-else (text :verify text)
	t)

    (if verified-p
	(apply-callback text :complete)
	
	(confirm-p
	  :near          text
	  :message       (or message "Text changes not accepted.")
	  :accept-only   :on))))



;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                                 edit-text                                  |
;;;                                                                            |
;;;----------------------------------------------------------------------------+

(defconstant
  *default-edit-text-command-table*
  (make-text-command-table
    :default                                 'text-insert
    #\rubout                                 'text-rubout
    (char-or-keysym #.(xlib::keysym 255 83)) '(text-move-point :chars 1)   ; Right Arrow
    (char-or-keysym #.(xlib::keysym 255 81)) '(text-move-point :chars -1)  ; Left Arrow
    (char-or-keysym #.(xlib::keysym 255 82)) '(text-move-point :lines -1)  ; Up Arrow
    (char-or-keysym #.(xlib::keysym 255 84)) '(text-move-point :lines 1)  ; Down Arrow

    ;; KCL or CMUCL doesn't support char-bits!
    #-(or kcl cmu) #\Control-\y      #-(or kcl cmu) 'edit-text-paste
    #-(or kcl cmu) #\Control-\w      #-(or kcl cmu) 'edit-text-cut
    #-(or kcl cmu) #\Meta-\w         #-(or kcl cmu) 'display-text-copy
    #-(or kcl cmu) #\Control-\a      #-(or kcl cmu) '(text-move-sol)
    #-(or kcl cmu) #\Control-\e      #-(or kcl cmu) '(text-move-eol)
    #-(or kcl cmu) #\Control-\k      #-(or kcl cmu) '(text-delete-eol)
    ))
 
(defcontact edit-text (text-editor display-text)
  ((commands :initform (list *default-edit-text-command-table*)))
  
  (:resources
    (display-gravity :initform :north-west))

  
  (:documentation  "Multiple lines of editable text."))

(defun make-edit-text (&rest initargs)
  (apply #'make-contact 'edit-text initargs))





;;;----------------------------------------------------------------------------+
;;;                                                                            |
;;;                             Command Functions                              |
;;;                                                                            |
;;;----------------------------------------------------------------------------+


(let ((insert-start (make-mark)) 
      (insert-mark  (make-mark)))  
  (flet
    ((edit-text-insert (text string)
       (declare (type edit-text text)
		(type (or character string) string))
    
       (with-slots (buffer mark point font gravity alignment extent-left extent-width) text
	 (multiple-value-bind (select-start select-end) (text-selection-range text)
	   
	   ;; Initialize insert mark.
	   (move-mark insert-start (or select-start point)) 
	   
	   ;; Invoke :insert callback, if necessary
	   (multiple-value-bind (insert-pos string)
	       (apply-callback-else
		 (text :insert text (buffer-mark-position buffer insert-start) string)
		 (values t string))
	     
	     ;; Insert allowed?
	     (unless insert-pos (return-from edit-text-insert))
	     
	     ;; New insert position returned?
	     (unless (eq insert-pos t)
	       ;; Yes, convert to insert mark.
	       (buffer-position-mark buffer insert-pos insert-start))
	     
	     ;; If insert point altered, then clear selection and do not delete it.
	     (unless (or (not select-start) (mark-equal insert-start select-start))
	       (setf (edit-text-mark text) point
		     select-start          nil))
	     
	     (while-changing-marks (text)
	       (let ((small-delete-p 
		       (cond
			 (select-start
			  ;; Delete current selection, if any. 
			  (buffer-delete buffer select-start select-end)
			  
			  ;; Return true if delete limited to one line.
			  (= (mark-line-index select-end) (mark-line-index select-start)))
			 
			 (:else
			  t))))
		 
		 ;; Insert new string and move insert mark
		 (move-mark insert-mark insert-start)
		 (buffer-insert buffer string insert-mark)
		 (move-mark mark (move-mark point insert-mark))
		 
		 ;; Redisplay is simple and efficient for most common case ---
		 ;; :north-west gravity, :left alignment, and insert/delete affecting only one line.
		 ;; Otherwise, redisplay is simple and inefficient! Replace with more
		 ;; sophisticated algorithm when possible.

		 (multiple-value-bind (refresh-start refresh-end clear-p)
		     (if
		       (or (and (eq gravity :north-west) (eq alignment :left))
			   (and (eq gravity :north-east) (eq alignment :right)))
		    
		       ;; Optimize this case... 
		       (let*
			 ((one-line-p  (and small-delete-p
					    (= (mark-line-index insert-mark)
					       (mark-line-index insert-start))))
			  (ascent      (font-ascent font))
			  (descent     (font-descent font)) 
			  (clear-start (mark-line-index insert-start))
			  (line-height (+ ascent descent)))
			 
			 ;; Clear damaged areas. If multiple lines damaged, just clear to bottom of window.
			 (when (eq alignment :left)    
			   ;; This case can be optimized: clear first line only from insert point.
			   (text-clear-line
			     text 
			     (text-base-x text clear-start (mark-index insert-start))
			     (text-base-y text clear-start)))
			 
			 (unless (and (eq alignment :left) one-line-p)
			   (when (eq alignment :left)
			     ;; First line already cleared above.
			     (incf clear-start))
			   
			   ;; Clear one or more lines. 
			   (clear-area
			     text
			     :x extent-left
			     :y (- (text-base-y text clear-start) ascent)
			     :width extent-width
			     :height (when one-line-p line-height)))
			 
			 ;; If multiple lines damaged, just redisplay to end of buffer.
			 (values insert-start (if one-line-p insert-mark nil) t))
		   
		       ;; Else punt and redisplay everything!  Replace with more efficient
		       ;; algorithm when possible.
		       (progn
			 (clear-area text)
			 (values 0 nil nil)))
		   
		   (setf (text-extent-defined-p text) nil)
		   (text-refresh text refresh-start refresh-end clear-p)))))))))

    (defmethod text-insert ((text edit-text) (input character))
      (edit-text-insert text input))

    (defmethod text-insert ((text edit-text) (input string))
      (edit-text-insert text input))

    (defmethod text-insert-nongraphic ((text edit-text) (char (eql #\newline)))
      (edit-text-insert text char))

    (defmethod text-insert-nongraphic ((text edit-text) (char (eql #\linefeed)))
      (edit-text-insert text #\newline)))) 


(let ((prev-point (make-mark)))
  
  (defmethod text-rubout ((text edit-text))
    (with-slots (point mark gravity alignment buffer font extent-left extent-width) text
      
      (multiple-value-bind (initial-start initial-end) (text-selection-range text)
	;; Attempt to delete non-existent character?
	(if
	  (and (not initial-start) (mark-equal point 0))

	  ;; Yes, beep a warning.
	  (bell (contact-display text))
	  
	  ;; No, perform delete. 
	  (while-changing-marks (text)
	    (move-mark prev-point point)
	    
	    ;; Determine initial delete range.
	    (setf initial-start (or initial-start (buffer-move-mark buffer point :chars -1))
		  initial-end   (or initial-end prev-point))
	    
	    ;; Invoke :delete callback to determine actual delete range.
	    (multiple-value-bind (start end)
		(apply-callback-else (text :delete text initial-start initial-end)
		  (values initial-start initial-end))
	      
	      ;; Deletion allowed?
	      (unless start (return-from text-rubout)) 
	      
	      ;; If delete range altered, then clear selection and do not delete it.
	      (unless (and (mark-equal start initial-start) (mark-equal end initial-end))
		(setf (edit-text-mark text) point)) 
	      
	      ;; Clear damaged area, delete chars, then redisplay.
	      ;;
	      ;; Redisplay is simple and efficient for most common case ---
	      ;; :north-west gravity, :left alignment, and delete affecting only one line.
	      ;; Otherwise, redisplay is simple and inefficient! Replace with more
	      ;; sophisticated algorithm when possible.
	      
	      (let ((start (move-mark initial-start start))
		    (end   (move-mark initial-end end)))
		
		;; Clear efficiently, if possible.
		(multiple-value-bind (refresh-start refresh-end clear-p) 
		    (if
		      (or (and (eq gravity :north-west) (eq alignment :left))
			  (and (eq gravity :north-east) (eq alignment :right)))
		      
		      ;; Optimize this case... 
		      (let*
			((one-line-p  (= (mark-line-index start) (mark-line-index end)))
			 (ascent      (font-ascent font))
			 (descent     (font-descent font)) 
			 (clear-start (mark-line-index start))
			 (line-height (+ ascent descent)))
			
			;; Clear damaged areas. If multiple lines damaged, just clear to bottom of window.
			(when (eq alignment :left)    
			  ;; This case can be optimized: clear first line only from delete point.
			  (text-clear-line
			    text 
			    (text-base-x text clear-start (mark-index start))
			    (text-base-y text clear-start)))
			
			(unless (and (eq alignment :left) one-line-p)
			  (when (eq alignment :left)
			    ;; First line already cleared above.
			    (incf clear-start))
			  
			  ;; Clear one or more lines. 
			  (clear-area
			    text
			    :x extent-left
			    :y (- (text-base-y text clear-start) ascent)
			    :width extent-width
			    :height (when one-line-p line-height)))
			
			(values start (when one-line-p end) t))
		      
		      ;; Else punt and redisplay everything!  Replace with more efficient
		      ;; algorithm when possible.
		      (progn
			(clear-area text)
			(values 0 nil nil)))
		  
		  ;; Delete chars.
		  (buffer-delete buffer start end)
		  
		  ;; Redisplay buffer.
		  (setf (text-extent-defined-p text) nil)
		  (text-refresh text refresh-start refresh-end clear-p)) 
		
		;; Update point and mark.
		(move-mark point (move-mark mark start))))))))))