]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - terminal.c
Slight improvement to cursor blink timing: since the cursor doesn't
[PuTTY.git] / terminal.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <ctype.h>
4
5 #include <time.h>
6 #include <assert.h>
7 #include "putty.h"
8 #include "terminal.h"
9
10 #define poslt(p1,p2) ( (p1).y < (p2).y || ( (p1).y == (p2).y && (p1).x < (p2).x ) )
11 #define posle(p1,p2) ( (p1).y < (p2).y || ( (p1).y == (p2).y && (p1).x <= (p2).x ) )
12 #define poseq(p1,p2) ( (p1).y == (p2).y && (p1).x == (p2).x )
13 #define posdiff(p1,p2) ( ((p1).y - (p2).y) * (term->cols+1) + (p1).x - (p2).x )
14
15 /* Product-order comparisons for rectangular block selection. */
16 #define posPlt(p1,p2) ( (p1).y <= (p2).y && (p1).x < (p2).x )
17 #define posPle(p1,p2) ( (p1).y <= (p2).y && (p1).x <= (p2).x )
18
19 #define incpos(p) ( (p).x == term->cols ? ((p).x = 0, (p).y++, 1) : ((p).x++, 0) )
20 #define decpos(p) ( (p).x == 0 ? ((p).x = term->cols, (p).y--, 1) : ((p).x--, 0) )
21
22 #define VT52_PLUS
23
24 #define CL_ANSIMIN      0x0001         /* Codes in all ANSI like terminals. */
25 #define CL_VT100        0x0002         /* VT100 */
26 #define CL_VT100AVO     0x0004         /* VT100 +AVO; 132x24 (not 132x14) & attrs */
27 #define CL_VT102        0x0008         /* VT102 */
28 #define CL_VT220        0x0010         /* VT220 */
29 #define CL_VT320        0x0020         /* VT320 */
30 #define CL_VT420        0x0040         /* VT420 */
31 #define CL_VT510        0x0080         /* VT510, NB VT510 includes ANSI */
32 #define CL_VT340TEXT    0x0100         /* VT340 extensions that appear in the VT420 */
33 #define CL_SCOANSI      0x1000         /* SCOANSI not in ANSIMIN. */
34 #define CL_ANSI         0x2000         /* ANSI ECMA-48 not in the VT100..VT420 */
35 #define CL_OTHER        0x4000         /* Others, Xterm, linux, putty, dunno, etc */
36
37 #define TM_VT100        (CL_ANSIMIN|CL_VT100)
38 #define TM_VT100AVO     (TM_VT100|CL_VT100AVO)
39 #define TM_VT102        (TM_VT100AVO|CL_VT102)
40 #define TM_VT220        (TM_VT102|CL_VT220)
41 #define TM_VTXXX        (TM_VT220|CL_VT340TEXT|CL_VT510|CL_VT420|CL_VT320)
42 #define TM_SCOANSI      (CL_ANSIMIN|CL_SCOANSI)
43
44 #define TM_PUTTY        (0xFFFF)
45
46 #define UPDATE_DELAY    ((TICKSPERSEC+49)/50)/* ticks to defer window update */
47 #define TBLINK_DELAY    ((TICKSPERSEC*9+19)/20)/* ticks between text blinks*/
48 #define CBLINK_DELAY    (CURSORBLINK) /* ticks between cursor blinks */
49 #define VBELL_DELAY     (VBELL_TIMEOUT) /* visual bell timeout in ticks */
50
51 #define compatibility(x) \
52     if ( ((CL_##x)&term->compatibility_level) == 0 ) {  \
53        term->termstate=TOPLEVEL;                        \
54        break;                                           \
55     }
56 #define compatibility2(x,y) \
57     if ( ((CL_##x|CL_##y)&term->compatibility_level) == 0 ) { \
58        term->termstate=TOPLEVEL;                        \
59        break;                                           \
60     }
61
62 #define has_compat(x) ( ((CL_##x)&term->compatibility_level) != 0 )
63
64 const char sco2ansicolour[] = { 0, 4, 2, 6, 1, 5, 3, 7 };
65
66 #define sel_nl_sz  (sizeof(sel_nl)/sizeof(wchar_t))
67 const wchar_t sel_nl[] = SEL_NL;
68
69 /*
70  * Fetch the character at a particular position in a line array,
71  * for purposes of `wordtype'. The reason this isn't just a simple
72  * array reference is that if the character we find is UCSWIDE,
73  * then we must look one space further to the left.
74  */
75 #define UCSGET(a, x) \
76     ( (x)>0 && (a)[(x)].chr == UCSWIDE ? (a)[(x)-1].chr : (a)[(x)].chr )
77
78 /*
79  * Detect the various aliases of U+0020 SPACE.
80  */
81 #define IS_SPACE_CHR(chr) \
82         ((chr) == 0x20 || (DIRECT_CHAR(chr) && ((chr) & 0xFF) == 0x20))
83
84 /*
85  * Spot magic CSETs.
86  */
87 #define CSET_OF(chr) (DIRECT_CHAR(chr)||DIRECT_FONT(chr) ? (chr)&CSET_MASK : 0)
88
89 /*
90  * Internal prototypes.
91  */
92 static void resizeline(Terminal *, termline *, int);
93 static termline *lineptr(Terminal *, int, int, int);
94 static void unlineptr(termline *);
95 static void do_paint(Terminal *, Context, int);
96 static void erase_lots(Terminal *, int, int, int);
97 static void swap_screen(Terminal *, int, int, int);
98 static void update_sbar(Terminal *);
99 static void deselect(Terminal *);
100 static void term_print_finish(Terminal *);
101 #ifdef OPTIMISE_SCROLL
102 static void scroll_display(Terminal *, int, int, int);
103 #endif /* OPTIMISE_SCROLL */
104
105 static termline *newline(Terminal *term, int cols, int bce)
106 {
107     termline *line;
108     int j;
109
110     line = snew(termline);
111     line->chars = snewn(cols, termchar);
112     for (j = 0; j < cols; j++)
113         line->chars[j] = (bce ? term->erase_char : term->basic_erase_char);
114     line->cols = line->size = cols;
115     line->lattr = LATTR_NORM;
116     line->temporary = FALSE;
117     line->cc_free = 0;
118
119     return line;
120 }
121
122 static void freeline(termline *line)
123 {
124     if (line) {
125         sfree(line->chars);
126         sfree(line);
127     }
128 }
129
130 static void unlineptr(termline *line)
131 {
132     if (line->temporary)
133         freeline(line);
134 }
135
136 /*
137  * Diagnostic function: verify that a termline has a correct
138  * combining character structure.
139  * 
140  * XXX-REMOVE-BEFORE-RELEASE: This is a performance-intensive
141  * check. Although it's currently really useful for getting all the
142  * bugs out of the new cc stuff, it will want to be absent when we
143  * make a proper release.
144  */
145 static void cc_check(termline *line)
146 {
147     unsigned char *flags;
148     int i, j;
149
150     assert(line->size >= line->cols);
151
152     flags = snewn(line->size, unsigned char);
153
154     for (i = 0; i < line->size; i++)
155         flags[i] = (i < line->cols);
156
157     for (i = 0; i < line->cols; i++) {
158         j = i;
159         while (line->chars[j].cc_next) {
160             j += line->chars[j].cc_next;
161             assert(j >= line->cols && j < line->size);
162             assert(!flags[j]);
163             flags[j] = TRUE;
164         }
165     }
166
167     j = line->cc_free;
168     if (j) {
169         while (1) {
170             assert(j >= line->cols && j < line->size);
171             assert(!flags[j]);
172             flags[j] = TRUE;
173             if (line->chars[j].cc_next)
174                 j += line->chars[j].cc_next;
175             else
176                 break;
177         }
178     }
179
180     j = 0;
181     for (i = 0; i < line->size; i++)
182         j += (flags[i] != 0);
183
184     assert(j == line->size);
185
186     sfree(flags);
187 }
188
189 /*
190  * Add a combining character to a character cell.
191  */
192 static void add_cc(termline *line, int col, unsigned long chr)
193 {
194     int newcc;
195
196     assert(col >= 0 && col < line->cols);
197
198     /*
199      * Start by extending the cols array if the free list is empty.
200      */
201     if (!line->cc_free) {
202         int n = line->size;
203         line->size += 16 + (line->size - line->cols) / 2;
204         line->chars = sresize(line->chars, line->size, termchar);
205         line->cc_free = n;
206         while (n < line->size) {
207             if (n+1 < line->size)
208                 line->chars[n].cc_next = 1;
209             else
210                 line->chars[n].cc_next = 0;
211             n++;
212         }
213     }
214
215     /*
216      * Now walk the cc list of the cell in question.
217      */
218     while (line->chars[col].cc_next)
219         col += line->chars[col].cc_next;
220
221     /*
222      * `col' now points at the last cc currently in this cell; so
223      * we simply add another one.
224      */
225     newcc = line->cc_free;
226     if (line->chars[newcc].cc_next)
227         line->cc_free = newcc + line->chars[newcc].cc_next;
228     else
229         line->cc_free = 0;
230     line->chars[newcc].cc_next = 0;
231     line->chars[newcc].chr = chr;
232     line->chars[col].cc_next = newcc - col;
233
234     cc_check(line);                    /* XXX-REMOVE-BEFORE-RELEASE */
235 }
236
237 /*
238  * Clear the combining character list in a character cell.
239  */
240 static void clear_cc(termline *line, int col)
241 {
242     int oldfree, origcol = col;
243
244     assert(col >= 0 && col < line->cols);
245
246     if (!line->chars[col].cc_next)
247         return;                        /* nothing needs doing */
248
249     oldfree = line->cc_free;
250     line->cc_free = col + line->chars[col].cc_next;
251     while (line->chars[col].cc_next)
252         col += line->chars[col].cc_next;
253     if (oldfree)
254         line->chars[col].cc_next = oldfree - col;
255     else
256         line->chars[col].cc_next = 0;
257
258     line->chars[origcol].cc_next = 0;
259
260     cc_check(line);                    /* XXX-REMOVE-BEFORE-RELEASE */
261 }
262
263 /*
264  * Compare two character cells for equality. Special case required
265  * in do_paint() where we override what we expect the chr and attr
266  * fields to be.
267  */
268 static int termchars_equal_override(termchar *a, termchar *b,
269                                     unsigned long bchr, unsigned long battr)
270 {
271     /* FULL-TERMCHAR */
272     if (a->chr != bchr)
273         return FALSE;
274     if (a->attr != battr)
275         return FALSE;
276     while (a->cc_next || b->cc_next) {
277         if (!a->cc_next || !b->cc_next)
278             return FALSE;              /* one cc-list ends, other does not */
279         a += a->cc_next;
280         b += b->cc_next;
281         if (a->chr != b->chr)
282             return FALSE;
283     }
284     return TRUE;
285 }
286
287 static int termchars_equal(termchar *a, termchar *b)
288 {
289     return termchars_equal_override(a, b, b->chr, b->attr);
290 }
291
292 /*
293  * Copy a character cell. (Requires a pointer to the destination
294  * termline, so as to access its free list.)
295  */
296 static void copy_termchar(termline *destline, int x, termchar *src)
297 {
298     clear_cc(destline, x);
299
300     destline->chars[x] = *src;         /* copy everything except cc-list */
301     destline->chars[x].cc_next = 0;    /* and make sure this is zero */
302
303     while (src->cc_next) {
304         src += src->cc_next;
305         add_cc(destline, x, src->chr);
306     }
307
308     cc_check(destline);                /* XXX-REMOVE-BEFORE-RELEASE */
309 }
310
311 /*
312  * Move a character cell within its termline.
313  */
314 static void move_termchar(termline *line, termchar *dest, termchar *src)
315 {
316     /* First clear the cc list from the original char, just in case. */
317     clear_cc(line, dest - line->chars);
318
319     /* Move the character cell and adjust its cc_next. */
320     *dest = *src;                      /* copy everything except cc-list */
321     if (src->cc_next)
322         dest->cc_next = src->cc_next - (dest-src);
323
324     /* Ensure the original cell doesn't have a cc list. */
325     src->cc_next = 0;
326
327     cc_check(line);                    /* XXX-REMOVE-BEFORE-RELEASE */
328 }
329
330 /*
331  * Compress and decompress a termline into an RLE-based format for
332  * storing in scrollback. (Since scrollback almost never needs to
333  * be modified and exists in huge quantities, this is a sensible
334  * tradeoff, particularly since it allows us to continue adding
335  * features to the main termchar structure without proportionally
336  * bloating the terminal emulator's memory footprint unless those
337  * features are in constant use.)
338  */
339 struct buf {
340     unsigned char *data;
341     int len, size;
342 };
343 static void add(struct buf *b, unsigned char c)
344 {
345     if (b->len >= b->size) {
346         b->size = (b->len * 3 / 2) + 512;
347         b->data = sresize(b->data, b->size, unsigned char);
348     }
349     b->data[b->len++] = c;
350 }
351 static int get(struct buf *b)
352 {
353     return b->data[b->len++];
354 }
355 static void makerle(struct buf *b, termline *ldata,
356                     void (*makeliteral)(struct buf *b, termchar *c,
357                                         unsigned long *state))
358 {
359     int hdrpos, hdrsize, n, prevlen, prevpos, thislen, thispos, prev2;
360     termchar *c = ldata->chars;
361     unsigned long state = 0, oldstate;
362
363     n = ldata->cols;
364
365     hdrpos = b->len;
366     hdrsize = 0;
367     add(b, 0);
368     prevlen = prevpos = 0;
369     prev2 = FALSE;
370
371     while (n-- > 0) {
372         thispos = b->len;
373         makeliteral(b, c++, &state);
374         thislen = b->len - thispos;
375         if (thislen == prevlen &&
376             !memcmp(b->data + prevpos, b->data + thispos, thislen)) {
377             /*
378              * This literal precisely matches the previous one.
379              * Turn it into a run if it's worthwhile.
380              * 
381              * With one-byte literals, it costs us two bytes to
382              * encode a run, plus another byte to write the header
383              * to resume normal output; so a three-element run is
384              * neutral, and anything beyond that is unconditionally
385              * worthwhile. With two-byte literals or more, even a
386              * 2-run is a win.
387              */
388             if (thislen > 1 || prev2) {
389                 int runpos, runlen;
390
391                 /*
392                  * It's worth encoding a run. Start at prevpos,
393                  * unless hdrsize==0 in which case we can back up
394                  * another one and start by overwriting hdrpos.
395                  */
396
397                 hdrsize--;             /* remove the literal at prevpos */
398                 if (prev2) {
399                     assert(hdrsize > 0);
400                     hdrsize--;
401                     prevpos -= prevlen;/* and possibly another one */
402                 }
403
404                 if (hdrsize == 0) {
405                     assert(prevpos == hdrpos + 1);
406                     runpos = hdrpos;
407                     b->len = prevpos+prevlen;
408                 } else {
409                     memmove(b->data + prevpos+1, b->data + prevpos, prevlen);
410                     runpos = prevpos;
411                     b->len = prevpos+prevlen+1;
412                     /*
413                      * Terminate the previous run of ordinary
414                      * literals.
415                      */
416                     assert(hdrsize >= 1 && hdrsize <= 128);
417                     b->data[hdrpos] = hdrsize - 1;
418                 }
419
420                 runlen = prev2 ? 3 : 2;
421
422                 while (n > 0 && runlen < 129) {
423                     int tmppos, tmplen;
424                     tmppos = b->len;
425                     oldstate = state;
426                     makeliteral(b, c, &state);
427                     tmplen = b->len - tmppos;
428                     b->len = tmppos;
429                     if (tmplen != thislen ||
430                         memcmp(b->data + runpos+1, b->data + tmppos, tmplen)) {
431                         state = oldstate;
432                         break;         /* run over */
433                     }
434                     n--, c++, runlen++;
435                 }
436
437                 assert(runlen >= 2 && runlen <= 129);
438                 b->data[runpos] = runlen + 0x80 - 2;
439
440                 hdrpos = b->len;
441                 hdrsize = 0;
442                 add(b, 0);
443                 /* And ensure this run doesn't interfere with the next. */
444                 prevlen = prevpos = 0;
445                 prev2 = FALSE;
446
447                 continue;
448             } else {
449                 /*
450                  * Just flag that the previous two literals were
451                  * identical, in case we find a third identical one
452                  * we want to turn into a run.
453                  */
454                 prev2 = TRUE;
455                 prevlen = thislen;
456                 prevpos = thispos;
457             }
458         } else {
459             prev2 = FALSE;
460             prevlen = thislen;
461             prevpos = thispos;
462         }
463
464         /*
465          * This character isn't (yet) part of a run. Add it to
466          * hdrsize.
467          */
468         hdrsize++;
469         if (hdrsize == 128) {
470             b->data[hdrpos] = hdrsize - 1;
471             hdrpos = b->len;
472             hdrsize = 0;
473             add(b, 0);
474             prevlen = prevpos = 0;
475             prev2 = FALSE;
476         }
477     }
478
479     /*
480      * Clean up.
481      */
482     if (hdrsize > 0) {
483         assert(hdrsize <= 128);
484         b->data[hdrpos] = hdrsize - 1;
485     } else {
486         b->len = hdrpos;
487     }
488 }
489 static void makeliteral_chr(struct buf *b, termchar *c, unsigned long *state)
490 {
491     /*
492      * My encoding for characters is UTF-8-like, in that it stores
493      * 7-bit ASCII in one byte and uses high-bit-set bytes as
494      * introducers to indicate a longer sequence. However, it's
495      * unlike UTF-8 in that it doesn't need to be able to
496      * resynchronise, and therefore I don't want to waste two bits
497      * per byte on having recognisable continuation characters.
498      * Also I don't want to rule out the possibility that I may one
499      * day use values 0x80000000-0xFFFFFFFF for interesting
500      * purposes, so unlike UTF-8 I need a full 32-bit range.
501      * Accordingly, here is my encoding:
502      * 
503      * 00000000-0000007F: 0xxxxxxx (but see below)
504      * 00000080-00003FFF: 10xxxxxx xxxxxxxx
505      * 00004000-001FFFFF: 110xxxxx xxxxxxxx xxxxxxxx
506      * 00200000-0FFFFFFF: 1110xxxx xxxxxxxx xxxxxxxx xxxxxxxx
507      * 10000000-FFFFFFFF: 11110ZZZ xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx
508      * 
509      * (`Z' is like `x' but is always going to be zero since the
510      * values I'm encoding don't go above 2^32. In principle the
511      * five-byte form of the encoding could extend to 2^35, and
512      * there could be six-, seven-, eight- and nine-byte forms as
513      * well to allow up to 64-bit values to be encoded. But that's
514      * completely unnecessary for these purposes!)
515      * 
516      * The encoding as written above would be very simple, except
517      * that 7-bit ASCII can occur in several different ways in the
518      * terminal data; sometimes it crops up in the D800 page
519      * (CSET_ASCII) but at other times it's in the 0000 page (real
520      * Unicode). Therefore, this encoding is actually _stateful_:
521      * the one-byte encoding of 00-7F actually indicates `reuse the
522      * upper three bytes of the last character', and to encode an
523      * absolute value of 00-7F you need to use the two-byte form
524      * instead.
525      */
526     if ((c->chr & ~0x7F) == *state) {
527         add(b, (unsigned char)(c->chr & 0x7F));
528     } else if (c->chr < 0x4000) {
529         add(b, (unsigned char)(((c->chr >> 8) & 0x3F) | 0x80));
530         add(b, (unsigned char)(c->chr & 0xFF));
531     } else if (c->chr < 0x200000) {
532         add(b, (unsigned char)(((c->chr >> 16) & 0x1F) | 0xC0));
533         add(b, (unsigned char)((c->chr >> 8) & 0xFF));
534         add(b, (unsigned char)(c->chr & 0xFF));
535     } else if (c->chr < 0x10000000) {
536         add(b, (unsigned char)(((c->chr >> 24) & 0x0F) | 0xE0));
537         add(b, (unsigned char)((c->chr >> 16) & 0xFF));
538         add(b, (unsigned char)((c->chr >> 8) & 0xFF));
539         add(b, (unsigned char)(c->chr & 0xFF));
540     } else {
541         add(b, 0xF0);
542         add(b, (unsigned char)((c->chr >> 24) & 0xFF));
543         add(b, (unsigned char)((c->chr >> 16) & 0xFF));
544         add(b, (unsigned char)((c->chr >> 8) & 0xFF));
545         add(b, (unsigned char)(c->chr & 0xFF));
546     }
547     *state = c->chr & ~0xFF;
548 }
549 static void makeliteral_attr(struct buf *b, termchar *c, unsigned long *state)
550 {
551     /*
552      * My encoding for attributes is 16-bit-granular and assumes
553      * that the top bit of the word is never required. I either
554      * store a two-byte value with the top bit clear (indicating
555      * just that value), or a four-byte value with the top bit set
556      * (indicating the same value with its top bit clear).
557      */
558     if (c->attr < 0x8000) {
559         add(b, (unsigned char)((c->attr >> 8) & 0xFF));
560         add(b, (unsigned char)(c->attr & 0xFF));
561     } else {
562         add(b, (unsigned char)(((c->attr >> 24) & 0x7F) | 0x80));
563         add(b, (unsigned char)((c->attr >> 16) & 0xFF));
564         add(b, (unsigned char)((c->attr >> 8) & 0xFF));
565         add(b, (unsigned char)(c->attr & 0xFF));
566     }
567 }
568 static void makeliteral_cc(struct buf *b, termchar *c, unsigned long *state)
569 {
570     /*
571      * For combining characters, I just encode a bunch of ordinary
572      * chars using makeliteral_chr, and terminate with a \0
573      * character (which I know won't come up as a combining char
574      * itself).
575      * 
576      * I don't use the stateful encoding in makeliteral_chr.
577      */
578     unsigned long zstate;
579     termchar z;
580
581     while (c->cc_next) {
582         c += c->cc_next;
583
584         assert(c->chr != 0);
585
586         zstate = 0;
587         makeliteral_chr(b, c, &zstate);
588     }
589
590     z.chr = 0;
591     zstate = 0;
592     makeliteral_chr(b, &z, &zstate);
593 }
594
595 static termline *decompressline(unsigned char *data, int *bytes_used);
596
597 static unsigned char *compressline(termline *ldata)
598 {
599     struct buf buffer = { NULL, 0, 0 }, *b = &buffer;
600
601     /*
602      * First, store the column count, 7 bits at a time, least
603      * significant `digit' first, with the high bit set on all but
604      * the last.
605      */
606     {
607         int n = ldata->cols;
608         while (n >= 128) {
609             add(b, (unsigned char)((n & 0x7F) | 0x80));
610             n >>= 7;
611         }
612         add(b, (unsigned char)(n));
613     }
614
615     /*
616      * Next store the lattrs; same principle.
617      */
618     {
619         int n = ldata->lattr;
620         while (n >= 128) {
621             add(b, (unsigned char)((n & 0x7F) | 0x80));
622             n >>= 7;
623         }
624         add(b, (unsigned char)(n));
625     }
626
627     /*
628      * Now we store a sequence of separate run-length encoded
629      * fragments, each containing exactly as many symbols as there
630      * are columns in the ldata.
631      * 
632      * All of these have a common basic format:
633      * 
634      *  - a byte 00-7F indicates that X+1 literals follow it
635      *  - a byte 80-FF indicates that a single literal follows it
636      *    and expects to be repeated (X-0x80)+2 times.
637      * 
638      * The format of the `literals' varies between the fragments.
639      */
640     makerle(b, ldata, makeliteral_chr);
641     makerle(b, ldata, makeliteral_attr);
642     makerle(b, ldata, makeliteral_cc);
643
644     /*
645      * Diagnostics: ensure that the compressed data really does
646      * decompress to the right thing.
647      * 
648      * XXX-REMOVE-BEFORE-RELEASE: This is a bit performance-heavy
649      * to be leaving in production code.
650      */
651 #ifndef CHECK_SB_COMPRESSION
652     {
653         int dused;
654         termline *dcl;
655         int i;
656
657 #ifdef DIAGNOSTIC_SB_COMPRESSION
658         for (i = 0; i < b->len; i++) {
659             printf(" %02x ", b->data[i]);
660         }
661         printf("\n");
662 #endif
663
664         dcl = decompressline(b->data, &dused);
665         assert(b->len == dused);
666         assert(ldata->cols == dcl->cols);
667         assert(ldata->lattr == dcl->lattr);
668         for (i = 0; i < ldata->cols; i++)
669             assert(termchars_equal(&ldata->chars[i], &dcl->chars[i]));
670
671 #ifdef DIAGNOSTIC_SB_COMPRESSION
672         printf("%d cols (%d bytes) -> %d bytes (factor of %g)\n",
673                ldata->cols, 4 * ldata->cols, dused,
674                (double)dused / (4 * ldata->cols));
675 #endif
676
677         freeline(dcl);
678     }
679 #endif
680
681     /*
682      * Trim the allocated memory so we don't waste any, and return.
683      */
684     return sresize(b->data, b->len, unsigned char);
685 }
686
687 static void readrle(struct buf *b, termline *ldata,
688                     void (*readliteral)(struct buf *b, termchar *c,
689                                         termline *ldata, unsigned long *state))
690 {
691     int n = 0;
692     unsigned long state = 0;
693
694     while (n < ldata->cols) {
695         int hdr = get(b);
696
697         if (hdr >= 0x80) {
698             /* A run. */
699
700             int pos = b->len, count = hdr + 2 - 0x80;
701             while (count--) {
702                 assert(n < ldata->cols);
703                 b->len = pos;
704                 readliteral(b, ldata->chars + n, ldata, &state);
705                 n++;
706             }
707         } else {
708             /* Just a sequence of consecutive literals. */
709
710             int count = hdr + 1;
711             while (count--) {
712                 assert(n < ldata->cols);
713                 readliteral(b, ldata->chars + n, ldata, &state);
714                 n++;
715             }
716         }
717     }
718
719     assert(n == ldata->cols);
720 }
721 static void readliteral_chr(struct buf *b, termchar *c, termline *ldata,
722                             unsigned long *state)
723 {
724     int byte;
725
726     /*
727      * 00000000-0000007F: 0xxxxxxx
728      * 00000080-00003FFF: 10xxxxxx xxxxxxxx
729      * 00004000-001FFFFF: 110xxxxx xxxxxxxx xxxxxxxx
730      * 00200000-0FFFFFFF: 1110xxxx xxxxxxxx xxxxxxxx xxxxxxxx
731      * 10000000-FFFFFFFF: 11110ZZZ xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx
732      */
733
734     byte = get(b);
735     if (byte < 0x80) {
736         c->chr = byte | *state;
737     } else if (byte < 0xC0) {
738         c->chr = (byte &~ 0xC0) << 8;
739         c->chr |= get(b);
740     } else if (byte < 0xE0) {
741         c->chr = (byte &~ 0xE0) << 16;
742         c->chr |= get(b) << 8;
743         c->chr |= get(b);
744     } else if (byte < 0xF0) {
745         c->chr = (byte &~ 0xF0) << 24;
746         c->chr |= get(b) << 16;
747         c->chr |= get(b) << 8;
748         c->chr |= get(b);
749     } else {
750         assert(byte == 0xF0);
751         c->chr = get(b) << 24;
752         c->chr |= get(b) << 16;
753         c->chr |= get(b) << 8;
754         c->chr |= get(b);
755     }
756     *state = c->chr & ~0xFF;
757 }
758 static void readliteral_attr(struct buf *b, termchar *c, termline *ldata,
759                              unsigned long *state)
760 {
761     int val;
762
763     val = get(b) << 8;
764     val |= get(b);
765
766     if (val >= 0x8000) {
767         val <<= 16;
768         val |= get(b) << 8;
769         val |= get(b);
770     }
771
772     c->attr = val;
773 }
774 static void readliteral_cc(struct buf *b, termchar *c, termline *ldata,
775                            unsigned long *state)
776 {
777     termchar n;
778     unsigned long zstate;
779     int x = c - ldata->chars;
780
781     c->cc_next = 0;
782
783     while (1) {
784         zstate = 0;
785         readliteral_chr(b, &n, ldata, &zstate);
786         if (!n.chr)
787             break;
788         add_cc(ldata, x, n.chr);
789     }
790 }
791
792 static termline *decompressline(unsigned char *data, int *bytes_used)
793 {
794     int ncols, byte, shift;
795     struct buf buffer, *b = &buffer;
796     termline *ldata;
797
798     b->data = data;
799     b->len = 0;
800
801     /*
802      * First read in the column count.
803      */
804     ncols = shift = 0;
805     do {
806         byte = get(b);
807         ncols |= (byte & 0x7F) << shift;
808         shift += 7;
809     } while (byte & 0x80);
810
811     /*
812      * Now create the output termline.
813      */
814     ldata = snew(termline);
815     ldata->chars = snewn(ncols, termchar);
816     ldata->cols = ldata->size = ncols;
817     ldata->temporary = TRUE;
818     ldata->cc_free = 0;
819
820     /*
821      * We must set all the cc pointers in ldata->chars to 0 right
822      * now, so that cc diagnostics that verify the integrity of the
823      * whole line will make sense while we're in the middle of
824      * building it up.
825      */
826     {
827         int i;
828         for (i = 0; i < ldata->cols; i++)
829             ldata->chars[i].cc_next = 0;
830     }
831
832     /*
833      * Now read in the lattr.
834      */
835     ldata->lattr = shift = 0;
836     do {
837         byte = get(b);
838         ldata->lattr |= (byte & 0x7F) << shift;
839         shift += 7;
840     } while (byte & 0x80);
841
842     /*
843      * Now we read in each of the RLE streams in turn.
844      */
845     readrle(b, ldata, readliteral_chr);
846     readrle(b, ldata, readliteral_attr);
847     readrle(b, ldata, readliteral_cc);
848
849     /* Return the number of bytes read, for diagnostic purposes. */
850     if (bytes_used)
851         *bytes_used = b->len;
852
853     return ldata;
854 }
855
856 /*
857  * Resize a line to make it `cols' columns wide.
858  */
859 static void resizeline(Terminal *term, termline *line, int cols)
860 {
861     int i, oldcols;
862
863     if (line->cols != cols) {
864
865         oldcols = line->cols;
866
867         /*
868          * This line is the wrong length, which probably means it
869          * hasn't been accessed since a resize. Resize it now.
870          * 
871          * First, go through all the characters that will be thrown
872          * out in the resize (if we're shrinking the line) and
873          * return their cc lists to the cc free list.
874          */
875         for (i = cols; i < oldcols; i++)
876             clear_cc(line, i);
877
878         /*
879          * If we're shrinking the line, we now bodily move the
880          * entire cc section from where it started to where it now
881          * needs to be. (We have to do this before the resize, so
882          * that the data we're copying is still there. However, if
883          * we're expanding, we have to wait until _after_ the
884          * resize so that the space we're copying into is there.)
885          */
886         if (cols < oldcols)
887             memmove(line->chars + cols, line->chars + oldcols,
888                     (line->size - line->cols) * TSIZE);
889
890         /*
891          * Now do the actual resize, leaving the _same_ amount of
892          * cc space as there was to begin with.
893          */
894         line->size += cols - oldcols;
895         line->chars = sresize(line->chars, line->size, TTYPE);
896         line->cols = cols;
897
898         /*
899          * If we're expanding the line, _now_ we move the cc
900          * section.
901          */
902         if (cols > oldcols)
903             memmove(line->chars + cols, line->chars + oldcols,
904                     (line->size - line->cols) * TSIZE);
905
906         /*
907          * Go through what's left of the original line, and adjust
908          * the first cc_next pointer in each list. (All the
909          * subsequent ones are still valid because they are
910          * relative offsets within the cc block.) Also do the same
911          * to the head of the cc_free list.
912          */
913         for (i = 0; i < oldcols && i < cols; i++)
914             if (line->chars[i].cc_next)
915                 line->chars[i].cc_next += cols - oldcols;
916         if (line->cc_free)
917             line->cc_free += cols - oldcols;
918
919         /*
920          * And finally fill in the new space with erase chars. (We
921          * don't have to worry about cc lists here, because we
922          * _know_ the erase char doesn't have one.)
923          */
924         for (i = oldcols; i < cols; i++)
925             line->chars[i] = term->basic_erase_char;
926
927         cc_check(line);                /* XXX-REMOVE-BEFORE-RELEASE */
928     }
929 }
930
931 /*
932  * Get the number of lines in the scrollback.
933  */
934 static int sblines(Terminal *term)
935 {
936     int sblines = count234(term->scrollback);
937     if (term->cfg.erase_to_scrollback &&
938         term->alt_which && term->alt_screen) {
939             sblines += term->alt_sblines;
940     }
941     return sblines;
942 }
943
944 /*
945  * Retrieve a line of the screen or of the scrollback, according to
946  * whether the y coordinate is non-negative or negative
947  * (respectively).
948  */
949 static termline *lineptr(Terminal *term, int y, int lineno, int screen)
950 {
951     termline *line;
952     tree234 *whichtree;
953     int treeindex;
954
955     if (y >= 0) {
956         whichtree = term->screen;
957         treeindex = y;
958     } else {
959         int altlines = 0;
960
961         assert(!screen);
962
963         if (term->cfg.erase_to_scrollback &&
964             term->alt_which && term->alt_screen) {
965             altlines = term->alt_sblines;
966         }
967         if (y < -altlines) {
968             whichtree = term->scrollback;
969             treeindex = y + altlines + count234(term->scrollback);
970         } else {
971             whichtree = term->alt_screen;
972             treeindex = y + term->alt_sblines;
973             /* treeindex = y + count234(term->alt_screen); */
974         }
975     }
976     if (whichtree == term->scrollback) {
977         unsigned char *cline = index234(whichtree, treeindex);
978         line = decompressline(cline, NULL);
979     } else {
980         line = index234(whichtree, treeindex);
981     }
982
983     /* We assume that we don't screw up and retrieve something out of range. */
984     assert(line != NULL);
985
986     resizeline(term, line, term->cols);
987     /* FIXME: should we sort the compressed scrollback out here? */
988
989     return line;
990 }
991
992 #define lineptr(x) (lineptr)(term,x,__LINE__,FALSE)
993 #define scrlineptr(x) (lineptr)(term,x,__LINE__,TRUE)
994
995 static void term_schedule_tblink(Terminal *term);
996 static void term_schedule_cblink(Terminal *term);
997
998 static void term_timer(void *ctx, long now)
999 {
1000     Terminal *term = (Terminal *)ctx;
1001     int update = FALSE;
1002
1003     if (term->tblink_pending && now - term->next_tblink >= 0) {
1004         term->tblinker = !term->tblinker;
1005         term->tblink_pending = FALSE;
1006         term_schedule_tblink(term);
1007         update = TRUE;
1008     }
1009
1010     if (term->cblink_pending && now - term->next_cblink >= 0) {
1011         term->cblinker = !term->cblinker;
1012         term->cblink_pending = FALSE;
1013         term_schedule_cblink(term);
1014         update = TRUE;
1015     }
1016
1017     if (term->in_vbell && now - term->vbell_end >= 0) {
1018         term->in_vbell = FALSE;
1019         update = TRUE;
1020     }
1021
1022     if (update ||
1023         (term->window_update_pending && now - term->next_update >= 0))
1024         term_update(term);
1025 }
1026
1027 /*
1028  * Call this whenever the terminal window state changes, to queue
1029  * an update.
1030  */
1031 static void seen_disp_event(Terminal *term)
1032 {
1033     term->seen_disp_event = TRUE;      /* for scrollback-reset-on-activity */
1034     if (!term->window_update_pending) {
1035         term->window_update_pending = TRUE;
1036         term->next_update = schedule_timer(UPDATE_DELAY, term_timer, term);
1037     }
1038 }
1039
1040 /*
1041  * Call when the terminal's blinking-text settings change, or when
1042  * a text blink has just occurred.
1043  */
1044 static void term_schedule_tblink(Terminal *term)
1045 {
1046     if (term->blink_is_real) {
1047         if (!term->tblink_pending)
1048             term->next_tblink = schedule_timer(TBLINK_DELAY, term_timer, term);
1049         term->tblink_pending = TRUE;
1050     } else {
1051         term->tblinker = 1;            /* reset when not in use */
1052         term->tblink_pending = FALSE;
1053     }
1054 }
1055
1056 /*
1057  * Likewise with cursor blinks.
1058  */
1059 static void term_schedule_cblink(Terminal *term)
1060 {
1061     if (term->cfg.blink_cur && term->has_focus) {
1062         if (!term->cblink_pending)
1063             term->next_cblink = schedule_timer(CBLINK_DELAY, term_timer, term);
1064         term->cblink_pending = TRUE;
1065     } else {
1066         term->cblinker = 1;            /* reset when not in use */
1067         term->cblink_pending = FALSE;
1068     }
1069 }
1070
1071 /*
1072  * Call to reset cursor blinking on new output.
1073  */
1074 static void term_reset_cblink(Terminal *term)
1075 {
1076     seen_disp_event(term);
1077     term->cblinker = 1;
1078     term->cblink_pending = FALSE;
1079     term_schedule_cblink(term);
1080 }
1081
1082 /*
1083  * Call to begin a visual bell.
1084  */
1085 static void term_schedule_vbell(Terminal *term, int already_started,
1086                                 long startpoint)
1087 {
1088     long ticks_already_gone;
1089
1090     if (already_started)
1091         ticks_already_gone = GETTICKCOUNT() - startpoint;
1092     else
1093         ticks_already_gone = 0;
1094
1095     if (ticks_already_gone < VBELL_DELAY) {
1096         term->in_vbell = TRUE;
1097         term->vbell_end = schedule_timer(VBELL_DELAY - ticks_already_gone,
1098                                          term_timer, term);
1099     } else {
1100         term->in_vbell = FALSE;
1101     }
1102 }
1103
1104 /*
1105  * Set up power-on settings for the terminal.
1106  */
1107 static void power_on(Terminal *term)
1108 {
1109     term->curs.x = term->curs.y = 0;
1110     term->alt_x = term->alt_y = 0;
1111     term->savecurs.x = term->savecurs.y = 0;
1112     term->alt_t = term->marg_t = 0;
1113     if (term->rows != -1)
1114         term->alt_b = term->marg_b = term->rows - 1;
1115     else
1116         term->alt_b = term->marg_b = 0;
1117     if (term->cols != -1) {
1118         int i;
1119         for (i = 0; i < term->cols; i++)
1120             term->tabs[i] = (i % 8 == 0 ? TRUE : FALSE);
1121     }
1122     term->alt_om = term->dec_om = term->cfg.dec_om;
1123     term->alt_ins = term->insert = FALSE;
1124     term->alt_wnext = term->wrapnext = term->save_wnext = FALSE;
1125     term->alt_wrap = term->wrap = term->cfg.wrap_mode;
1126     term->alt_cset = term->cset = term->save_cset = 0;
1127     term->alt_utf = term->utf = term->save_utf = 0;
1128     term->utf_state = 0;
1129     term->alt_sco_acs = term->sco_acs = term->save_sco_acs = 0;
1130     term->cset_attr[0] = term->cset_attr[1] = term->save_csattr = CSET_ASCII;
1131     term->rvideo = 0;
1132     term->in_vbell = FALSE;
1133     term->cursor_on = 1;
1134     term->big_cursor = 0;
1135     term->default_attr = term->save_attr = term->curr_attr = ATTR_DEFAULT;
1136     term->term_editing = term->term_echoing = FALSE;
1137     term->app_cursor_keys = term->cfg.app_cursor;
1138     term->app_keypad_keys = term->cfg.app_keypad;
1139     term->use_bce = term->cfg.bce;
1140     term->blink_is_real = term->cfg.blinktext;
1141     term->erase_char = term->basic_erase_char;
1142     term->alt_which = 0;
1143     term_print_finish(term);
1144     {
1145         int i;
1146         for (i = 0; i < 256; i++)
1147             term->wordness[i] = term->cfg.wordness[i];
1148     }
1149     if (term->screen) {
1150         swap_screen(term, 1, FALSE, FALSE);
1151         erase_lots(term, FALSE, TRUE, TRUE);
1152         swap_screen(term, 0, FALSE, FALSE);
1153         erase_lots(term, FALSE, TRUE, TRUE);
1154     }
1155     term_schedule_tblink(term);
1156     term_schedule_cblink(term);
1157 }
1158
1159 /*
1160  * Force a screen update.
1161  */
1162 void term_update(Terminal *term)
1163 {
1164     Context ctx;
1165
1166     term->window_update_pending = FALSE;
1167
1168     ctx = get_ctx(term->frontend);
1169     if (ctx) {
1170         int need_sbar_update = term->seen_disp_event;
1171         if (term->seen_disp_event && term->cfg.scroll_on_disp) {
1172             term->disptop = 0;         /* return to main screen */
1173             term->seen_disp_event = 0;
1174             need_sbar_update = TRUE;
1175         }
1176
1177         if (need_sbar_update)
1178             update_sbar(term);
1179         do_paint(term, ctx, TRUE);
1180         sys_cursor(term->frontend, term->curs.x, term->curs.y - term->disptop);
1181         free_ctx(ctx);
1182     }
1183 }
1184
1185 /*
1186  * Called from front end when a keypress occurs, to trigger
1187  * anything magical that needs to happen in that situation.
1188  */
1189 void term_seen_key_event(Terminal *term)
1190 {
1191     /*
1192      * On any keypress, clear the bell overload mechanism
1193      * completely, on the grounds that large numbers of
1194      * beeps coming from deliberate key action are likely
1195      * to be intended (e.g. beeps from filename completion
1196      * blocking repeatedly).
1197      */
1198     term->beep_overloaded = FALSE;
1199     while (term->beephead) {
1200         struct beeptime *tmp = term->beephead;
1201         term->beephead = tmp->next;
1202         sfree(tmp);
1203     }
1204     term->beeptail = NULL;
1205     term->nbeeps = 0;
1206
1207     /*
1208      * Reset the scrollback on keypress, if we're doing that.
1209      */
1210     if (term->cfg.scroll_on_key) {
1211         term->disptop = 0;             /* return to main screen */
1212         seen_disp_event(term);
1213     }
1214 }
1215
1216 /*
1217  * Same as power_on(), but an external function.
1218  */
1219 void term_pwron(Terminal *term)
1220 {
1221     power_on(term);
1222     if (term->ldisc)                   /* cause ldisc to notice changes */
1223         ldisc_send(term->ldisc, NULL, 0, 0);
1224     term->disptop = 0;
1225     deselect(term);
1226     term_update(term);
1227 }
1228
1229 static void set_erase_char(Terminal *term)
1230 {
1231     term->erase_char = term->basic_erase_char;
1232     if (term->use_bce)
1233         term->erase_char.attr = (term->curr_attr &
1234                                  (ATTR_FGMASK | ATTR_BGMASK));
1235 }
1236
1237 /*
1238  * When the user reconfigures us, we need to check the forbidden-
1239  * alternate-screen config option, disable raw mouse mode if the
1240  * user has disabled mouse reporting, and abandon a print job if
1241  * the user has disabled printing.
1242  */
1243 void term_reconfig(Terminal *term, Config *cfg)
1244 {
1245     /*
1246      * Before adopting the new config, check all those terminal
1247      * settings which control power-on defaults; and if they've
1248      * changed, we will modify the current state as well as the
1249      * default one. The full list is: Auto wrap mode, DEC Origin
1250      * Mode, BCE, blinking text, character classes.
1251      */
1252     int reset_wrap, reset_decom, reset_bce, reset_tblink, reset_charclass;
1253     int i;
1254
1255     reset_wrap = (term->cfg.wrap_mode != cfg->wrap_mode);
1256     reset_decom = (term->cfg.dec_om != cfg->dec_om);
1257     reset_bce = (term->cfg.bce != cfg->bce);
1258     reset_tblink = (term->cfg.blinktext != cfg->blinktext);
1259     reset_charclass = 0;
1260     for (i = 0; i < lenof(term->cfg.wordness); i++)
1261         if (term->cfg.wordness[i] != cfg->wordness[i])
1262             reset_charclass = 1;
1263
1264     /*
1265      * If the bidi or shaping settings have changed, flush the bidi
1266      * cache completely.
1267      */
1268     if (term->cfg.arabicshaping != cfg->arabicshaping ||
1269         term->cfg.bidi != cfg->bidi) {
1270         for (i = 0; i < term->bidi_cache_size; i++) {
1271             sfree(term->pre_bidi_cache[i].chars);
1272             sfree(term->post_bidi_cache[i].chars);
1273             term->pre_bidi_cache[i].width = -1;
1274             term->pre_bidi_cache[i].chars = NULL;
1275             term->post_bidi_cache[i].width = -1;
1276             term->post_bidi_cache[i].chars = NULL;
1277         }
1278     }
1279
1280     term->cfg = *cfg;                  /* STRUCTURE COPY */
1281
1282     if (reset_wrap)
1283         term->alt_wrap = term->wrap = term->cfg.wrap_mode;
1284     if (reset_decom)
1285         term->alt_om = term->dec_om = term->cfg.dec_om;
1286     if (reset_bce) {
1287         term->use_bce = term->cfg.bce;
1288         set_erase_char(term);
1289     }
1290     if (reset_tblink) {
1291         term->blink_is_real = term->cfg.blinktext;
1292     }
1293     if (reset_charclass)
1294         for (i = 0; i < 256; i++)
1295             term->wordness[i] = term->cfg.wordness[i];
1296
1297     if (term->cfg.no_alt_screen)
1298         swap_screen(term, 0, FALSE, FALSE);
1299     if (term->cfg.no_mouse_rep) {
1300         term->xterm_mouse = 0;
1301         set_raw_mouse_mode(term->frontend, 0);
1302     }
1303     if (term->cfg.no_remote_charset) {
1304         term->cset_attr[0] = term->cset_attr[1] = CSET_ASCII;
1305         term->sco_acs = term->alt_sco_acs = 0;
1306         term->utf = 0;
1307     }
1308     if (!*term->cfg.printer) {
1309         term_print_finish(term);
1310     }
1311     term_schedule_tblink(term);
1312     term_schedule_cblink(term);
1313 }
1314
1315 /*
1316  * Clear the scrollback.
1317  */
1318 void term_clrsb(Terminal *term)
1319 {
1320     termline *line;
1321     term->disptop = 0;
1322     while ((line = delpos234(term->scrollback, 0)) != NULL) {
1323         sfree(line);            /* this is compressed data, not a termline */
1324     }
1325     term->tempsblines = 0;
1326     term->alt_sblines = 0;
1327     update_sbar(term);
1328 }
1329
1330 /*
1331  * Initialise the terminal.
1332  */
1333 Terminal *term_init(Config *mycfg, struct unicode_data *ucsdata,
1334                     void *frontend)
1335 {
1336     Terminal *term;
1337
1338     /*
1339      * Allocate a new Terminal structure and initialise the fields
1340      * that need it.
1341      */
1342     term = snew(Terminal);
1343     term->frontend = frontend;
1344     term->ucsdata = ucsdata;
1345     term->cfg = *mycfg;                /* STRUCTURE COPY */
1346     term->logctx = NULL;
1347     term->compatibility_level = TM_PUTTY;
1348     strcpy(term->id_string, "\033[?6c");
1349     term->cblink_pending = term->tblink_pending = FALSE;
1350     term->paste_buffer = NULL;
1351     term->paste_len = 0;
1352     term->last_paste = 0;
1353     bufchain_init(&term->inbuf);
1354     bufchain_init(&term->printer_buf);
1355     term->printing = term->only_printing = FALSE;
1356     term->print_job = NULL;
1357     term->vt52_mode = FALSE;
1358     term->cr_lf_return = FALSE;
1359     term->seen_disp_event = FALSE;
1360     term->xterm_mouse = term->mouse_is_down = FALSE;
1361     term->reset_132 = FALSE;
1362     term->cblinker = term->tblinker = 0;
1363     term->has_focus = 1;
1364     term->repeat_off = FALSE;
1365     term->termstate = TOPLEVEL;
1366     term->selstate = NO_SELECTION;
1367     term->curstype = 0;
1368
1369     term->screen = term->alt_screen = term->scrollback = NULL;
1370     term->tempsblines = 0;
1371     term->alt_sblines = 0;
1372     term->disptop = 0;
1373     term->disptext = NULL;
1374     term->dispcursx = term->dispcursy = -1;
1375     term->tabs = NULL;
1376     deselect(term);
1377     term->rows = term->cols = -1;
1378     power_on(term);
1379     term->beephead = term->beeptail = NULL;
1380 #ifdef OPTIMISE_SCROLL
1381     term->scrollhead = term->scrolltail = NULL;
1382 #endif /* OPTIMISE_SCROLL */
1383     term->nbeeps = 0;
1384     term->lastbeep = FALSE;
1385     term->beep_overloaded = FALSE;
1386     term->attr_mask = 0xffffffff;
1387     term->resize_fn = NULL;
1388     term->resize_ctx = NULL;
1389     term->in_term_out = FALSE;
1390     term->ltemp = NULL;
1391     term->ltemp_size = 0;
1392     term->wcFrom = NULL;
1393     term->wcTo = NULL;
1394     term->wcFromTo_size = 0;
1395
1396     term->window_update_pending = FALSE;
1397
1398     term->bidi_cache_size = 0;
1399     term->pre_bidi_cache = term->post_bidi_cache = NULL;
1400
1401     /* FULL-TERMCHAR */
1402     term->basic_erase_char.chr = CSET_ASCII | ' ';
1403     term->basic_erase_char.attr = ATTR_DEFAULT;
1404     term->basic_erase_char.cc_next = 0;
1405     term->erase_char = term->basic_erase_char;
1406
1407     return term;
1408 }
1409
1410 void term_free(Terminal *term)
1411 {
1412     termline *line;
1413     struct beeptime *beep;
1414     int i;
1415
1416     while ((line = delpos234(term->scrollback, 0)) != NULL)
1417         sfree(line);                   /* compressed data, not a termline */
1418     freetree234(term->scrollback);
1419     while ((line = delpos234(term->screen, 0)) != NULL)
1420         freeline(line);
1421     freetree234(term->screen);
1422     while ((line = delpos234(term->alt_screen, 0)) != NULL)
1423         freeline(line);
1424     freetree234(term->alt_screen);
1425     if (term->disptext) {
1426         for (i = 0; i < term->rows; i++)
1427             freeline(term->disptext[i]);
1428     }
1429     sfree(term->disptext);
1430     while (term->beephead) {
1431         beep = term->beephead;
1432         term->beephead = beep->next;
1433         sfree(beep);
1434     }
1435     bufchain_clear(&term->inbuf);
1436     if(term->print_job)
1437         printer_finish_job(term->print_job);
1438     bufchain_clear(&term->printer_buf);
1439     sfree(term->paste_buffer);
1440     sfree(term->ltemp);
1441     sfree(term->wcFrom);
1442     sfree(term->wcTo);
1443
1444     for (i = 0; i < term->bidi_cache_size; i++) {
1445         sfree(term->pre_bidi_cache[i].chars);
1446         sfree(term->post_bidi_cache[i].chars);
1447     }
1448     sfree(term->pre_bidi_cache);
1449     sfree(term->post_bidi_cache);
1450
1451     expire_timer_context(term);
1452
1453     sfree(term);
1454 }
1455
1456 /*
1457  * Set up the terminal for a given size.
1458  */
1459 void term_size(Terminal *term, int newrows, int newcols, int newsavelines)
1460 {
1461     tree234 *newalt;
1462     termline **newdisp, *line;
1463     int i, j, oldrows = term->rows;
1464     int sblen;
1465     int save_alt_which = term->alt_which;
1466
1467     if (newrows == term->rows && newcols == term->cols &&
1468         newsavelines == term->savelines)
1469         return;                        /* nothing to do */
1470
1471     deselect(term);
1472     swap_screen(term, 0, FALSE, FALSE);
1473
1474     term->alt_t = term->marg_t = 0;
1475     term->alt_b = term->marg_b = newrows - 1;
1476
1477     if (term->rows == -1) {
1478         term->scrollback = newtree234(NULL);
1479         term->screen = newtree234(NULL);
1480         term->tempsblines = 0;
1481         term->rows = 0;
1482     }
1483
1484     /*
1485      * Resize the screen and scrollback. We only need to shift
1486      * lines around within our data structures, because lineptr()
1487      * will take care of resizing each individual line if
1488      * necessary. So:
1489      * 
1490      *  - If the new screen is longer, we shunt lines in from temporary
1491      *    scrollback if possible, otherwise we add new blank lines at
1492      *    the bottom.
1493      *
1494      *  - If the new screen is shorter, we remove any blank lines at
1495      *    the bottom if possible, otherwise shunt lines above the cursor
1496      *    to scrollback if possible, otherwise delete lines below the
1497      *    cursor.
1498      * 
1499      *  - Then, if the new scrollback length is less than the
1500      *    amount of scrollback we actually have, we must throw some
1501      *    away.
1502      */
1503     sblen = count234(term->scrollback);
1504     /* Do this loop to expand the screen if newrows > rows */
1505     assert(term->rows == count234(term->screen));
1506     while (term->rows < newrows) {
1507         if (term->tempsblines > 0) {
1508             unsigned char *cline;
1509             /* Insert a line from the scrollback at the top of the screen. */
1510             assert(sblen >= term->tempsblines);
1511             cline = delpos234(term->scrollback, --sblen);
1512             line = decompressline(cline, NULL);
1513             sfree(cline);
1514             line->temporary = FALSE;   /* reconstituted line is now real */
1515             term->tempsblines -= 1;
1516             addpos234(term->screen, line, 0);
1517             term->curs.y += 1;
1518             term->savecurs.y += 1;
1519         } else {
1520             /* Add a new blank line at the bottom of the screen. */
1521             line = newline(term, newcols, FALSE);
1522             addpos234(term->screen, line, count234(term->screen));
1523         }
1524         term->rows += 1;
1525     }
1526     /* Do this loop to shrink the screen if newrows < rows */
1527     while (term->rows > newrows) {
1528         if (term->curs.y < term->rows - 1) {
1529             /* delete bottom row, unless it contains the cursor */
1530             sfree(delpos234(term->screen, term->rows - 1));
1531         } else {
1532             /* push top row to scrollback */
1533             line = delpos234(term->screen, 0);
1534             addpos234(term->scrollback, compressline(line), sblen++);
1535             freeline(line);
1536             term->tempsblines += 1;
1537             term->curs.y -= 1;
1538             term->savecurs.y -= 1;
1539         }
1540         term->rows -= 1;
1541     }
1542     assert(term->rows == newrows);
1543     assert(count234(term->screen) == newrows);
1544
1545     /* Delete any excess lines from the scrollback. */
1546     while (sblen > newsavelines) {
1547         line = delpos234(term->scrollback, 0);
1548         sfree(line);
1549         sblen--;
1550     }
1551     if (sblen < term->tempsblines)
1552         term->tempsblines = sblen;
1553     assert(count234(term->scrollback) <= newsavelines);
1554     assert(count234(term->scrollback) >= term->tempsblines);
1555     term->disptop = 0;
1556
1557     /* Make a new displayed text buffer. */
1558     newdisp = snewn(newrows, termline *);
1559     for (i = 0; i < newrows; i++) {
1560         newdisp[i] = newline(term, newcols, FALSE);
1561         for (j = 0; j < newcols; j++)
1562             newdisp[i]->chars[j].attr = ATTR_INVALID;
1563     }
1564     if (term->disptext) {
1565         for (i = 0; i < oldrows; i++)
1566             freeline(term->disptext[i]);
1567     }
1568     sfree(term->disptext);
1569     term->disptext = newdisp;
1570     term->dispcursx = term->dispcursy = -1;
1571
1572     /* Make a new alternate screen. */
1573     newalt = newtree234(NULL);
1574     for (i = 0; i < newrows; i++) {
1575         line = newline(term, newcols, TRUE);
1576         addpos234(newalt, line, i);
1577     }
1578     if (term->alt_screen) {
1579         while (NULL != (line = delpos234(term->alt_screen, 0)))
1580             freeline(line);
1581         freetree234(term->alt_screen);
1582     }
1583     term->alt_screen = newalt;
1584     term->alt_sblines = 0;
1585
1586     term->tabs = sresize(term->tabs, newcols, unsigned char);
1587     {
1588         int i;
1589         for (i = (term->cols > 0 ? term->cols : 0); i < newcols; i++)
1590             term->tabs[i] = (i % 8 == 0 ? TRUE : FALSE);
1591     }
1592
1593     /* Check that the cursor positions are still valid. */
1594     if (term->savecurs.y < 0)
1595         term->savecurs.y = 0;
1596     if (term->savecurs.y >= newrows)
1597         term->savecurs.y = newrows - 1;
1598     if (term->curs.y < 0)
1599         term->curs.y = 0;
1600     if (term->curs.y >= newrows)
1601         term->curs.y = newrows - 1;
1602     if (term->curs.x >= newcols)
1603         term->curs.x = newcols - 1;
1604     term->alt_x = term->alt_y = 0;
1605     term->wrapnext = term->alt_wnext = FALSE;
1606
1607     term->rows = newrows;
1608     term->cols = newcols;
1609     term->savelines = newsavelines;
1610
1611     swap_screen(term, save_alt_which, FALSE, FALSE);
1612
1613     update_sbar(term);
1614     term_update(term);
1615     if (term->resize_fn)
1616         term->resize_fn(term->resize_ctx, term->cols, term->rows);
1617 }
1618
1619 /*
1620  * Hand a function and context pointer to the terminal which it can
1621  * use to notify a back end of resizes.
1622  */
1623 void term_provide_resize_fn(Terminal *term,
1624                             void (*resize_fn)(void *, int, int),
1625                             void *resize_ctx)
1626 {
1627     term->resize_fn = resize_fn;
1628     term->resize_ctx = resize_ctx;
1629     if (term->cols > 0 && term->rows > 0)
1630         resize_fn(resize_ctx, term->cols, term->rows);
1631 }
1632
1633 /* Find the bottom line on the screen that has any content.
1634  * If only the top line has content, returns 0.
1635  * If no lines have content, return -1.
1636  */ 
1637 static int find_last_nonempty_line(Terminal * term, tree234 * screen)
1638 {
1639     int i;
1640     for (i = count234(screen) - 1; i >= 0; i--) {
1641         termline *line = index234(screen, i);
1642         int j;
1643         for (j = 0; j < line->cols; j++)
1644             if (!termchars_equal(&line->chars[j], &term->erase_char))
1645                 break;
1646         if (j != line->cols) break;
1647     }
1648     return i;
1649 }
1650
1651 /*
1652  * Swap screens. If `reset' is TRUE and we have been asked to
1653  * switch to the alternate screen, we must bring most of its
1654  * configuration from the main screen and erase the contents of the
1655  * alternate screen completely. (This is even true if we're already
1656  * on it! Blame xterm.)
1657  */
1658 static void swap_screen(Terminal *term, int which, int reset, int keep_cur_pos)
1659 {
1660     int t;
1661     tree234 *ttr;
1662
1663     if (!which)
1664         reset = FALSE;                 /* do no weird resetting if which==0 */
1665
1666     if (which != term->alt_which) {
1667         term->alt_which = which;
1668
1669         ttr = term->alt_screen;
1670         term->alt_screen = term->screen;
1671         term->screen = ttr;
1672         term->alt_sblines = find_last_nonempty_line(term, term->alt_screen) + 1;
1673         t = term->curs.x;
1674         if (!reset && !keep_cur_pos)
1675             term->curs.x = term->alt_x;
1676         term->alt_x = t;
1677         t = term->curs.y;
1678         if (!reset && !keep_cur_pos)
1679             term->curs.y = term->alt_y;
1680         term->alt_y = t;
1681         t = term->marg_t;
1682         if (!reset) term->marg_t = term->alt_t;
1683         term->alt_t = t;
1684         t = term->marg_b;
1685         if (!reset) term->marg_b = term->alt_b;
1686         term->alt_b = t;
1687         t = term->dec_om;
1688         if (!reset) term->dec_om = term->alt_om;
1689         term->alt_om = t;
1690         t = term->wrap;
1691         if (!reset) term->wrap = term->alt_wrap;
1692         term->alt_wrap = t;
1693         t = term->wrapnext;
1694         if (!reset) term->wrapnext = term->alt_wnext;
1695         term->alt_wnext = t;
1696         t = term->insert;
1697         if (!reset) term->insert = term->alt_ins;
1698         term->alt_ins = t;
1699         t = term->cset;
1700         if (!reset) term->cset = term->alt_cset;
1701         term->alt_cset = t;
1702         t = term->utf;
1703         if (!reset) term->utf = term->alt_utf;
1704         term->alt_utf = t;
1705         t = term->sco_acs;
1706         if (!reset) term->sco_acs = term->alt_sco_acs;
1707         term->alt_sco_acs = t;
1708     }
1709
1710     if (reset && term->screen) {
1711         /*
1712          * Yes, this _is_ supposed to honour background-colour-erase.
1713          */
1714         erase_lots(term, FALSE, TRUE, TRUE);
1715     }
1716 }
1717
1718 /*
1719  * Update the scroll bar.
1720  */
1721 static void update_sbar(Terminal *term)
1722 {
1723     int nscroll = sblines(term);
1724     set_sbar(term->frontend, nscroll + term->rows,
1725              nscroll + term->disptop, term->rows);
1726 }
1727
1728 /*
1729  * Check whether the region bounded by the two pointers intersects
1730  * the scroll region, and de-select the on-screen selection if so.
1731  */
1732 static void check_selection(Terminal *term, pos from, pos to)
1733 {
1734     if (poslt(from, term->selend) && poslt(term->selstart, to))
1735         deselect(term);
1736 }
1737
1738 /*
1739  * Scroll the screen. (`lines' is +ve for scrolling forward, -ve
1740  * for backward.) `sb' is TRUE if the scrolling is permitted to
1741  * affect the scrollback buffer.
1742  */
1743 static void scroll(Terminal *term, int topline, int botline, int lines, int sb)
1744 {
1745     termline *line;
1746     int i, seltop, olddisptop, shift;
1747
1748     if (topline != 0 || term->alt_which != 0)
1749         sb = FALSE;
1750
1751     olddisptop = term->disptop;
1752     shift = lines;
1753     if (lines < 0) {
1754         while (lines < 0) {
1755             line = delpos234(term->screen, botline);
1756             resizeline(term, line, term->cols);
1757             for (i = 0; i < term->cols; i++)
1758                 copy_termchar(line, i, &term->erase_char);
1759             line->lattr = LATTR_NORM;
1760             addpos234(term->screen, line, topline);
1761
1762             if (term->selstart.y >= topline && term->selstart.y <= botline) {
1763                 term->selstart.y++;
1764                 if (term->selstart.y > botline) {
1765                     term->selstart.y = botline + 1;
1766                     term->selstart.x = 0;
1767                 }
1768             }
1769             if (term->selend.y >= topline && term->selend.y <= botline) {
1770                 term->selend.y++;
1771                 if (term->selend.y > botline) {
1772                     term->selend.y = botline + 1;
1773                     term->selend.x = 0;
1774                 }
1775             }
1776
1777             lines++;
1778         }
1779     } else {
1780         while (lines > 0) {
1781             line = delpos234(term->screen, topline);
1782             cc_check(line);            /* XXX-REMOVE-BEFORE-RELEASE */
1783             if (sb && term->savelines > 0) {
1784                 int sblen = count234(term->scrollback);
1785                 /*
1786                  * We must add this line to the scrollback. We'll
1787                  * remove a line from the top of the scrollback if
1788                  * the scrollback is full.
1789                  */
1790                 if (sblen == term->savelines) {
1791                     unsigned char *cline;
1792
1793                     sblen--;
1794                     cline = delpos234(term->scrollback, 0);
1795                     sfree(cline);
1796                 } else
1797                     term->tempsblines += 1;
1798
1799                 addpos234(term->scrollback, compressline(line), sblen);
1800
1801                 /* now `line' itself can be reused as the bottom line */
1802
1803                 /*
1804                  * If the user is currently looking at part of the
1805                  * scrollback, and they haven't enabled any options
1806                  * that are going to reset the scrollback as a
1807                  * result of this movement, then the chances are
1808                  * they'd like to keep looking at the same line. So
1809                  * we move their viewpoint at the same rate as the
1810                  * scroll, at least until their viewpoint hits the
1811                  * top end of the scrollback buffer, at which point
1812                  * we don't have the choice any more.
1813                  * 
1814                  * Thanks to Jan Holmen Holsten for the idea and
1815                  * initial implementation.
1816                  */
1817                 if (term->disptop > -term->savelines && term->disptop < 0)
1818                     term->disptop--;
1819             }
1820             resizeline(term, line, term->cols);
1821             for (i = 0; i < term->cols; i++)
1822                 copy_termchar(line, i, &term->erase_char);
1823             line->lattr = LATTR_NORM;
1824             addpos234(term->screen, line, botline);
1825
1826             /*
1827              * If the selection endpoints move into the scrollback,
1828              * we keep them moving until they hit the top. However,
1829              * of course, if the line _hasn't_ moved into the
1830              * scrollback then we don't do this, and cut them off
1831              * at the top of the scroll region.
1832              * 
1833              * This applies to selstart and selend (for an existing
1834              * selection), and also selanchor (for one being
1835              * selected as we speak).
1836              */
1837             seltop = sb ? -term->savelines : topline;
1838
1839             if (term->selstate != NO_SELECTION) {
1840                 if (term->selstart.y >= seltop &&
1841                     term->selstart.y <= botline) {
1842                     term->selstart.y--;
1843                     if (term->selstart.y < seltop) {
1844                         term->selstart.y = seltop;
1845                         term->selstart.x = 0;
1846                     }
1847                 }
1848                 if (term->selend.y >= seltop && term->selend.y <= botline) {
1849                     term->selend.y--;
1850                     if (term->selend.y < seltop) {
1851                         term->selend.y = seltop;
1852                         term->selend.x = 0;
1853                     }
1854                 }
1855                 if (term->selanchor.y >= seltop &&
1856                     term->selanchor.y <= botline) {
1857                     term->selanchor.y--;
1858                     if (term->selanchor.y < seltop) {
1859                         term->selanchor.y = seltop;
1860                         term->selanchor.x = 0;
1861                     }
1862                 }
1863             }
1864
1865             lines--;
1866         }
1867     }
1868 #ifdef OPTIMISE_SCROLL
1869     shift += term->disptop - olddisptop;
1870     if (shift < term->rows && shift > -term->rows && shift != 0)
1871         scroll_display(term, topline, botline, shift);
1872 #endif /* OPTIMISE_SCROLL */
1873 }
1874
1875 #ifdef OPTIMISE_SCROLL
1876 /*
1877  * Add a scroll of a region on the screen into the pending scroll list.
1878  * `lines' is +ve for scrolling forward, -ve for backward.
1879  *
1880  * If the scroll is on the same area as the last scroll in the list,
1881  * merge them.
1882  */
1883 static void save_scroll(Terminal *term, int topline, int botline, int lines)
1884 {
1885     struct scrollregion *newscroll;
1886     if (term->scrolltail &&
1887         term->scrolltail->topline == topline && 
1888         term->scrolltail->botline == botline) {
1889         term->scrolltail->lines += lines;
1890     } else {
1891         newscroll = snew(struct scrollregion);
1892         newscroll->topline = topline;
1893         newscroll->botline = botline;
1894         newscroll->lines = lines;
1895         newscroll->next = NULL;
1896
1897         if (!term->scrollhead)
1898             term->scrollhead = newscroll;
1899         else
1900             term->scrolltail->next = newscroll;
1901         term->scrolltail = newscroll;
1902     }
1903 }
1904
1905 /*
1906  * Scroll the physical display, and our conception of it in disptext.
1907  */
1908 static void scroll_display(Terminal *term, int topline, int botline, int lines)
1909 {
1910     int distance, nlines, i, j;
1911
1912     distance = lines > 0 ? lines : -lines;
1913     nlines = botline - topline + 1 - distance;
1914     if (lines > 0) {
1915         for (i = 0; i < nlines; i++)
1916             for (j = 0; j < term->cols; j++)
1917                 copy_termchar(term->disptext[start+i], j,
1918                               term->disptext[start+i+distance]->chars+j);
1919         if (term->dispcursy >= 0 &&
1920             term->dispcursy >= topline + distance &&
1921             term->dispcursy < topline + distance + nlines)
1922             term->dispcursy -= distance;
1923         for (i = 0; i < distance; i++)
1924             for (j = 0; j < term->cols; j++)
1925                 term->disptext[start+nlines+i]->chars[j].attr |= ATTR_INVALID;
1926     } else {
1927         for (i = nlines; i-- ;)
1928             for (j = 0; j < term->cols; j++)
1929                 copy_termchar(term->disptext[start+i+distance], j,
1930                               term->disptext[start+i]->chars+j);
1931         if (term->dispcursy >= 0 &&
1932             term->dispcursy >= topline &&
1933             term->dispcursy < topline + nlines)
1934             term->dispcursy += distance;
1935         for (i = 0; i < distance; i++)
1936             for (j = 0; j < term->cols; j++)
1937                 term->disptext[start+i]->chars[j].attr |= ATTR_INVALID;
1938     }
1939     save_scroll(term, topline, botline, lines);
1940 }
1941 #endif /* OPTIMISE_SCROLL */
1942
1943 /*
1944  * Move the cursor to a given position, clipping at boundaries. We
1945  * may or may not want to clip at the scroll margin: marg_clip is 0
1946  * not to, 1 to disallow _passing_ the margins, and 2 to disallow
1947  * even _being_ outside the margins.
1948  */
1949 static void move(Terminal *term, int x, int y, int marg_clip)
1950 {
1951     if (x < 0)
1952         x = 0;
1953     if (x >= term->cols)
1954         x = term->cols - 1;
1955     if (marg_clip) {
1956         if ((term->curs.y >= term->marg_t || marg_clip == 2) &&
1957             y < term->marg_t)
1958             y = term->marg_t;
1959         if ((term->curs.y <= term->marg_b || marg_clip == 2) &&
1960             y > term->marg_b)
1961             y = term->marg_b;
1962     }
1963     if (y < 0)
1964         y = 0;
1965     if (y >= term->rows)
1966         y = term->rows - 1;
1967     term->curs.x = x;
1968     term->curs.y = y;
1969     term->wrapnext = FALSE;
1970 }
1971
1972 /*
1973  * Save or restore the cursor and SGR mode.
1974  */
1975 static void save_cursor(Terminal *term, int save)
1976 {
1977     if (save) {
1978         term->savecurs = term->curs;
1979         term->save_attr = term->curr_attr;
1980         term->save_cset = term->cset;
1981         term->save_utf = term->utf;
1982         term->save_wnext = term->wrapnext;
1983         term->save_csattr = term->cset_attr[term->cset];
1984         term->save_sco_acs = term->sco_acs;
1985     } else {
1986         term->curs = term->savecurs;
1987         /* Make sure the window hasn't shrunk since the save */
1988         if (term->curs.x >= term->cols)
1989             term->curs.x = term->cols - 1;
1990         if (term->curs.y >= term->rows)
1991             term->curs.y = term->rows - 1;
1992
1993         term->curr_attr = term->save_attr;
1994         term->cset = term->save_cset;
1995         term->utf = term->save_utf;
1996         term->wrapnext = term->save_wnext;
1997         /*
1998          * wrapnext might reset to False if the x position is no
1999          * longer at the rightmost edge.
2000          */
2001         if (term->wrapnext && term->curs.x < term->cols-1)
2002             term->wrapnext = FALSE;
2003         term->cset_attr[term->cset] = term->save_csattr;
2004         term->sco_acs = term->save_sco_acs;
2005         set_erase_char(term);
2006     }
2007 }
2008
2009 /*
2010  * This function is called before doing _anything_ which affects
2011  * only part of a line of text. It is used to mark the boundary
2012  * between two character positions, and it indicates that some sort
2013  * of effect is going to happen on only one side of that boundary.
2014  * 
2015  * The effect of this function is to check whether a CJK
2016  * double-width character is straddling the boundary, and to remove
2017  * it and replace it with two spaces if so. (Of course, one or
2018  * other of those spaces is then likely to be replaced with
2019  * something else again, as a result of whatever happens next.)
2020  * 
2021  * Also, if the boundary is at the right-hand _edge_ of the screen,
2022  * it implies something deliberate is being done to the rightmost
2023  * column position; hence we must clear LATTR_WRAPPED2.
2024  * 
2025  * The input to the function is the coordinates of the _second_
2026  * character of the pair.
2027  */
2028 static void check_boundary(Terminal *term, int x, int y)
2029 {
2030     termline *ldata;
2031
2032     /* Validate input coordinates, just in case. */
2033     if (x == 0 || x > term->cols)
2034         return;
2035
2036     ldata = scrlineptr(y);
2037     if (x == term->cols) {
2038         ldata->lattr &= ~LATTR_WRAPPED2;
2039     } else {
2040         if (ldata->chars[x].chr == UCSWIDE) {
2041             clear_cc(ldata, x-1);
2042             clear_cc(ldata, x);
2043             ldata->chars[x-1].chr = ' ' | CSET_ASCII;
2044             ldata->chars[x] = ldata->chars[x-1];
2045         }
2046     }
2047 }
2048
2049 /*
2050  * Erase a large portion of the screen: the whole screen, or the
2051  * whole line, or parts thereof.
2052  */
2053 static void erase_lots(Terminal *term,
2054                        int line_only, int from_begin, int to_end)
2055 {
2056     pos start, end;
2057     int erase_lattr;
2058     int erasing_lines_from_top = 0;
2059
2060     if (line_only) {
2061         start.y = term->curs.y;
2062         start.x = 0;
2063         end.y = term->curs.y + 1;
2064         end.x = 0;
2065         erase_lattr = FALSE;
2066     } else {
2067         start.y = 0;
2068         start.x = 0;
2069         end.y = term->rows;
2070         end.x = 0;
2071         erase_lattr = TRUE;
2072     }
2073     if (!from_begin) {
2074         start = term->curs;
2075     }
2076     if (!to_end) {
2077         end = term->curs;
2078         incpos(end);
2079     }
2080     if (!from_begin || !to_end)
2081         check_boundary(term, term->curs.x, term->curs.y);
2082     check_selection(term, start, end);
2083
2084     /* Clear screen also forces a full window redraw, just in case. */
2085     if (start.y == 0 && start.x == 0 && end.y == term->rows)
2086         term_invalidate(term);
2087
2088     /* Lines scrolled away shouldn't be brought back on if the terminal
2089      * resizes. */
2090     if (start.y == 0 && start.x == 0 && end.x == 0 && erase_lattr)
2091         erasing_lines_from_top = 1;
2092
2093     if (term->cfg.erase_to_scrollback && erasing_lines_from_top) {
2094         /* If it's a whole number of lines, starting at the top, and
2095          * we're fully erasing them, erase by scrolling and keep the
2096          * lines in the scrollback. */
2097         int scrolllines = end.y;
2098         if (end.y == term->rows) {
2099             /* Shrink until we find a non-empty row.*/
2100             scrolllines = find_last_nonempty_line(term, term->screen) + 1;
2101         }
2102         if (scrolllines > 0)
2103             scroll(term, 0, scrolllines - 1, scrolllines, TRUE);
2104     } else {
2105         termline *ldata = scrlineptr(start.y);
2106         while (poslt(start, end)) {
2107             if (start.x == term->cols) {
2108                 if (!erase_lattr)
2109                     ldata->lattr &= ~(LATTR_WRAPPED | LATTR_WRAPPED2);
2110                 else
2111                     ldata->lattr = LATTR_NORM;
2112             } else {
2113                 copy_termchar(ldata, start.x, &term->erase_char);
2114             }
2115             if (incpos(start) && start.y < term->rows) {
2116                 ldata = scrlineptr(start.y);
2117             }
2118         }
2119     }
2120
2121     /* After an erase of lines from the top of the screen, we shouldn't
2122      * bring the lines back again if the terminal enlarges (since the user or
2123      * application has explictly thrown them away). */
2124     if (erasing_lines_from_top && !(term->alt_which))
2125         term->tempsblines = 0;
2126 }
2127
2128 /*
2129  * Insert or delete characters within the current line. n is +ve if
2130  * insertion is desired, and -ve for deletion.
2131  */
2132 static void insch(Terminal *term, int n)
2133 {
2134     int dir = (n < 0 ? -1 : +1);
2135     int m, j;
2136     pos cursplus;
2137     termline *ldata;
2138
2139     n = (n < 0 ? -n : n);
2140     if (n > term->cols - term->curs.x)
2141         n = term->cols - term->curs.x;
2142     m = term->cols - term->curs.x - n;
2143     cursplus.y = term->curs.y;
2144     cursplus.x = term->curs.x + n;
2145     check_selection(term, term->curs, cursplus);
2146     check_boundary(term, term->curs.x, term->curs.y);
2147     if (dir < 0)
2148         check_boundary(term, term->curs.x + n, term->curs.y);
2149     ldata = scrlineptr(term->curs.y);
2150     if (dir < 0) {
2151         for (j = 0; j < m; j++)
2152             move_termchar(ldata,
2153                           ldata->chars + term->curs.x + j,
2154                           ldata->chars + term->curs.x + j + n);
2155         while (n--)
2156             copy_termchar(ldata, term->curs.x + m++, &term->erase_char);
2157     } else {
2158         for (j = m; j-- ;)
2159             move_termchar(ldata,
2160                           ldata->chars + term->curs.x + j + n,
2161                           ldata->chars + term->curs.x + j);
2162         while (n--)
2163             copy_termchar(ldata, term->curs.x + n, &term->erase_char);
2164     }
2165 }
2166
2167 /*
2168  * Toggle terminal mode `mode' to state `state'. (`query' indicates
2169  * whether the mode is a DEC private one or a normal one.)
2170  */
2171 static void toggle_mode(Terminal *term, int mode, int query, int state)
2172 {
2173     if (query)
2174         switch (mode) {
2175           case 1:                      /* DECCKM: application cursor keys */
2176             term->app_cursor_keys = state;
2177             break;
2178           case 2:                      /* DECANM: VT52 mode */
2179             term->vt52_mode = !state;
2180             if (term->vt52_mode) {
2181                 term->blink_is_real = FALSE;
2182                 term->vt52_bold = FALSE;
2183             } else {
2184                 term->blink_is_real = term->cfg.blinktext;
2185             }
2186             term_schedule_tblink(term);
2187             break;
2188           case 3:                      /* DECCOLM: 80/132 columns */
2189             deselect(term);
2190             if (!term->cfg.no_remote_resize)
2191                 request_resize(term->frontend, state ? 132 : 80, term->rows);
2192             term->reset_132 = state;
2193             term->alt_t = term->marg_t = 0;
2194             term->alt_b = term->marg_b = term->rows - 1;
2195             move(term, 0, 0, 0);
2196             erase_lots(term, FALSE, TRUE, TRUE);
2197             break;
2198           case 5:                      /* DECSCNM: reverse video */
2199             /*
2200              * Toggle reverse video. If we receive an OFF within the
2201              * visual bell timeout period after an ON, we trigger an
2202              * effective visual bell, so that ESC[?5hESC[?5l will
2203              * always be an actually _visible_ visual bell.
2204              */
2205             if (term->rvideo && !state) {
2206                 /* This is an OFF, so set up a vbell */
2207                 term_schedule_vbell(term, TRUE, term->rvbell_startpoint);
2208             } else if (!term->rvideo && state) {
2209                 /* This is an ON, so we notice the time and save it. */
2210                 term->rvbell_startpoint = GETTICKCOUNT();
2211             }
2212             term->rvideo = state;
2213             seen_disp_event(term);
2214             break;
2215           case 6:                      /* DECOM: DEC origin mode */
2216             term->dec_om = state;
2217             break;
2218           case 7:                      /* DECAWM: auto wrap */
2219             term->wrap = state;
2220             break;
2221           case 8:                      /* DECARM: auto key repeat */
2222             term->repeat_off = !state;
2223             break;
2224           case 10:                     /* DECEDM: set local edit mode */
2225             term->term_editing = state;
2226             if (term->ldisc)           /* cause ldisc to notice changes */
2227                 ldisc_send(term->ldisc, NULL, 0, 0);
2228             break;
2229           case 25:                     /* DECTCEM: enable/disable cursor */
2230             compatibility2(OTHER, VT220);
2231             term->cursor_on = state;
2232             seen_disp_event(term);
2233             break;
2234           case 47:                     /* alternate screen */
2235             compatibility(OTHER);
2236             deselect(term);
2237             swap_screen(term, term->cfg.no_alt_screen ? 0 : state, FALSE, FALSE);
2238             term->disptop = 0;
2239             break;
2240           case 1000:                   /* xterm mouse 1 */
2241             term->xterm_mouse = state ? 1 : 0;
2242             set_raw_mouse_mode(term->frontend, state);
2243             break;
2244           case 1002:                   /* xterm mouse 2 */
2245             term->xterm_mouse = state ? 2 : 0;
2246             set_raw_mouse_mode(term->frontend, state);
2247             break;
2248           case 1047:                   /* alternate screen */
2249             compatibility(OTHER);
2250             deselect(term);
2251             swap_screen(term, term->cfg.no_alt_screen ? 0 : state, TRUE, TRUE);
2252             term->disptop = 0;
2253             break;
2254           case 1048:                   /* save/restore cursor */
2255             if (!term->cfg.no_alt_screen)
2256                 save_cursor(term, state);
2257             if (!state) seen_disp_event(term);
2258             break;
2259           case 1049:                   /* cursor & alternate screen */
2260             if (state && !term->cfg.no_alt_screen)
2261                 save_cursor(term, state);
2262             if (!state) seen_disp_event(term);
2263             compatibility(OTHER);
2264             deselect(term);
2265             swap_screen(term, term->cfg.no_alt_screen ? 0 : state, TRUE, FALSE);
2266             if (!state && !term->cfg.no_alt_screen)
2267                 save_cursor(term, state);
2268             term->disptop = 0;
2269             break;
2270     } else
2271         switch (mode) {
2272           case 4:                      /* IRM: set insert mode */
2273             compatibility(VT102);
2274             term->insert = state;
2275             break;
2276           case 12:                     /* SRM: set echo mode */
2277             term->term_echoing = !state;
2278             if (term->ldisc)           /* cause ldisc to notice changes */
2279                 ldisc_send(term->ldisc, NULL, 0, 0);
2280             break;
2281           case 20:                     /* LNM: Return sends ... */
2282             term->cr_lf_return = state;
2283             break;
2284           case 34:                     /* WYULCURM: Make cursor BIG */
2285             compatibility2(OTHER, VT220);
2286             term->big_cursor = !state;
2287         }
2288 }
2289
2290 /*
2291  * Process an OSC sequence: set window title or icon name.
2292  */
2293 static void do_osc(Terminal *term)
2294 {
2295     if (term->osc_w) {
2296         while (term->osc_strlen--)
2297             term->wordness[(unsigned char)
2298                 term->osc_string[term->osc_strlen]] = term->esc_args[0];
2299     } else {
2300         term->osc_string[term->osc_strlen] = '\0';
2301         switch (term->esc_args[0]) {
2302           case 0:
2303           case 1:
2304             if (!term->cfg.no_remote_wintitle)
2305                 set_icon(term->frontend, term->osc_string);
2306             if (term->esc_args[0] == 1)
2307                 break;
2308             /* fall through: parameter 0 means set both */
2309           case 2:
2310           case 21:
2311             if (!term->cfg.no_remote_wintitle)
2312                 set_title(term->frontend, term->osc_string);
2313             break;
2314         }
2315     }
2316 }
2317
2318 /*
2319  * ANSI printing routines.
2320  */
2321 static void term_print_setup(Terminal *term)
2322 {
2323     bufchain_clear(&term->printer_buf);
2324     term->print_job = printer_start_job(term->cfg.printer);
2325 }
2326 static void term_print_flush(Terminal *term)
2327 {
2328     void *data;
2329     int len;
2330     int size;
2331     while ((size = bufchain_size(&term->printer_buf)) > 5) {
2332         bufchain_prefix(&term->printer_buf, &data, &len);
2333         if (len > size-5)
2334             len = size-5;
2335         printer_job_data(term->print_job, data, len);
2336         bufchain_consume(&term->printer_buf, len);
2337     }
2338 }
2339 static void term_print_finish(Terminal *term)
2340 {
2341     void *data;
2342     int len, size;
2343     char c;
2344
2345     if (!term->printing && !term->only_printing)
2346         return;                        /* we need do nothing */
2347
2348     term_print_flush(term);
2349     while ((size = bufchain_size(&term->printer_buf)) > 0) {
2350         bufchain_prefix(&term->printer_buf, &data, &len);
2351         c = *(char *)data;
2352         if (c == '\033' || c == '\233') {
2353             bufchain_consume(&term->printer_buf, size);
2354             break;
2355         } else {
2356             printer_job_data(term->print_job, &c, 1);
2357             bufchain_consume(&term->printer_buf, 1);
2358         }
2359     }
2360     printer_finish_job(term->print_job);
2361     term->print_job = NULL;
2362     term->printing = term->only_printing = FALSE;
2363 }
2364
2365 /*
2366  * Remove everything currently in `inbuf' and stick it up on the
2367  * in-memory display. There's a big state machine in here to
2368  * process escape sequences...
2369  */
2370 static void term_out(Terminal *term)
2371 {
2372     unsigned long c;
2373     int unget;
2374     unsigned char localbuf[256], *chars;
2375     int nchars = 0;
2376
2377     unget = -1;
2378
2379     chars = NULL;                      /* placate compiler warnings */
2380     while (nchars > 0 || bufchain_size(&term->inbuf) > 0) {
2381         if (unget == -1) {
2382             if (nchars == 0) {
2383                 void *ret;
2384                 bufchain_prefix(&term->inbuf, &ret, &nchars);
2385                 if (nchars > sizeof(localbuf))
2386                     nchars = sizeof(localbuf);
2387                 memcpy(localbuf, ret, nchars);
2388                 bufchain_consume(&term->inbuf, nchars);
2389                 chars = localbuf;
2390                 assert(chars != NULL);
2391             }
2392             c = *chars++;
2393             nchars--;
2394
2395             /*
2396              * Optionally log the session traffic to a file. Useful for
2397              * debugging and possibly also useful for actual logging.
2398              */
2399             if (term->cfg.logtype == LGTYP_DEBUG && term->logctx)
2400                 logtraffic(term->logctx, (unsigned char) c, LGTYP_DEBUG);
2401         } else {
2402             c = unget;
2403             unget = -1;
2404         }
2405
2406         /* Note only VT220+ are 8-bit VT102 is seven bit, it shouldn't even
2407          * be able to display 8-bit characters, but I'll let that go 'cause
2408          * of i18n.
2409          */
2410
2411         /*
2412          * If we're printing, add the character to the printer
2413          * buffer.
2414          */
2415         if (term->printing) {
2416             bufchain_add(&term->printer_buf, &c, 1);
2417
2418             /*
2419              * If we're in print-only mode, we use a much simpler
2420              * state machine designed only to recognise the ESC[4i
2421              * termination sequence.
2422              */
2423             if (term->only_printing) {
2424                 if (c == '\033')
2425                     term->print_state = 1;
2426                 else if (c == (unsigned char)'\233')
2427                     term->print_state = 2;
2428                 else if (c == '[' && term->print_state == 1)
2429                     term->print_state = 2;
2430                 else if (c == '4' && term->print_state == 2)
2431                     term->print_state = 3;
2432                 else if (c == 'i' && term->print_state == 3)
2433                     term->print_state = 4;
2434                 else
2435                     term->print_state = 0;
2436                 if (term->print_state == 4) {
2437                     term_print_finish(term);
2438                 }
2439                 continue;
2440             }
2441         }
2442
2443         /* First see about all those translations. */
2444         if (term->termstate == TOPLEVEL) {
2445             if (in_utf(term))
2446                 switch (term->utf_state) {
2447                   case 0:
2448                     if (c < 0x80) {
2449                         /* UTF-8 must be stateless so we ignore iso2022. */
2450                         if (term->ucsdata->unitab_ctrl[c] != 0xFF) 
2451                              c = term->ucsdata->unitab_ctrl[c];
2452                         else c = ((unsigned char)c) | CSET_ASCII;
2453                         break;
2454                     } else if ((c & 0xe0) == 0xc0) {
2455                         term->utf_size = term->utf_state = 1;
2456                         term->utf_char = (c & 0x1f);
2457                     } else if ((c & 0xf0) == 0xe0) {
2458                         term->utf_size = term->utf_state = 2;
2459                         term->utf_char = (c & 0x0f);
2460                     } else if ((c & 0xf8) == 0xf0) {
2461                         term->utf_size = term->utf_state = 3;
2462                         term->utf_char = (c & 0x07);
2463                     } else if ((c & 0xfc) == 0xf8) {
2464                         term->utf_size = term->utf_state = 4;
2465                         term->utf_char = (c & 0x03);
2466                     } else if ((c & 0xfe) == 0xfc) {
2467                         term->utf_size = term->utf_state = 5;
2468                         term->utf_char = (c & 0x01);
2469                     } else {
2470                         c = UCSERR;
2471                         break;
2472                     }
2473                     continue;
2474                   case 1:
2475                   case 2:
2476                   case 3:
2477                   case 4:
2478                   case 5:
2479                     if ((c & 0xC0) != 0x80) {
2480                         unget = c;
2481                         c = UCSERR;
2482                         term->utf_state = 0;
2483                         break;
2484                     }
2485                     term->utf_char = (term->utf_char << 6) | (c & 0x3f);
2486                     if (--term->utf_state)
2487                         continue;
2488
2489                     c = term->utf_char;
2490
2491                     /* Is somebody trying to be evil! */
2492                     if (c < 0x80 ||
2493                         (c < 0x800 && term->utf_size >= 2) ||
2494                         (c < 0x10000 && term->utf_size >= 3) ||
2495                         (c < 0x200000 && term->utf_size >= 4) ||
2496                         (c < 0x4000000 && term->utf_size >= 5))
2497                         c = UCSERR;
2498
2499                     /* Unicode line separator and paragraph separator are CR-LF */
2500                     if (c == 0x2028 || c == 0x2029)
2501                         c = 0x85;
2502
2503                     /* High controls are probably a Baaad idea too. */
2504                     if (c < 0xA0)
2505                         c = 0xFFFD;
2506
2507                     /* The UTF-16 surrogates are not nice either. */
2508                     /*       The standard give the option of decoding these: 
2509                      *       I don't want to! */
2510                     if (c >= 0xD800 && c < 0xE000)
2511                         c = UCSERR;
2512
2513                     /* ISO 10646 characters now limited to UTF-16 range. */
2514                     if (c > 0x10FFFF)
2515                         c = UCSERR;
2516
2517                     /* This is currently a TagPhobic application.. */
2518                     if (c >= 0xE0000 && c <= 0xE007F)
2519                         continue;
2520
2521                     /* U+FEFF is best seen as a null. */
2522                     if (c == 0xFEFF)
2523                         continue;
2524                     /* But U+FFFE is an error. */
2525                     if (c == 0xFFFE || c == 0xFFFF)
2526                         c = UCSERR;
2527
2528                     break;
2529             }
2530             /* Are we in the nasty ACS mode? Note: no sco in utf mode. */
2531             else if(term->sco_acs && 
2532                     (c!='\033' && c!='\012' && c!='\015' && c!='\b'))
2533             {
2534                if (term->sco_acs == 2) c |= 0x80;
2535                c |= CSET_SCOACS;
2536             } else {
2537                 switch (term->cset_attr[term->cset]) {
2538                     /* 
2539                      * Linedraw characters are different from 'ESC ( B'
2540                      * only for a small range. For ones outside that
2541                      * range, make sure we use the same font as well as
2542                      * the same encoding.
2543                      */
2544                   case CSET_LINEDRW:
2545                     if (term->ucsdata->unitab_ctrl[c] != 0xFF)
2546                         c = term->ucsdata->unitab_ctrl[c];
2547                     else
2548                         c = ((unsigned char) c) | CSET_LINEDRW;
2549                     break;
2550
2551                   case CSET_GBCHR:
2552                     /* If UK-ASCII, make the '#' a LineDraw Pound */
2553                     if (c == '#') {
2554                         c = '}' | CSET_LINEDRW;
2555                         break;
2556                     }
2557                   /*FALLTHROUGH*/ case CSET_ASCII:
2558                     if (term->ucsdata->unitab_ctrl[c] != 0xFF)
2559                         c = term->ucsdata->unitab_ctrl[c];
2560                     else
2561                         c = ((unsigned char) c) | CSET_ASCII;
2562                     break;
2563                 case CSET_SCOACS:
2564                     if (c>=' ') c = ((unsigned char)c) | CSET_SCOACS;
2565                     break;
2566                 }
2567             }
2568         }
2569
2570         /* How about C1 controls ? */
2571         if ((c & -32) == 0x80 && term->termstate < DO_CTRLS &&
2572             !term->vt52_mode && has_compat(VT220)) {
2573             term->termstate = SEEN_ESC;
2574             term->esc_query = FALSE;
2575             c = '@' + (c & 0x1F);
2576         }
2577
2578         /* Or the GL control. */
2579         if (c == '\177' && term->termstate < DO_CTRLS && has_compat(OTHER)) {
2580             if (term->curs.x && !term->wrapnext)
2581                 term->curs.x--;
2582             term->wrapnext = FALSE;
2583             /* destructive backspace might be disabled */
2584             if (!term->cfg.no_dbackspace) {
2585                 check_boundary(term, term->curs.x, term->curs.y);
2586                 check_boundary(term, term->curs.x+1, term->curs.y);
2587                 copy_termchar(scrlineptr(term->curs.y),
2588                               term->curs.x, &term->erase_char);
2589             }
2590         } else
2591             /* Or normal C0 controls. */
2592         if ((c & ~0x1F) == 0 && term->termstate < DO_CTRLS) {
2593             switch (c) {
2594               case '\005':             /* ENQ: terminal type query */
2595                 /* Strictly speaking this is VT100 but a VT100 defaults to
2596                  * no response. Other terminals respond at their option.
2597                  *
2598                  * Don't put a CR in the default string as this tends to
2599                  * upset some weird software.
2600                  *
2601                  * An xterm returns "xterm" (5 characters)
2602                  */
2603                 compatibility(ANSIMIN);
2604                 if (term->ldisc) {
2605                     char abuf[256], *s, *d;
2606                     int state = 0;
2607                     for (s = term->cfg.answerback, d = abuf; *s; s++) {
2608                         if (state) {
2609                             if (*s >= 'a' && *s <= 'z')
2610                                 *d++ = (*s - ('a' - 1));
2611                             else if ((*s >= '@' && *s <= '_') ||
2612                                      *s == '?' || (*s & 0x80))
2613                                 *d++ = ('@' ^ *s);
2614                             else if (*s == '~')
2615                                 *d++ = '^';
2616                             state = 0;
2617                         } else if (*s == '^') {
2618                             state = 1;
2619                         } else
2620                             *d++ = *s;
2621                     }
2622                     lpage_send(term->ldisc, DEFAULT_CODEPAGE,
2623                                abuf, d - abuf, 0);
2624                 }
2625                 break;
2626               case '\007':            /* BEL: Bell */
2627                 {
2628                     struct beeptime *newbeep;
2629                     unsigned long ticks;
2630
2631                     ticks = GETTICKCOUNT();
2632
2633                     if (!term->beep_overloaded) {
2634                         newbeep = snew(struct beeptime);
2635                         newbeep->ticks = ticks;
2636                         newbeep->next = NULL;
2637                         if (!term->beephead)
2638                             term->beephead = newbeep;
2639                         else
2640                             term->beeptail->next = newbeep;
2641                         term->beeptail = newbeep;
2642                         term->nbeeps++;
2643                     }
2644
2645                     /*
2646                      * Throw out any beeps that happened more than
2647                      * t seconds ago.
2648                      */
2649                     while (term->beephead &&
2650                            term->beephead->ticks < ticks - term->cfg.bellovl_t) {
2651                         struct beeptime *tmp = term->beephead;
2652                         term->beephead = tmp->next;
2653                         sfree(tmp);
2654                         if (!term->beephead)
2655                             term->beeptail = NULL;
2656                         term->nbeeps--;
2657                     }
2658
2659                     if (term->cfg.bellovl && term->beep_overloaded &&
2660                         ticks - term->lastbeep >= (unsigned)term->cfg.bellovl_s) {
2661                         /*
2662                          * If we're currently overloaded and the
2663                          * last beep was more than s seconds ago,
2664                          * leave overload mode.
2665                          */
2666                         term->beep_overloaded = FALSE;
2667                     } else if (term->cfg.bellovl && !term->beep_overloaded &&
2668                                term->nbeeps >= term->cfg.bellovl_n) {
2669                         /*
2670                          * Now, if we have n or more beeps
2671                          * remaining in the queue, go into overload
2672                          * mode.
2673                          */
2674                         term->beep_overloaded = TRUE;
2675                     }
2676                     term->lastbeep = ticks;
2677
2678                     /*
2679                      * Perform an actual beep if we're not overloaded.
2680                      */
2681                     if (!term->cfg.bellovl || !term->beep_overloaded) {
2682                         beep(term->frontend, term->cfg.beep);
2683
2684                         if (term->cfg.beep == BELL_VISUAL) {
2685                             term_schedule_vbell(term, FALSE, 0);
2686                         }
2687                     }
2688                     seen_disp_event(term);
2689                 }
2690                 break;
2691               case '\b':              /* BS: Back space */
2692                 if (term->curs.x == 0 &&
2693                     (term->curs.y == 0 || term->wrap == 0))
2694                     /* do nothing */ ;
2695                 else if (term->curs.x == 0 && term->curs.y > 0)
2696                     term->curs.x = term->cols - 1, term->curs.y--;
2697                 else if (term->wrapnext)
2698                     term->wrapnext = FALSE;
2699                 else
2700                     term->curs.x--;
2701                 seen_disp_event(term);
2702                 break;
2703               case '\016':            /* LS1: Locking-shift one */
2704                 compatibility(VT100);
2705                 term->cset = 1;
2706                 break;
2707               case '\017':            /* LS0: Locking-shift zero */
2708                 compatibility(VT100);
2709                 term->cset = 0;
2710                 break;
2711               case '\033':            /* ESC: Escape */
2712                 if (term->vt52_mode)
2713                     term->termstate = VT52_ESC;
2714                 else {
2715                     compatibility(ANSIMIN);
2716                     term->termstate = SEEN_ESC;
2717                     term->esc_query = FALSE;
2718                 }
2719                 break;
2720               case '\015':            /* CR: Carriage return */
2721                 term->curs.x = 0;
2722                 term->wrapnext = FALSE;
2723                 seen_disp_event(term);
2724                 term->paste_hold = 0;
2725                 if (term->logctx)
2726                     logtraffic(term->logctx, (unsigned char) c, LGTYP_ASCII);
2727                 break;
2728               case '\014':            /* FF: Form feed */
2729                 if (has_compat(SCOANSI)) {
2730                     move(term, 0, 0, 0);
2731                     erase_lots(term, FALSE, FALSE, TRUE);
2732                     term->disptop = 0;
2733                     term->wrapnext = FALSE;
2734                     seen_disp_event(term);
2735                     break;
2736                 }
2737               case '\013':            /* VT: Line tabulation */
2738                 compatibility(VT100);
2739               case '\012':            /* LF: Line feed */
2740                 if (term->curs.y == term->marg_b)
2741                     scroll(term, term->marg_t, term->marg_b, 1, TRUE);
2742                 else if (term->curs.y < term->rows - 1)
2743                     term->curs.y++;
2744                 if (term->cfg.lfhascr)
2745                     term->curs.x = 0;
2746                 term->wrapnext = FALSE;
2747                 seen_disp_event(term);
2748                 term->paste_hold = 0;
2749                 if (term->logctx)
2750                     logtraffic(term->logctx, (unsigned char) c, LGTYP_ASCII);
2751                 break;
2752               case '\t':              /* HT: Character tabulation */
2753                 {
2754                     pos old_curs = term->curs;
2755                     termline *ldata = scrlineptr(term->curs.y);
2756
2757                     do {
2758                         term->curs.x++;
2759                     } while (term->curs.x < term->cols - 1 &&
2760                              !term->tabs[term->curs.x]);
2761
2762                     if ((ldata->lattr & LATTR_MODE) != LATTR_NORM) {
2763                         if (term->curs.x >= term->cols / 2)
2764                             term->curs.x = term->cols / 2 - 1;
2765                     } else {
2766                         if (term->curs.x >= term->cols)
2767                             term->curs.x = term->cols - 1;
2768                     }
2769
2770                     check_selection(term, old_curs, term->curs);
2771                 }
2772                 seen_disp_event(term);
2773                 break;
2774             }
2775         } else
2776             switch (term->termstate) {
2777               case TOPLEVEL:
2778                 /* Only graphic characters get this far;
2779                  * ctrls are stripped above */
2780                 {
2781                     termline *cline = scrlineptr(term->curs.y);
2782                     int width = 0;
2783                     if (DIRECT_CHAR(c))
2784                         width = 1;
2785                     if (!width)
2786                         width = wcwidth((wchar_t) c);
2787
2788                     if (term->wrapnext && term->wrap && width > 0) {
2789                         cline->lattr |= LATTR_WRAPPED;
2790                         if (term->curs.y == term->marg_b)
2791                             scroll(term, term->marg_t, term->marg_b, 1, TRUE);
2792                         else if (term->curs.y < term->rows - 1)
2793                             term->curs.y++;
2794                         term->curs.x = 0;
2795                         term->wrapnext = FALSE;
2796                         cline = scrlineptr(term->curs.y);
2797                     }
2798                     if (term->insert && width > 0)
2799                         insch(term, width);
2800                     if (term->selstate != NO_SELECTION) {
2801                         pos cursplus = term->curs;
2802                         incpos(cursplus);
2803                         check_selection(term, term->curs, cursplus);
2804                     }
2805                     if (((c & CSET_MASK) == CSET_ASCII ||
2806                          (c & CSET_MASK) == 0) &&
2807                         term->logctx)
2808                         logtraffic(term->logctx, (unsigned char) c,
2809                                    LGTYP_ASCII);
2810
2811                     switch (width) {
2812                       case 2:
2813                         /*
2814                          * If we're about to display a double-width
2815                          * character starting in the rightmost
2816                          * column, then we do something special
2817                          * instead. We must print a space in the
2818                          * last column of the screen, then wrap;
2819                          * and we also set LATTR_WRAPPED2 which
2820                          * instructs subsequent cut-and-pasting not
2821                          * only to splice this line to the one
2822                          * after it, but to ignore the space in the
2823                          * last character position as well.
2824                          * (Because what was actually output to the
2825                          * terminal was presumably just a sequence
2826                          * of CJK characters, and we don't want a
2827                          * space to be pasted in the middle of
2828                          * those just because they had the
2829                          * misfortune to start in the wrong parity
2830                          * column. xterm concurs.)
2831                          */
2832                         check_boundary(term, term->curs.x, term->curs.y);
2833                         check_boundary(term, term->curs.x+2, term->curs.y);
2834                         if (term->curs.x == term->cols-1) {
2835                             copy_termchar(cline, term->curs.x,
2836                                           &term->erase_char);
2837                             cline->lattr |= LATTR_WRAPPED | LATTR_WRAPPED2;
2838                             if (term->curs.y == term->marg_b)
2839                                 scroll(term, term->marg_t, term->marg_b,
2840                                        1, TRUE);
2841                             else if (term->curs.y < term->rows - 1)
2842                                 term->curs.y++;
2843                             term->curs.x = 0;
2844                             /* Now we must check_boundary again, of course. */
2845                             check_boundary(term, term->curs.x, term->curs.y);
2846                             check_boundary(term, term->curs.x+2, term->curs.y);
2847                         }
2848
2849                         /* FULL-TERMCHAR */
2850                         clear_cc(cline, term->curs.x);
2851                         cline->chars[term->curs.x].chr = c;
2852                         cline->chars[term->curs.x].attr = term->curr_attr;
2853
2854                         term->curs.x++;
2855
2856                         /* FULL-TERMCHAR */
2857                         clear_cc(cline, term->curs.x);
2858                         cline->chars[term->curs.x].chr = UCSWIDE;
2859                         cline->chars[term->curs.x].attr = term->curr_attr;
2860
2861                         break;
2862                       case 1:
2863                         check_boundary(term, term->curs.x, term->curs.y);
2864                         check_boundary(term, term->curs.x+1, term->curs.y);
2865
2866                         /* FULL-TERMCHAR */
2867                         clear_cc(cline, term->curs.x);
2868                         cline->chars[term->curs.x].chr = c;
2869                         cline->chars[term->curs.x].attr = term->curr_attr;
2870
2871                         break;
2872                       case 0:
2873                         if (term->curs.x > 0) {
2874                             int x = term->curs.x - 1;
2875
2876                             /* If we're in wrapnext state, the character
2877                              * to combine with is _here_, not to our left. */
2878                             if (term->wrapnext)
2879                                 x++;
2880
2881                             /*
2882                              * If the previous character is
2883                              * UCSWIDE, back up another one.
2884                              */
2885                             if (cline->chars[x].chr == UCSWIDE) {
2886                                 assert(x > 0);
2887                                 x--;
2888                             }
2889
2890                             add_cc(cline, x, c);
2891                             seen_disp_event(term);
2892                         }
2893                         continue;
2894                       default:
2895                         continue;
2896                     }
2897                     term->curs.x++;
2898                     if (term->curs.x == term->cols) {
2899                         term->curs.x--;
2900                         term->wrapnext = TRUE;
2901                         if (term->wrap && term->vt52_mode) {
2902                             cline->lattr |= LATTR_WRAPPED;
2903                             if (term->curs.y == term->marg_b)
2904                                 scroll(term, term->marg_t, term->marg_b, 1, TRUE);
2905                             else if (term->curs.y < term->rows - 1)
2906                                 term->curs.y++;
2907                             term->curs.x = 0;
2908                             term->wrapnext = FALSE;
2909                         }
2910                     }
2911                     seen_disp_event(term);
2912                 }
2913                 break;
2914
2915               case OSC_MAYBE_ST:
2916                 /*
2917                  * This state is virtually identical to SEEN_ESC, with the
2918                  * exception that we have an OSC sequence in the pipeline,
2919                  * and _if_ we see a backslash, we process it.
2920                  */
2921                 if (c == '\\') {
2922                     do_osc(term);
2923                     term->termstate = TOPLEVEL;
2924                     break;
2925                 }
2926                 /* else fall through */
2927               case SEEN_ESC:
2928                 if (c >= ' ' && c <= '/') {
2929                     if (term->esc_query)
2930                         term->esc_query = -1;
2931                     else
2932                         term->esc_query = c;
2933                     break;
2934                 }
2935                 term->termstate = TOPLEVEL;
2936                 switch (ANSI(c, term->esc_query)) {
2937                   case '[':             /* enter CSI mode */
2938                     term->termstate = SEEN_CSI;
2939                     term->esc_nargs = 1;
2940                     term->esc_args[0] = ARG_DEFAULT;
2941                     term->esc_query = FALSE;
2942                     break;
2943                   case ']':             /* OSC: xterm escape sequences */
2944                     /* Compatibility is nasty here, xterm, linux, decterm yuk! */
2945                     compatibility(OTHER);
2946                     term->termstate = SEEN_OSC;
2947                     term->esc_args[0] = 0;
2948                     break;
2949                   case '7':             /* DECSC: save cursor */
2950                     compatibility(VT100);
2951                     save_cursor(term, TRUE);
2952                     break;
2953                   case '8':             /* DECRC: restore cursor */
2954                     compatibility(VT100);
2955                     save_cursor(term, FALSE);
2956                     seen_disp_event(term);
2957                     break;
2958                   case '=':             /* DECKPAM: Keypad application mode */
2959                     compatibility(VT100);
2960                     term->app_keypad_keys = TRUE;
2961                     break;
2962                   case '>':             /* DECKPNM: Keypad numeric mode */
2963                     compatibility(VT100);
2964                     term->app_keypad_keys = FALSE;
2965                     break;
2966                   case 'D':            /* IND: exactly equivalent to LF */
2967                     compatibility(VT100);
2968                     if (term->curs.y == term->marg_b)
2969                         scroll(term, term->marg_t, term->marg_b, 1, TRUE);
2970                     else if (term->curs.y < term->rows - 1)
2971                         term->curs.y++;
2972                     term->wrapnext = FALSE;
2973                     seen_disp_event(term);
2974                     break;
2975                   case 'E':            /* NEL: exactly equivalent to CR-LF */
2976                     compatibility(VT100);
2977                     term->curs.x = 0;
2978                     if (term->curs.y == term->marg_b)
2979                         scroll(term, term->marg_t, term->marg_b, 1, TRUE);
2980                     else if (term->curs.y < term->rows - 1)
2981                         term->curs.y++;
2982                     term->wrapnext = FALSE;
2983                     seen_disp_event(term);
2984                     break;
2985                   case 'M':            /* RI: reverse index - backwards LF */
2986                     compatibility(VT100);
2987                     if (term->curs.y == term->marg_t)
2988                         scroll(term, term->marg_t, term->marg_b, -1, TRUE);
2989                     else if (term->curs.y > 0)
2990                         term->curs.y--;
2991                     term->wrapnext = FALSE;
2992                     seen_disp_event(term);
2993                     break;
2994                   case 'Z':            /* DECID: terminal type query */
2995                     compatibility(VT100);
2996                     if (term->ldisc)
2997                         ldisc_send(term->ldisc, term->id_string,
2998                                    strlen(term->id_string), 0);
2999                     break;
3000                   case 'c':            /* RIS: restore power-on settings */
3001                     compatibility(VT100);
3002                     power_on(term);
3003                     if (term->ldisc)   /* cause ldisc to notice changes */
3004                         ldisc_send(term->ldisc, NULL, 0, 0);
3005                     if (term->reset_132) {
3006                         if (!term->cfg.no_remote_resize)
3007                             request_resize(term->frontend, 80, term->rows);
3008                         term->reset_132 = 0;
3009                     }
3010                     term->disptop = 0;
3011                     seen_disp_event(term);
3012                     break;
3013                   case 'H':            /* HTS: set a tab */
3014                     compatibility(VT100);
3015                     term->tabs[term->curs.x] = TRUE;
3016                     break;
3017
3018                   case ANSI('8', '#'):  /* DECALN: fills screen with Es :-) */
3019                     compatibility(VT100);
3020                     {
3021                         termline *ldata;
3022                         int i, j;
3023                         pos scrtop, scrbot;
3024
3025                         for (i = 0; i < term->rows; i++) {
3026                             ldata = scrlineptr(i);
3027                             for (j = 0; j < term->cols; j++) {
3028                                 copy_termchar(ldata, j,
3029                                               &term->basic_erase_char);
3030                                 ldata->chars[j].chr = 'E';
3031                             }
3032                             ldata->lattr = LATTR_NORM;
3033                         }
3034                         term->disptop = 0;
3035                         seen_disp_event(term);
3036                         scrtop.x = scrtop.y = 0;
3037                         scrbot.x = 0;
3038                         scrbot.y = term->rows;
3039                         check_selection(term, scrtop, scrbot);
3040                     }
3041                     break;
3042
3043                   case ANSI('3', '#'):
3044                   case ANSI('4', '#'):
3045                   case ANSI('5', '#'):
3046                   case ANSI('6', '#'):
3047                     compatibility(VT100);
3048                     {
3049                         int nlattr;
3050
3051                         switch (ANSI(c, term->esc_query)) {
3052                           case ANSI('3', '#'): /* DECDHL: 2*height, top */
3053                             nlattr = LATTR_TOP;
3054                             break;
3055                           case ANSI('4', '#'): /* DECDHL: 2*height, bottom */
3056                             nlattr = LATTR_BOT;
3057                             break;
3058                           case ANSI('5', '#'): /* DECSWL: normal */
3059                             nlattr = LATTR_NORM;
3060                             break;
3061                           default: /* case ANSI('6', '#'): DECDWL: 2*width */
3062                             nlattr = LATTR_WIDE;
3063                             break;
3064                         }
3065                         scrlineptr(term->curs.y)->lattr = nlattr;
3066                     }
3067                     break;
3068                   /* GZD4: G0 designate 94-set */
3069                   case ANSI('A', '('):
3070                     compatibility(VT100);
3071                     if (!term->cfg.no_remote_charset)
3072                         term->cset_attr[0] = CSET_GBCHR;
3073                     break;
3074                   case ANSI('B', '('):
3075                     compatibility(VT100);
3076                     if (!term->cfg.no_remote_charset)
3077                         term->cset_attr[0] = CSET_ASCII;
3078                     break;
3079                   case ANSI('0', '('):
3080                     compatibility(VT100);
3081                     if (!term->cfg.no_remote_charset)
3082                         term->cset_attr[0] = CSET_LINEDRW;
3083                     break;
3084                   case ANSI('U', '('): 
3085                     compatibility(OTHER);
3086                     if (!term->cfg.no_remote_charset)
3087                         term->cset_attr[0] = CSET_SCOACS; 
3088                     break;
3089                   /* G1D4: G1-designate 94-set */
3090                   case ANSI('A', ')'):
3091                     compatibility(VT100);
3092                     if (!term->cfg.no_remote_charset)
3093                         term->cset_attr[1] = CSET_GBCHR;
3094                     break;
3095                   case ANSI('B', ')'):
3096                     compatibility(VT100);
3097                     if (!term->cfg.no_remote_charset)
3098                         term->cset_attr[1] = CSET_ASCII;
3099                     break;
3100                   case ANSI('0', ')'):
3101                     compatibility(VT100);
3102                     if (!term->cfg.no_remote_charset)
3103                         term->cset_attr[1] = CSET_LINEDRW;
3104                     break;
3105                   case ANSI('U', ')'): 
3106                     compatibility(OTHER);
3107                     if (!term->cfg.no_remote_charset)
3108                         term->cset_attr[1] = CSET_SCOACS; 
3109                     break;
3110                   /* DOCS: Designate other coding system */
3111                   case ANSI('8', '%'):  /* Old Linux code */
3112                   case ANSI('G', '%'):
3113                     compatibility(OTHER);
3114                     if (!term->cfg.no_remote_charset)
3115                         term->utf = 1;
3116                     break;
3117                   case ANSI('@', '%'):
3118                     compatibility(OTHER);
3119                     if (!term->cfg.no_remote_charset)
3120                         term->utf = 0;
3121                     break;
3122                 }
3123                 break;
3124               case SEEN_CSI:
3125                 term->termstate = TOPLEVEL;  /* default */
3126                 if (isdigit(c)) {
3127                     if (term->esc_nargs <= ARGS_MAX) {
3128                         if (term->esc_args[term->esc_nargs - 1] == ARG_DEFAULT)
3129                             term->esc_args[term->esc_nargs - 1] = 0;
3130                         term->esc_args[term->esc_nargs - 1] =
3131                             10 * term->esc_args[term->esc_nargs - 1] + c - '0';
3132                     }
3133                     term->termstate = SEEN_CSI;
3134                 } else if (c == ';') {
3135                     if (++term->esc_nargs <= ARGS_MAX)
3136                         term->esc_args[term->esc_nargs - 1] = ARG_DEFAULT;
3137                     term->termstate = SEEN_CSI;
3138                 } else if (c < '@') {
3139                     if (term->esc_query)
3140                         term->esc_query = -1;
3141                     else if (c == '?')
3142                         term->esc_query = TRUE;
3143                     else
3144                         term->esc_query = c;
3145                     term->termstate = SEEN_CSI;
3146                 } else
3147                     switch (ANSI(c, term->esc_query)) {
3148                       case 'A':       /* CUU: move up N lines */
3149                         move(term, term->curs.x,
3150                              term->curs.y - def(term->esc_args[0], 1), 1);
3151                         seen_disp_event(term);
3152                         break;
3153                       case 'e':         /* VPR: move down N lines */
3154                         compatibility(ANSI);
3155                         /* FALLTHROUGH */
3156                       case 'B':         /* CUD: Cursor down */
3157                         move(term, term->curs.x,
3158                              term->curs.y + def(term->esc_args[0], 1), 1);
3159                         seen_disp_event(term);
3160                         break;
3161                       case ANSI('c', '>'):      /* DA: report xterm version */
3162                         compatibility(OTHER);
3163                         /* this reports xterm version 136 so that VIM can
3164                            use the drag messages from the mouse reporting */
3165                         if (term->ldisc)
3166                             ldisc_send(term->ldisc, "\033[>0;136;0c", 11, 0);
3167                         break;
3168                       case 'a':         /* HPR: move right N cols */
3169                         compatibility(ANSI);
3170                         /* FALLTHROUGH */
3171                       case 'C':         /* CUF: Cursor right */ 
3172                         move(term, term->curs.x + def(term->esc_args[0], 1),
3173                              term->curs.y, 1);
3174                         seen_disp_event(term);
3175                         break;
3176                       case 'D':       /* CUB: move left N cols */
3177                         move(term, term->curs.x - def(term->esc_args[0], 1),
3178                              term->curs.y, 1);
3179                         seen_disp_event(term);
3180                         break;
3181                       case 'E':       /* CNL: move down N lines and CR */
3182                         compatibility(ANSI);
3183                         move(term, 0,
3184                              term->curs.y + def(term->esc_args[0], 1), 1);
3185                         seen_disp_event(term);
3186                         break;
3187                       case 'F':       /* CPL: move up N lines and CR */
3188                         compatibility(ANSI);
3189                         move(term, 0,
3190                              term->curs.y - def(term->esc_args[0], 1), 1);
3191                         seen_disp_event(term);
3192                         break;
3193                       case 'G':       /* CHA */
3194                       case '`':       /* HPA: set horizontal posn */
3195                         compatibility(ANSI);
3196                         move(term, def(term->esc_args[0], 1) - 1,
3197                              term->curs.y, 0);
3198                         seen_disp_event(term);
3199                         break;
3200                       case 'd':       /* VPA: set vertical posn */
3201                         compatibility(ANSI);
3202                         move(term, term->curs.x,
3203                              ((term->dec_om ? term->marg_t : 0) +
3204                               def(term->esc_args[0], 1) - 1),
3205                              (term->dec_om ? 2 : 0));
3206                         seen_disp_event(term);
3207                         break;
3208                       case 'H':      /* CUP */
3209                       case 'f':      /* HVP: set horz and vert posns at once */
3210                         if (term->esc_nargs < 2)
3211                             term->esc_args[1] = ARG_DEFAULT;
3212                         move(term, def(term->esc_args[1], 1) - 1,
3213                              ((term->dec_om ? term->marg_t : 0) +
3214                               def(term->esc_args[0], 1) - 1),
3215                              (term->dec_om ? 2 : 0));
3216                         seen_disp_event(term);
3217                         break;
3218                       case 'J':       /* ED: erase screen or parts of it */
3219                         {
3220                             unsigned int i = def(term->esc_args[0], 0) + 1;
3221                             if (i > 3)
3222                                 i = 0;
3223                             erase_lots(term, FALSE, !!(i & 2), !!(i & 1));
3224                         }
3225                         term->disptop = 0;
3226                         seen_disp_event(term);
3227                         break;
3228                       case 'K':       /* EL: erase line or parts of it */
3229                         {
3230                             unsigned int i = def(term->esc_args[0], 0) + 1;
3231                             if (i > 3)
3232                                 i = 0;
3233                             erase_lots(term, TRUE, !!(i & 2), !!(i & 1));
3234                         }
3235                         seen_disp_event(term);
3236                         break;
3237                       case 'L':       /* IL: insert lines */
3238                         compatibility(VT102);
3239                         if (term->curs.y <= term->marg_b)
3240                             scroll(term, term->curs.y, term->marg_b,
3241                                    -def(term->esc_args[0], 1), FALSE);
3242                         seen_disp_event(term);
3243                         break;
3244                       case 'M':       /* DL: delete lines */
3245                         compatibility(VT102);
3246                         if (term->curs.y <= term->marg_b)
3247                             scroll(term, term->curs.y, term->marg_b,
3248                                    def(term->esc_args[0], 1),
3249                                    TRUE);
3250                         seen_disp_event(term);
3251                         break;
3252                       case '@':       /* ICH: insert chars */
3253                         /* XXX VTTEST says this is vt220, vt510 manual says vt102 */
3254                         compatibility(VT102);
3255                         insch(term, def(term->esc_args[0], 1));
3256                         seen_disp_event(term);
3257                         break;
3258                       case 'P':       /* DCH: delete chars */
3259                         compatibility(VT102);
3260                         insch(term, -def(term->esc_args[0], 1));
3261                         seen_disp_event(term);
3262                         break;
3263                       case 'c':       /* DA: terminal type query */
3264                         compatibility(VT100);
3265                         /* This is the response for a VT102 */
3266                         if (term->ldisc)
3267                             ldisc_send(term->ldisc, term->id_string,
3268                                        strlen(term->id_string), 0);
3269                         break;
3270                       case 'n':       /* DSR: cursor position query */
3271                         if (term->ldisc) {
3272                             if (term->esc_args[0] == 6) {
3273                                 char buf[32];
3274                                 sprintf(buf, "\033[%d;%dR", term->curs.y + 1,
3275                                         term->curs.x + 1);
3276                                 ldisc_send(term->ldisc, buf, strlen(buf), 0);
3277                             } else if (term->esc_args[0] == 5) {
3278                                 ldisc_send(term->ldisc, "\033[0n", 4, 0);
3279                             }
3280                         }
3281                         break;
3282                       case 'h':       /* SM: toggle modes to high */
3283                       case ANSI_QUE('h'):
3284                         compatibility(VT100);
3285                         {
3286                             int i;
3287                             for (i = 0; i < term->esc_nargs; i++)
3288                                 toggle_mode(term, term->esc_args[i],
3289                                             term->esc_query, TRUE);
3290                         }
3291                         break;
3292                       case 'i':         /* MC: Media copy */
3293                       case ANSI_QUE('i'):
3294                         compatibility(VT100);
3295                         {
3296                             if (term->esc_nargs != 1) break;
3297                             if (term->esc_args[0] == 5 && *term->cfg.printer) {
3298                                 term->printing = TRUE;
3299                                 term->only_printing = !term->esc_query;
3300                                 term->print_state = 0;
3301                                 term_print_setup(term);
3302                             } else if (term->esc_args[0] == 4 &&
3303                                        term->printing) {
3304                                 term_print_finish(term);
3305                             }
3306                         }
3307                         break;                  
3308                       case 'l':       /* RM: toggle modes to low */
3309                       case ANSI_QUE('l'):
3310                         compatibility(VT100);
3311                         {
3312                             int i;
3313                             for (i = 0; i < term->esc_nargs; i++)
3314                                 toggle_mode(term, term->esc_args[i],
3315                                             term->esc_query, FALSE);
3316                         }
3317                         break;
3318                       case 'g':       /* TBC: clear tabs */
3319                         compatibility(VT100);
3320                         if (term->esc_nargs == 1) {
3321                             if (term->esc_args[0] == 0) {
3322                                 term->tabs[term->curs.x] = FALSE;
3323                             } else if (term->esc_args[0] == 3) {
3324                                 int i;
3325                                 for (i = 0; i < term->cols; i++)
3326                                     term->tabs[i] = FALSE;
3327                             }
3328                         }
3329                         break;
3330                       case 'r':       /* DECSTBM: set scroll margins */
3331                         compatibility(VT100);
3332                         if (term->esc_nargs <= 2) {
3333                             int top, bot;
3334                             top = def(term->esc_args[0], 1) - 1;
3335                             bot = (term->esc_nargs <= 1
3336                                    || term->esc_args[1] == 0 ?
3337                                    term->rows :
3338                                    def(term->esc_args[1], term->rows)) - 1;
3339                             if (bot >= term->rows)
3340                                 bot = term->rows - 1;
3341                             /* VTTEST Bug 9 - if region is less than 2 lines
3342                              * don't change region.
3343                              */
3344                             if (bot - top > 0) {
3345                                 term->marg_t = top;
3346                                 term->marg_b = bot;
3347                                 term->curs.x = 0;
3348                                 /*
3349                                  * I used to think the cursor should be
3350                                  * placed at the top of the newly marginned
3351                                  * area. Apparently not: VMS TPU falls over
3352                                  * if so.
3353                                  *
3354                                  * Well actually it should for
3355                                  * Origin mode - RDB
3356                                  */
3357                                 term->curs.y = (term->dec_om ?
3358                                                 term->marg_t : 0);
3359                                 seen_disp_event(term);
3360                             }
3361                         }
3362                         break;
3363                       case 'm':       /* SGR: set graphics rendition */
3364                         {
3365                             /* 
3366                              * A VT100 without the AVO only had one
3367                              * attribute, either underline or
3368                              * reverse video depending on the
3369                              * cursor type, this was selected by
3370                              * CSI 7m.
3371                              *
3372                              * case 2:
3373                              *  This is sometimes DIM, eg on the
3374                              *  GIGI and Linux
3375                              * case 8:
3376                              *  This is sometimes INVIS various ANSI.
3377                              * case 21:
3378                              *  This like 22 disables BOLD, DIM and INVIS
3379                              *
3380                              * The ANSI colours appear on any
3381                              * terminal that has colour (obviously)
3382                              * but the interaction between sgr0 and
3383                              * the colours varies but is usually
3384                              * related to the background colour
3385                              * erase item. The interaction between
3386                              * colour attributes and the mono ones
3387                              * is also very implementation
3388                              * dependent.
3389                              *
3390                              * The 39 and 49 attributes are likely
3391                              * to be unimplemented.
3392                              */
3393                             int i;
3394                             for (i = 0; i < term->esc_nargs; i++) {
3395                                 switch (def(term->esc_args[i], 0)) {
3396                                   case 0:       /* restore defaults */
3397                                     term->curr_attr = term->default_attr;
3398                                     break;
3399                                   case 1:       /* enable bold */
3400                                     compatibility(VT100AVO);
3401                                     term->curr_attr |= ATTR_BOLD;
3402                                     break;
3403                                   case 21:      /* (enable double underline) */
3404                                     compatibility(OTHER);
3405                                   case 4:       /* enable underline */
3406                                     compatibility(VT100AVO);
3407                                     term->curr_attr |= ATTR_UNDER;
3408                                     break;
3409                                   case 5:       /* enable blink */
3410                                     compatibility(VT100AVO);
3411                                     term->curr_attr |= ATTR_BLINK;
3412                                     break;
3413                                   case 6:       /* SCO light bkgrd */
3414                                     compatibility(SCOANSI);
3415                                     term->blink_is_real = FALSE;
3416                                     term->curr_attr |= ATTR_BLINK;
3417                                     term_schedule_tblink(term);
3418                                     break;
3419                                   case 7:       /* enable reverse video */
3420                                     term->curr_attr |= ATTR_REVERSE;
3421                                     break;
3422                                   case 10:      /* SCO acs off */
3423                                     compatibility(SCOANSI);
3424                                     if (term->cfg.no_remote_charset) break;
3425                                     term->sco_acs = 0; break;
3426                                   case 11:      /* SCO acs on */
3427                                     compatibility(SCOANSI);
3428                                     if (term->cfg.no_remote_charset) break;
3429                                     term->sco_acs = 1; break;
3430                                   case 12:      /* SCO acs on, |0x80 */
3431                                     compatibility(SCOANSI);
3432                                     if (term->cfg.no_remote_charset) break;
3433                                     term->sco_acs = 2; break;
3434                                   case 22:      /* disable bold */
3435                                     compatibility2(OTHER, VT220);
3436                                     term->curr_attr &= ~ATTR_BOLD;
3437                                     break;
3438                                   case 24:      /* disable underline */
3439                                     compatibility2(OTHER, VT220);
3440                                     term->curr_attr &= ~ATTR_UNDER;
3441                                     break;
3442                                   case 25:      /* disable blink */
3443                                     compatibility2(OTHER, VT220);
3444                                     term->curr_attr &= ~ATTR_BLINK;
3445                                     break;
3446                                   case 27:      /* disable reverse video */
3447                                     compatibility2(OTHER, VT220);
3448                                     term->curr_attr &= ~ATTR_REVERSE;
3449                                     break;
3450                                   case 30:
3451                                   case 31:
3452                                   case 32:
3453                                   case 33:
3454                                   case 34:
3455                                   case 35:
3456                                   case 36:
3457                                   case 37:
3458                                     /* foreground */
3459                                     term->curr_attr &= ~ATTR_FGMASK;
3460                                     term->curr_attr |=
3461                                         (term->esc_args[i] - 30)<<ATTR_FGSHIFT;
3462                                     break;
3463                                   case 90:
3464                                   case 91:
3465                                   case 92:
3466                                   case 93:
3467                                   case 94:
3468                                   case 95:
3469                                   case 96:
3470                                   case 97:
3471                                     /* xterm-style bright foreground */
3472                                     term->curr_attr &= ~ATTR_FGMASK;
3473                                     term->curr_attr |=
3474                                         ((term->esc_args[i] - 90 + 16)
3475                                          << ATTR_FGSHIFT);
3476                                     break;
3477                                   case 39:      /* default-foreground */
3478                                     term->curr_attr &= ~ATTR_FGMASK;
3479                                     term->curr_attr |= ATTR_DEFFG;
3480                                     break;
3481                                   case 40:
3482                                   case 41:
3483                                   case 42:
3484                                   case 43:
3485                                   case 44:
3486                                   case 45:
3487                                   case 46:
3488                                   case 47:
3489                                     /* background */
3490                                     term->curr_attr &= ~ATTR_BGMASK;
3491                                     term->curr_attr |=
3492                                         (term->esc_args[i] - 40)<<ATTR_BGSHIFT;
3493                                     break;
3494                                   case 100:
3495                                   case 101:
3496                                   case 102:
3497                                   case 103:
3498                                   case 104:
3499                                   case 105:
3500                                   case 106:
3501                                   case 107:
3502                                     /* xterm-style bright background */
3503                                     term->curr_attr &= ~ATTR_BGMASK;
3504                                     term->curr_attr |=
3505                                         ((term->esc_args[i] - 100 + 16)
3506                                          << ATTR_BGSHIFT);
3507                                     break;
3508                                   case 49:      /* default-background */
3509                                     term->curr_attr &= ~ATTR_BGMASK;
3510                                     term->curr_attr |= ATTR_DEFBG;
3511                                     break;
3512                                 }
3513                             }
3514                             set_erase_char(term);
3515                         }
3516                         break;
3517                       case 's':       /* save cursor */
3518                         save_cursor(term, TRUE);
3519                         break;
3520                       case 'u':       /* restore cursor */
3521                         save_cursor(term, FALSE);
3522                         seen_disp_event(term);
3523                         break;
3524                       case 't': /* DECSLPP: set page size - ie window height */
3525                         /*
3526                          * VT340/VT420 sequence DECSLPP, DEC only allows values
3527                          *  24/25/36/48/72/144 other emulators (eg dtterm) use
3528                          * illegal values (eg first arg 1..9) for window changing 
3529                          * and reports.
3530                          */
3531                         if (term->esc_nargs <= 1
3532                             && (term->esc_args[0] < 1 ||
3533                                 term->esc_args[0] >= 24)) {
3534                             compatibility(VT340TEXT);
3535                             if (!term->cfg.no_remote_resize)
3536                                 request_resize(term->frontend, term->cols,
3537                                                def(term->esc_args[0], 24));
3538                             deselect(term);
3539                         } else if (term->esc_nargs >= 1 &&
3540                                    term->esc_args[0] >= 1 &&
3541                                    term->esc_args[0] < 24) {
3542                             compatibility(OTHER);
3543
3544                             switch (term->esc_args[0]) {
3545                                 int x, y, len;
3546                                 char buf[80], *p;
3547                               case 1:
3548                                 set_iconic(term->frontend, FALSE);
3549                                 break;
3550                               case 2:
3551                                 set_iconic(term->frontend, TRUE);
3552                                 break;
3553                               case 3:
3554                                 if (term->esc_nargs >= 3) {
3555                                     if (!term->cfg.no_remote_resize)
3556                                         move_window(term->frontend,
3557                                                     def(term->esc_args[1], 0),
3558                                                     def(term->esc_args[2], 0));
3559                                 }
3560                                 break;
3561                               case 4:
3562                                 /* We should resize the window to a given
3563                                  * size in pixels here, but currently our
3564                                  * resizing code isn't healthy enough to
3565                                  * manage it. */
3566                                 break;
3567                               case 5:
3568                                 /* move to top */
3569                                 set_zorder(term->frontend, TRUE);
3570                                 break;
3571                               case 6:
3572                                 /* move to bottom */
3573                                 set_zorder(term->frontend, FALSE);
3574                                 break;
3575                               case 7:
3576                                 refresh_window(term->frontend);
3577                                 break;
3578                               case 8:
3579                                 if (term->esc_nargs >= 3) {
3580                                     if (!term->cfg.no_remote_resize)
3581                                         request_resize(term->frontend,
3582                                                        def(term->esc_args[2], term->cfg.width),
3583                                                        def(term->esc_args[1], term->cfg.height));
3584                                 }
3585                                 break;
3586                               case 9:
3587                                 if (term->esc_nargs >= 2)
3588                                     set_zoomed(term->frontend,
3589                                                term->esc_args[1] ?
3590                                                TRUE : FALSE);
3591                                 break;
3592                               case 11:
3593                                 if (term->ldisc)
3594                                     ldisc_send(term->ldisc,
3595                                                is_iconic(term->frontend) ?
3596                                                "\033[1t" : "\033[2t", 4, 0);
3597                                 break;
3598                               case 13:
3599                                 if (term->ldisc) {
3600                                     get_window_pos(term->frontend, &x, &y);
3601                                     len = sprintf(buf, "\033[3;%d;%dt", x, y);
3602                                     ldisc_send(term->ldisc, buf, len, 0);
3603                                 }
3604                                 break;
3605                               case 14:
3606                                 if (term->ldisc) {
3607                                     get_window_pixels(term->frontend, &x, &y);
3608                                     len = sprintf(buf, "\033[4;%d;%dt", x, y);
3609                                     ldisc_send(term->ldisc, buf, len, 0);
3610                                 }
3611                                 break;
3612                               case 18:
3613                                 if (term->ldisc) {
3614                                     len = sprintf(buf, "\033[8;%d;%dt",
3615                                                   term->rows, term->cols);
3616                                     ldisc_send(term->ldisc, buf, len, 0);
3617                                 }
3618                                 break;
3619                               case 19:
3620                                 /*
3621                                  * Hmmm. Strictly speaking we
3622                                  * should return `the size of the
3623                                  * screen in characters', but
3624                                  * that's not easy: (a) window
3625                                  * furniture being what it is it's
3626                                  * hard to compute, and (b) in
3627                                  * resize-font mode maximising the
3628                                  * window wouldn't change the
3629                                  * number of characters. *shrug*. I
3630                                  * think we'll ignore it for the
3631                                  * moment and see if anyone
3632                                  * complains, and then ask them
3633                                  * what they would like it to do.
3634                                  */
3635                                 break;
3636                               case 20:
3637                                 if (term->ldisc &&
3638                                     !term->cfg.no_remote_qtitle) {
3639                                     p = get_window_title(term->frontend, TRUE);
3640                                     len = strlen(p);
3641                                     ldisc_send(term->ldisc, "\033]L", 3, 0);
3642                                     ldisc_send(term->ldisc, p, len, 0);
3643                                     ldisc_send(term->ldisc, "\033\\", 2, 0);
3644                                 }
3645                                 break;
3646                               case 21:
3647                                 if (term->ldisc &&
3648                                     !term->cfg.no_remote_qtitle) {
3649                                     p = get_window_title(term->frontend,FALSE);
3650                                     len = strlen(p);
3651                                     ldisc_send(term->ldisc, "\033]l", 3, 0);
3652                                     ldisc_send(term->ldisc, p, len, 0);
3653                                     ldisc_send(term->ldisc, "\033\\", 2, 0);
3654                                 }
3655                                 break;
3656                             }
3657                         }
3658                         break;
3659                       case 'S':         /* SU: Scroll up */
3660                         compatibility(SCOANSI);
3661                         scroll(term, term->marg_t, term->marg_b,
3662                                def(term->esc_args[0], 1), TRUE);
3663                         term->wrapnext = FALSE;
3664                         seen_disp_event(term);
3665                         break;
3666                       case 'T':         /* SD: Scroll down */
3667                         compatibility(SCOANSI);
3668                         scroll(term, term->marg_t, term->marg_b,
3669                                -def(term->esc_args[0], 1), TRUE);
3670                         term->wrapnext = FALSE;
3671                         seen_disp_event(term);
3672                         break;
3673                       case ANSI('|', '*'): /* DECSNLS */
3674                         /* 
3675                          * Set number of lines on screen
3676                          * VT420 uses VGA like hardware and can
3677                          * support any size in reasonable range
3678                          * (24..49 AIUI) with no default specified.
3679                          */
3680                         compatibility(VT420);
3681                         if (term->esc_nargs == 1 && term->esc_args[0] > 0) {
3682                             if (!term->cfg.no_remote_resize)
3683                                 request_resize(term->frontend, term->cols,
3684                                                def(term->esc_args[0],
3685                                                    term->cfg.height));
3686                             deselect(term);
3687                         }
3688                         break;
3689                       case ANSI('|', '$'): /* DECSCPP */
3690                         /*
3691                          * Set number of columns per page
3692                          * Docs imply range is only 80 or 132, but
3693                          * I'll allow any.
3694                          */
3695                         compatibility(VT340TEXT);
3696                         if (term->esc_nargs <= 1) {
3697                             if (!term->cfg.no_remote_resize)
3698                                 request_resize(term->frontend,
3699                                                def(term->esc_args[0],
3700                                                    term->cfg.width), term->rows);
3701                             deselect(term);
3702                         }
3703                         break;
3704                       case 'X':     /* ECH: write N spaces w/o moving cursor */
3705                         /* XXX VTTEST says this is vt220, vt510 manual
3706                          * says vt100 */
3707                         compatibility(ANSIMIN);
3708                         {
3709                             int n = def(term->esc_args[0], 1);
3710                             pos cursplus;
3711                             int p = term->curs.x;
3712                             termline *cline = scrlineptr(term->curs.y);
3713
3714                             if (n > term->cols - term->curs.x)
3715                                 n = term->cols - term->curs.x;
3716                             cursplus = term->curs;
3717                             cursplus.x += n;
3718                             check_boundary(term, term->curs.x, term->curs.y);
3719                             check_boundary(term, term->curs.x+n, term->curs.y);
3720                             check_selection(term, term->curs, cursplus);
3721                             while (n--)
3722                                 copy_termchar(cline, p++,
3723                                               &term->erase_char);
3724                             seen_disp_event(term);
3725                         }
3726                         break;
3727                       case 'x':       /* DECREQTPARM: report terminal characteristics */
3728                         compatibility(VT100);
3729                         if (term->ldisc) {
3730                             char buf[32];
3731                             int i = def(term->esc_args[0], 0);
3732                             if (i == 0 || i == 1) {
3733                                 strcpy(buf, "\033[2;1;1;112;112;1;0x");
3734                                 buf[2] += i;
3735                                 ldisc_send(term->ldisc, buf, 20, 0);
3736                             }
3737                         }
3738                         break;
3739                       case 'Z':         /* CBT: BackTab for xterm */
3740                         compatibility(OTHER);
3741                         {
3742                             int i = def(term->esc_args[0], 1);
3743                             pos old_curs = term->curs;
3744
3745                             for(;i>0 && term->curs.x>0; i--) {
3746                                 do {
3747                                     term->curs.x--;
3748                                 } while (term->curs.x >0 &&
3749                                          !term->tabs[term->curs.x]);
3750                             }
3751                             check_selection(term, old_curs, term->curs);
3752                         }
3753                         break;
3754                       case ANSI('c', '='):      /* Hide or Show Cursor */
3755                         compatibility(SCOANSI);
3756                         switch(term->esc_args[0]) {
3757                           case 0:  /* hide cursor */
3758                             term->cursor_on = FALSE;
3759                             break;
3760                           case 1:  /* restore cursor */
3761                             term->big_cursor = FALSE;
3762                             term->cursor_on = TRUE;
3763                             break;
3764                           case 2:  /* block cursor */
3765                             term->big_cursor = TRUE;
3766                             term->cursor_on = TRUE;
3767                             break;
3768                         }
3769                         break;
3770                       case ANSI('C', '='):
3771                         /*
3772                          * set cursor start on scanline esc_args[0] and
3773                          * end on scanline esc_args[1].If you set
3774                          * the bottom scan line to a value less than
3775                          * the top scan line, the cursor will disappear.
3776                          */
3777                         compatibility(SCOANSI);
3778                         if (term->esc_nargs >= 2) {
3779                             if (term->esc_args[0] > term->esc_args[1])
3780                                 term->cursor_on = FALSE;
3781                             else
3782                                 term->cursor_on = TRUE;
3783                         }
3784                         break;
3785                       case ANSI('D', '='):
3786                         compatibility(SCOANSI);
3787                         term->blink_is_real = FALSE;
3788                         term_schedule_tblink(term);
3789                         if (term->esc_args[0]>=1)
3790                             term->curr_attr |= ATTR_BLINK;
3791                         else
3792                             term->curr_attr &= ~ATTR_BLINK;
3793                         break;
3794                       case ANSI('E', '='):
3795                         compatibility(SCOANSI);
3796                         term->blink_is_real = (term->esc_args[0] >= 1);
3797                         term_schedule_tblink(term);
3798                         break;
3799                       case ANSI('F', '='):      /* set normal foreground */
3800                         compatibility(SCOANSI);
3801                         if (term->esc_args[0] >= 0 && term->esc_args[0] < 16) {
3802                             long colour =
3803                                 (sco2ansicolour[term->esc_args[0] & 0x7] |
3804                                  ((term->esc_args[0] & 0x8) << 1)) <<
3805                                 ATTR_FGSHIFT;
3806                             term->curr_attr &= ~ATTR_FGMASK;
3807                             term->curr_attr |= colour;
3808                             term->default_attr &= ~ATTR_FGMASK;
3809                             term->default_attr |= colour;
3810                         }
3811                         break;
3812                       case ANSI('G', '='):      /* set normal background */
3813                         compatibility(SCOANSI);
3814                         if (term->esc_args[0] >= 0 && term->esc_args[0] < 16) {
3815                             long colour =
3816                                 (sco2ansicolour[term->esc_args[0] & 0x7] |
3817                                  ((term->esc_args[0] & 0x8) << 1)) <<
3818                                 ATTR_BGSHIFT;
3819                             term->curr_attr &= ~ATTR_BGMASK;
3820                             term->curr_attr |= colour;
3821                             term->default_attr &= ~ATTR_BGMASK;
3822                             term->default_attr |= colour;
3823                         }
3824                         break;
3825                       case ANSI('L', '='):
3826                         compatibility(SCOANSI);
3827                         term->use_bce = (term->esc_args[0] <= 0);
3828                         set_erase_char(term);
3829                         break;
3830                       case ANSI('p', '"'): /* DECSCL: set compat level */
3831                         /*
3832                          * Allow the host to make this emulator a
3833                          * 'perfect' VT102. This first appeared in
3834                          * the VT220, but we do need to get back to
3835                          * PuTTY mode so I won't check it.
3836                          *
3837                          * The arg in 40..42,50 are a PuTTY extension.
3838                          * The 2nd arg, 8bit vs 7bit is not checked.
3839                          *
3840                          * Setting VT102 mode should also change
3841                          * the Fkeys to generate PF* codes as a
3842                          * real VT102 has no Fkeys. The VT220 does
3843                          * this, F11..F13 become ESC,BS,LF other
3844                          * Fkeys send nothing.
3845                          *
3846                          * Note ESC c will NOT change this!
3847                          */
3848
3849                         switch (term->esc_args[0]) {
3850                           case 61:
3851                             term->compatibility_level &= ~TM_VTXXX;
3852                             term->compatibility_level |= TM_VT102;
3853                             break;
3854                           case 62:
3855                             term->compatibility_level &= ~TM_VTXXX;
3856                             term->compatibility_level |= TM_VT220;
3857                             break;
3858
3859                           default:
3860                             if (term->esc_args[0] > 60 &&
3861                                 term->esc_args[0] < 70)
3862                                 term->compatibility_level |= TM_VTXXX;
3863                             break;
3864
3865                           case 40:
3866                             term->compatibility_level &= TM_VTXXX;
3867                             break;
3868                           case 41:
3869                             term->compatibility_level = TM_PUTTY;
3870                             break;
3871                           case 42:
3872                             term->compatibility_level = TM_SCOANSI;
3873                             break;
3874
3875                           case ARG_DEFAULT:
3876                             term->compatibility_level = TM_PUTTY;
3877                             break;
3878                           case 50:
3879                             break;
3880                         }
3881
3882                         /* Change the response to CSI c */
3883                         if (term->esc_args[0] == 50) {
3884                             int i;
3885                             char lbuf[64];
3886                             strcpy(term->id_string, "\033[?");
3887                             for (i = 1; i < term->esc_nargs; i++) {
3888                                 if (i != 1)
3889                                     strcat(term->id_string, ";");
3890                                 sprintf(lbuf, "%d", term->esc_args[i]);
3891                                 strcat(term->id_string, lbuf);
3892                             }
3893                             strcat(term->id_string, "c");
3894                         }
3895 #if 0
3896                         /* Is this a good idea ? 
3897                          * Well we should do a soft reset at this point ...
3898                          */
3899                         if (!has_compat(VT420) && has_compat(VT100)) {
3900                             if (!term->cfg.no_remote_resize) {
3901                                 if (term->reset_132)
3902                                     request_resize(132, 24);
3903                                 else
3904                                     request_resize(80, 24);
3905                             }
3906                         }
3907 #endif
3908                         break;
3909                     }
3910                 break;
3911               case SEEN_OSC:
3912                 term->osc_w = FALSE;
3913                 switch (c) {
3914                   case 'P':            /* Linux palette sequence */
3915                     term->termstate = SEEN_OSC_P;
3916                     term->osc_strlen = 0;
3917                     break;
3918                   case 'R':            /* Linux palette reset */
3919                     palette_reset(term->frontend);
3920                     term_invalidate(term);
3921                     term->termstate = TOPLEVEL;
3922                     break;
3923                   case 'W':            /* word-set */
3924                     term->termstate = SEEN_OSC_W;
3925                     term->osc_w = TRUE;
3926                     break;
3927                   case '0':
3928                   case '1':
3929                   case '2':
3930                   case '3':
3931                   case '4':
3932                   case '5':
3933                   case '6':
3934                   case '7':
3935                   case '8':
3936                   case '9':
3937                     term->esc_args[0] = 10 * term->esc_args[0] + c - '0';
3938                     break;
3939                   case 'L':
3940                     /*
3941                      * Grotty hack to support xterm and DECterm title
3942                      * sequences concurrently.
3943                      */
3944                     if (term->esc_args[0] == 2) {
3945                         term->esc_args[0] = 1;
3946                         break;
3947                     }
3948                     /* else fall through */
3949                   default:
3950                     term->termstate = OSC_STRING;
3951                     term->osc_strlen = 0;
3952                 }
3953                 break;
3954               case OSC_STRING:
3955                 /*
3956                  * This OSC stuff is EVIL. It takes just one character to get into
3957                  * sysline mode and it's not initially obvious how to get out.
3958                  * So I've added CR and LF as string aborts.
3959                  * This shouldn't effect compatibility as I believe embedded 
3960                  * control characters are supposed to be interpreted (maybe?) 
3961                  * and they don't display anything useful anyway.
3962                  *
3963                  * -- RDB
3964                  */
3965                 if (c == '\012' || c == '\015') {
3966                     term->termstate = TOPLEVEL;
3967                 } else if (c == 0234 || c == '\007') {
3968                     /*
3969                      * These characters terminate the string; ST and BEL
3970                      * terminate the sequence and trigger instant
3971                      * processing of it, whereas ESC goes back to SEEN_ESC
3972                      * mode unless it is followed by \, in which case it is
3973                      * synonymous with ST in the first place.
3974                      */
3975                     do_osc(term);
3976                     term->termstate = TOPLEVEL;
3977                 } else if (c == '\033')
3978                     term->termstate = OSC_MAYBE_ST;
3979                 else if (term->osc_strlen < OSC_STR_MAX)
3980                     term->osc_string[term->osc_strlen++] = (char)c;
3981                 break;
3982               case SEEN_OSC_P:
3983                 {
3984                     int max = (term->osc_strlen == 0 ? 21 : 16);
3985                     int val;
3986                     if ((int)c >= '0' && (int)c <= '9')
3987                         val = c - '0';
3988                     else if ((int)c >= 'A' && (int)c <= 'A' + max - 10)
3989                         val = c - 'A' + 10;
3990                     else if ((int)c >= 'a' && (int)c <= 'a' + max - 10)
3991                         val = c - 'a' + 10;
3992                     else {
3993                         term->termstate = TOPLEVEL;
3994                         break;
3995                     }
3996                     term->osc_string[term->osc_strlen++] = val;
3997                     if (term->osc_strlen >= 7) {
3998                         palette_set(term->frontend, term->osc_string[0],
3999                                     term->osc_string[1] * 16 + term->osc_string[2],
4000                                     term->osc_string[3] * 16 + term->osc_string[4],
4001                                     term->osc_string[5] * 16 + term->osc_string[6]);
4002                         term_invalidate(term);
4003                         term->termstate = TOPLEVEL;
4004                     }
4005                 }
4006                 break;
4007               case SEEN_OSC_W:
4008                 switch (c) {
4009                   case '0':
4010                   case '1':
4011                   case '2':
4012                   case '3':
4013                   case '4':
4014                   case '5':
4015                   case '6':
4016                   case '7':
4017                   case '8':
4018                   case '9':
4019                     term->esc_args[0] = 10 * term->esc_args[0] + c - '0';
4020                     break;
4021                   default:
4022                     term->termstate = OSC_STRING;
4023                     term->osc_strlen = 0;
4024                 }
4025                 break;
4026               case VT52_ESC:
4027                 term->termstate = TOPLEVEL;
4028                 seen_disp_event(term);
4029                 switch (c) {
4030                   case 'A':
4031                     move(term, term->curs.x, term->curs.y - 1, 1);
4032                     break;
4033                   case 'B':
4034                     move(term, term->curs.x, term->curs.y + 1, 1);
4035                     break;
4036                   case 'C':
4037                     move(term, term->curs.x + 1, term->curs.y, 1);
4038                     break;
4039                   case 'D':
4040                     move(term, term->curs.x - 1, term->curs.y, 1);
4041                     break;
4042                     /*
4043                      * From the VT100 Manual
4044                      * NOTE: The special graphics characters in the VT100
4045                      *       are different from those in the VT52
4046                      *
4047                      * From VT102 manual:
4048                      *       137 _  Blank             - Same
4049                      *       140 `  Reserved          - Humm.
4050                      *       141 a  Solid rectangle   - Similar
4051                      *       142 b  1/                - Top half of fraction for the
4052                      *       143 c  3/                - subscript numbers below.
4053                      *       144 d  5/
4054                      *       145 e  7/
4055                      *       146 f  Degrees           - Same
4056                      *       147 g  Plus or minus     - Same
4057                      *       150 h  Right arrow
4058                      *       151 i  Ellipsis (dots)
4059                      *       152 j  Divide by
4060                      *       153 k  Down arrow
4061                      *       154 l  Bar at scan 0
4062                      *       155 m  Bar at scan 1
4063                      *       156 n  Bar at scan 2
4064                      *       157 o  Bar at scan 3     - Similar
4065                      *       160 p  Bar at scan 4     - Similar
4066                      *       161 q  Bar at scan 5     - Similar
4067                      *       162 r  Bar at scan 6     - Same
4068                      *       163 s  Bar at scan 7     - Similar
4069                      *       164 t  Subscript 0
4070                      *       165 u  Subscript 1
4071                      *       166 v  Subscript 2
4072                      *       167 w  Subscript 3
4073                      *       170 x  Subscript 4
4074                      *       171 y  Subscript 5
4075                      *       172 z  Subscript 6
4076                      *       173 {  Subscript 7
4077                      *       174 |  Subscript 8
4078                      *       175 }  Subscript 9
4079                      *       176 ~  Paragraph
4080                      *
4081                      */
4082                   case 'F':
4083                     term->cset_attr[term->cset = 0] = CSET_LINEDRW;
4084                     break;
4085                   case 'G':
4086                     term->cset_attr[term->cset = 0] = CSET_ASCII;
4087                     break;
4088                   case 'H':
4089                     move(term, 0, 0, 0);
4090                     break;
4091                   case 'I':
4092                     if (term->curs.y == 0)
4093                         scroll(term, 0, term->rows - 1, -1, TRUE);
4094                     else if (term->curs.y > 0)
4095                         term->curs.y--;
4096                     term->wrapnext = FALSE;
4097                     break;
4098                   case 'J':
4099                     erase_lots(term, FALSE, FALSE, TRUE);
4100                     term->disptop = 0;
4101                     break;
4102                   case 'K':
4103                     erase_lots(term, TRUE, FALSE, TRUE);
4104                     break;
4105 #if 0
4106                   case 'V':
4107                     /* XXX Print cursor line */
4108                     break;
4109                   case 'W':
4110                     /* XXX Start controller mode */
4111                     break;
4112                   case 'X':
4113                     /* XXX Stop controller mode */
4114                     break;
4115 #endif
4116                   case 'Y':
4117                     term->termstate = VT52_Y1;
4118                     break;
4119                   case 'Z':
4120                     if (term->ldisc)
4121                         ldisc_send(term->ldisc, "\033/Z", 3, 0);
4122                     break;
4123                   case '=':
4124                     term->app_keypad_keys = TRUE;
4125                     break;
4126                   case '>':
4127                     term->app_keypad_keys = FALSE;
4128                     break;
4129                   case '<':
4130                     /* XXX This should switch to VT100 mode not current or default
4131                      *     VT mode. But this will only have effect in a VT220+
4132                      *     emulation.
4133                      */
4134                     term->vt52_mode = FALSE;
4135                     term->blink_is_real = term->cfg.blinktext;
4136                     term_schedule_tblink(term);
4137                     break;
4138 #if 0
4139                   case '^':
4140                     /* XXX Enter auto print mode */
4141                     break;
4142                   case '_':
4143                     /* XXX Exit auto print mode */
4144                     break;
4145                   case ']':
4146                     /* XXX Print screen */
4147                     break;
4148 #endif
4149
4150 #ifdef VT52_PLUS
4151                   case 'E':
4152                     /* compatibility(ATARI) */
4153                     move(term, 0, 0, 0);
4154                     erase_lots(term, FALSE, FALSE, TRUE);
4155                     term->disptop = 0;
4156                     break;
4157                   case 'L':
4158                     /* compatibility(ATARI) */
4159                     if (term->curs.y <= term->marg_b)
4160                         scroll(term, term->curs.y, term->marg_b, -1, FALSE);
4161                     break;
4162                   case 'M':
4163                     /* compatibility(ATARI) */
4164                     if (term->curs.y <= term->marg_b)
4165                         scroll(term, term->curs.y, term->marg_b, 1, TRUE);
4166                     break;
4167                   case 'b':
4168                     /* compatibility(ATARI) */
4169                     term->termstate = VT52_FG;
4170                     break;
4171                   case 'c':
4172                     /* compatibility(ATARI) */
4173                     term->termstate = VT52_BG;
4174                     break;
4175                   case 'd':
4176                     /* compatibility(ATARI) */
4177                     erase_lots(term, FALSE, TRUE, FALSE);
4178                     term->disptop = 0;
4179                     break;
4180                   case 'e':
4181                     /* compatibility(ATARI) */
4182                     term->cursor_on = TRUE;
4183                     break;
4184                   case 'f':
4185                     /* compatibility(ATARI) */
4186                     term->cursor_on = FALSE;
4187                     break;
4188                     /* case 'j': Save cursor position - broken on ST */
4189                     /* case 'k': Restore cursor position */
4190                   case 'l':
4191                     /* compatibility(ATARI) */
4192                     erase_lots(term, TRUE, TRUE, TRUE);
4193                     term->curs.x = 0;
4194                     term->wrapnext = FALSE;
4195                     break;
4196                   case 'o':
4197                     /* compatibility(ATARI) */
4198                     erase_lots(term, TRUE, TRUE, FALSE);
4199                     break;
4200                   case 'p':
4201                     /* compatibility(ATARI) */
4202                     term->curr_attr |= ATTR_REVERSE;
4203                     break;
4204                   case 'q':
4205                     /* compatibility(ATARI) */
4206                     term->curr_attr &= ~ATTR_REVERSE;
4207                     break;
4208                   case 'v':            /* wrap Autowrap on - Wyse style */
4209                     /* compatibility(ATARI) */
4210                     term->wrap = 1;
4211                     break;
4212                   case 'w':            /* Autowrap off */
4213                     /* compatibility(ATARI) */
4214                     term->wrap = 0;
4215                     break;
4216
4217                   case 'R':
4218                     /* compatibility(OTHER) */
4219                     term->vt52_bold = FALSE;
4220                     term->curr_attr = ATTR_DEFAULT;
4221                     set_erase_char(term);
4222                     break;
4223                   case 'S':
4224                     /* compatibility(VI50) */
4225                     term->curr_attr |= ATTR_UNDER;
4226                     break;
4227                   case 'W':
4228                     /* compatibility(VI50) */
4229                     term->curr_attr &= ~ATTR_UNDER;
4230                     break;
4231                   case 'U':
4232                     /* compatibility(VI50) */
4233                     term->vt52_bold = TRUE;
4234                     term->curr_attr |= ATTR_BOLD;
4235                     break;
4236                   case 'T':
4237                     /* compatibility(VI50) */
4238                     term->vt52_bold = FALSE;
4239                     term->curr_attr &= ~ATTR_BOLD;
4240                     break;
4241 #endif
4242                 }
4243                 break;
4244               case VT52_Y1:
4245                 term->termstate = VT52_Y2;
4246                 move(term, term->curs.x, c - ' ', 0);
4247                 break;
4248               case VT52_Y2:
4249                 term->termstate = TOPLEVEL;
4250                 move(term, c - ' ', term->curs.y, 0);
4251                 break;
4252
4253 #ifdef VT52_PLUS
4254               case VT52_FG:
4255                 term->termstate = TOPLEVEL;
4256                 term->curr_attr &= ~ATTR_FGMASK;
4257                 term->curr_attr &= ~ATTR_BOLD;
4258                 term->curr_attr |= (c & 0x7) << ATTR_FGSHIFT;
4259                 if ((c & 0x8) || term->vt52_bold)
4260                     term->curr_attr |= ATTR_BOLD;
4261
4262                 set_erase_char(term);
4263                 break;
4264               case VT52_BG:
4265                 term->termstate = TOPLEVEL;
4266                 term->curr_attr &= ~ATTR_BGMASK;
4267                 term->curr_attr &= ~ATTR_BLINK;
4268                 term->curr_attr |= (c & 0x7) << ATTR_BGSHIFT;
4269
4270                 /* Note: bold background */
4271                 if (c & 0x8)
4272                     term->curr_attr |= ATTR_BLINK;
4273
4274                 set_erase_char(term);
4275                 break;
4276 #endif
4277               default: break;          /* placate gcc warning about enum use */
4278             }
4279         if (term->selstate != NO_SELECTION) {
4280             pos cursplus = term->curs;
4281             incpos(cursplus);
4282             check_selection(term, term->curs, cursplus);
4283         }
4284     }
4285
4286     term_print_flush(term);
4287     logflush(term->logctx);
4288 }
4289
4290 /*
4291  * To prevent having to run the reasonably tricky bidi algorithm
4292  * too many times, we maintain a cache of the last lineful of data
4293  * fed to the algorithm on each line of the display.
4294  */
4295 static int term_bidi_cache_hit(Terminal *term, int line,
4296                                termchar *lbefore, int width)
4297 {
4298     int i;
4299
4300     if (!term->pre_bidi_cache)
4301         return FALSE;                  /* cache doesn't even exist yet! */
4302
4303     if (line >= term->bidi_cache_size)
4304         return FALSE;                  /* cache doesn't have this many lines */
4305
4306     if (!term->pre_bidi_cache[line].chars)
4307         return FALSE;                  /* cache doesn't contain _this_ line */
4308
4309     if (term->pre_bidi_cache[line].width != width)
4310         return FALSE;                  /* line is wrong width */
4311
4312     for (i = 0; i < width; i++)
4313         if (!termchars_equal(term->pre_bidi_cache[line].chars+i, lbefore+i))
4314             return FALSE;              /* line doesn't match cache */
4315
4316     return TRUE;                       /* it didn't match. */
4317 }
4318
4319 static void term_bidi_cache_store(Terminal *term, int line, termchar *lbefore,
4320                                   termchar *lafter, int width)
4321 {
4322     if (!term->pre_bidi_cache || term->bidi_cache_size <= line) {
4323         int j = term->bidi_cache_size;
4324         term->bidi_cache_size = line+1;
4325         term->pre_bidi_cache = sresize(term->pre_bidi_cache,
4326                                        term->bidi_cache_size,
4327                                        struct bidi_cache_entry);
4328         term->post_bidi_cache = sresize(term->post_bidi_cache,
4329                                         term->bidi_cache_size,
4330                                         struct bidi_cache_entry);
4331         while (j < term->bidi_cache_size) {
4332             term->pre_bidi_cache[j].chars =
4333                 term->post_bidi_cache[j].chars = NULL;
4334             term->pre_bidi_cache[j].width =
4335                 term->post_bidi_cache[j].width = -1;
4336             j++;
4337         }
4338     }
4339
4340     sfree(term->pre_bidi_cache[line].chars);
4341     sfree(term->post_bidi_cache[line].chars);
4342
4343     term->pre_bidi_cache[line].width = width;
4344     term->pre_bidi_cache[line].chars = snewn(width, termchar);
4345     term->post_bidi_cache[line].width = width;
4346     term->post_bidi_cache[line].chars = snewn(width, termchar);
4347
4348     memcpy(term->pre_bidi_cache[line].chars, lbefore, width * TSIZE);
4349     memcpy(term->post_bidi_cache[line].chars, lafter, width * TSIZE);
4350 }
4351
4352 /*
4353  * Given a context, update the window. Out of paranoia, we don't
4354  * allow WM_PAINT responses to do scrolling optimisations.
4355  */
4356 static void do_paint(Terminal *term, Context ctx, int may_optimise)
4357 {
4358     int i, it, j, our_curs_y, our_curs_x;
4359     int rv, cursor;
4360     pos scrpos;
4361     wchar_t *ch;
4362     int chlen;
4363     termchar cursor_background;
4364 #ifdef OPTIMISE_SCROLL
4365     struct scrollregion *sr;
4366 #endif /* OPTIMISE_SCROLL */
4367
4368     cursor_background = term->basic_erase_char;
4369
4370     chlen = 1024;
4371     ch = snewn(chlen, wchar_t);
4372
4373     rv = (!term->rvideo ^ !term->in_vbell ? ATTR_REVERSE : 0);
4374
4375     /* Depends on:
4376      * screen array, disptop, scrtop,
4377      * selection, rv, 
4378      * cfg.blinkpc, blink_is_real, tblinker, 
4379      * curs.y, curs.x, cblinker, cfg.blink_cur, cursor_on, has_focus, wrapnext
4380      */
4381
4382     /* Has the cursor position or type changed ? */
4383     if (term->cursor_on) {
4384         if (term->has_focus) {
4385             if (term->cblinker || !term->cfg.blink_cur)
4386                 cursor = TATTR_ACTCURS;
4387             else
4388                 cursor = 0;
4389         } else
4390             cursor = TATTR_PASCURS;
4391         if (term->wrapnext)
4392             cursor |= TATTR_RIGHTCURS;
4393     } else
4394         cursor = 0;
4395     our_curs_y = term->curs.y - term->disptop;
4396     {
4397         /*
4398          * Adjust the cursor position in the case where it's
4399          * resting on the right-hand half of a CJK wide character.
4400          * xterm's behaviour here, which seems adequate to me, is
4401          * to display the cursor covering the _whole_ character,
4402          * exactly as if it were one space to the left.
4403          */
4404         termline *ldata = lineptr(term->curs.y);
4405         our_curs_x = term->curs.x;
4406         if (our_curs_x > 0 &&
4407             ldata->chars[our_curs_x].chr == UCSWIDE)
4408             our_curs_x--;
4409         unlineptr(ldata);
4410     }
4411
4412     /*
4413      * If the cursor is not where it was last time we painted, and
4414      * its previous position is visible on screen, invalidate its
4415      * previous position.
4416      */
4417     if (term->dispcursy >= 0 &&
4418         (term->curstype != cursor ||
4419          term->dispcursy != our_curs_y ||
4420          term->dispcursx != our_curs_x)) {
4421         termchar *dispcurs = term->disptext[term->dispcursy]->chars +
4422             term->dispcursx;
4423
4424         if (term->dispcursx > 0 && dispcurs->chr == UCSWIDE)
4425             dispcurs[-1].attr |= ATTR_INVALID;
4426         if (term->dispcursx < term->cols-1 && dispcurs[1].chr == UCSWIDE)
4427             dispcurs[1].attr |= ATTR_INVALID;
4428         dispcurs->attr |= ATTR_INVALID;
4429
4430         term->curstype = 0;
4431     }
4432     term->dispcursx = term->dispcursy = -1;
4433
4434 #ifdef OPTIMISE_SCROLL
4435     /* Do scrolls */
4436     sr = term->scrollhead;
4437     while (sr) {
4438         struct scrollregion *next = sr->next;
4439         do_scroll(ctx, sr->topline, sr->botline, sr->lines);
4440         sfree(sr);
4441         sr = next;
4442     }
4443     term->scrollhead = term->scrolltail = NULL;
4444 #endif /* OPTIMISE_SCROLL */
4445
4446     /* The normal screen data */
4447     for (i = 0; i < term->rows; i++) {
4448         termline *ldata;
4449         termchar *lchars;
4450         int dirty_line, dirty_run, selected;
4451         unsigned long attr = 0, cset = 0;
4452         int updated_line = 0;
4453         int start = 0;
4454         int ccount = 0;
4455         int last_run_dirty = 0;
4456
4457         scrpos.y = i + term->disptop;
4458         ldata = lineptr(scrpos.y);
4459
4460         dirty_run = dirty_line = (ldata->lattr !=
4461                                   term->disptext[i]->lattr);
4462         term->disptext[i]->lattr = ldata->lattr;
4463
4464         /* Do Arabic shaping and bidi. */
4465         if(!term->cfg.bidi || !term->cfg.arabicshaping) {
4466
4467             if (!term_bidi_cache_hit(term, i, ldata->chars, term->cols)) {
4468
4469                 if (term->wcFromTo_size < term->cols) {
4470                     term->wcFromTo_size = term->cols;
4471                     term->wcFrom = sresize(term->wcFrom, term->wcFromTo_size,
4472                                            bidi_char);
4473                     term->wcTo = sresize(term->wcTo, term->wcFromTo_size,
4474                                          bidi_char);
4475                 }
4476
4477                 for(it=0; it<term->cols ; it++)
4478                 {
4479                     unsigned long uc = (ldata->chars[it].chr);
4480
4481                     switch (uc & CSET_MASK) {
4482                       case CSET_LINEDRW:
4483                         if (!term->cfg.rawcnp) {
4484                             uc = term->ucsdata->unitab_xterm[uc & 0xFF];
4485                             break;
4486                         }
4487                       case CSET_ASCII:
4488                         uc = term->ucsdata->unitab_line[uc & 0xFF];
4489                         break;
4490                       case CSET_SCOACS:
4491                         uc = term->ucsdata->unitab_scoacs[uc&0xFF];
4492                         break;
4493                     }
4494                     switch (uc & CSET_MASK) {
4495                       case CSET_ACP:
4496                         uc = term->ucsdata->unitab_font[uc & 0xFF];
4497                         break;
4498                       case CSET_OEMCP:
4499                         uc = term->ucsdata->unitab_oemcp[uc & 0xFF];
4500                         break;
4501                     }
4502
4503                     term->wcFrom[it].origwc = term->wcFrom[it].wc =
4504                         (wchar_t)uc;
4505                     term->wcFrom[it].index = it;
4506                 }
4507
4508                 if(!term->cfg.bidi)
4509                     do_bidi(term->wcFrom, term->cols);
4510
4511                 /* this is saved iff done from inside the shaping */
4512                 if(!term->cfg.bidi && term->cfg.arabicshaping)
4513                     for(it=0; it<term->cols; it++)
4514                         term->wcTo[it] = term->wcFrom[it];
4515
4516                 if(!term->cfg.arabicshaping)
4517                     do_shape(term->wcFrom, term->wcTo, term->cols);
4518
4519                 if (term->ltemp_size < ldata->size) {
4520                     term->ltemp_size = ldata->size;
4521                     term->ltemp = sresize(term->ltemp, term->ltemp_size,
4522                                           termchar);
4523                 }
4524
4525                 memcpy(term->ltemp, ldata->chars, ldata->size * TSIZE);
4526
4527                 for(it=0; it<term->cols ; it++)
4528                 {
4529                     term->ltemp[it] = ldata->chars[term->wcTo[it].index];
4530                     if (term->ltemp[it].cc_next)
4531                         term->ltemp[it].cc_next -=
4532                         it - term->wcTo[it].index;
4533
4534                     if (term->wcTo[it].origwc != term->wcTo[it].wc)
4535                         term->ltemp[it].chr = term->wcTo[it].wc;
4536                 }
4537                 term_bidi_cache_store(term, i, ldata->chars,
4538                                       term->ltemp, ldata->size);
4539
4540                 lchars = term->ltemp;
4541             } else {
4542                 lchars = term->post_bidi_cache[i].chars;
4543             }
4544         } else
4545             lchars = ldata->chars;
4546
4547         for (j = 0; j < term->cols; j++) {
4548             unsigned long tattr, tchar;
4549             termchar *d = lchars + j;
4550             int break_run, do_copy;
4551             scrpos.x = j;
4552
4553             tchar = d->chr;
4554             tattr = d->attr;
4555
4556             if (!term->cfg.ansi_colour)
4557                 tattr = (tattr & ~(ATTR_FGMASK | ATTR_BGMASK)) | 
4558                 ATTR_DEFFG | ATTR_DEFBG;
4559
4560             switch (tchar & CSET_MASK) {
4561               case CSET_ASCII:
4562                 tchar = term->ucsdata->unitab_line[tchar & 0xFF];
4563                 break;
4564               case CSET_LINEDRW:
4565                 tchar = term->ucsdata->unitab_xterm[tchar & 0xFF];
4566                 break;
4567               case CSET_SCOACS:  
4568                 tchar = term->ucsdata->unitab_scoacs[tchar&0xFF]; 
4569                 break;
4570             }
4571             if (j < term->cols-1 && d[1].chr == UCSWIDE)
4572                 tattr |= ATTR_WIDE;
4573
4574             /* Video reversing things */
4575             if (term->selstate == DRAGGING || term->selstate == SELECTED) {
4576                 if (term->seltype == LEXICOGRAPHIC)
4577                     selected = (posle(term->selstart, scrpos) &&
4578                                 poslt(scrpos, term->selend));
4579                 else
4580                     selected = (posPle(term->selstart, scrpos) &&
4581                                 posPlt(scrpos, term->selend));
4582             } else
4583                 selected = FALSE;
4584             tattr = (tattr ^ rv
4585                      ^ (selected ? ATTR_REVERSE : 0));
4586
4587             /* 'Real' blinking ? */
4588             if (term->blink_is_real && (tattr & ATTR_BLINK)) {
4589                 if (term->has_focus && term->tblinker) {
4590                     tchar = term->ucsdata->unitab_line[(unsigned char)' '];
4591                 }
4592                 tattr &= ~ATTR_BLINK;
4593             }
4594
4595             /*
4596              * Check the font we'll _probably_ be using to see if 
4597              * the character is wide when we don't want it to be.
4598              */
4599             if (tchar != term->disptext[i]->chars[j].chr ||
4600                 tattr != (term->disptext[i]->chars[j].attr &~
4601                           ATTR_NARROW)) {
4602                 if ((tattr & ATTR_WIDE) == 0 && char_width(ctx, tchar) == 2)
4603                     tattr |= ATTR_NARROW;
4604             } else if (term->disptext[i]->chars[j].attr & ATTR_NARROW)
4605                 tattr |= ATTR_NARROW;
4606
4607             /* Cursor here ? Save the 'background' */
4608             if (i == our_curs_y && j == our_curs_x) {
4609                 /* FULL-TERMCHAR */
4610                 cursor_background.chr = tchar;
4611                 cursor_background.attr = tattr;
4612                 /* For once, this cc_next field is an absolute index in lchars */
4613                 if (d->cc_next)
4614                     cursor_background.cc_next = d->cc_next + j;
4615                 else
4616                     cursor_background.cc_next = 0;
4617                 term->dispcursx = j;
4618                 term->dispcursy = i;
4619             }
4620
4621             if ((term->disptext[i]->chars[j].attr ^ tattr) & ATTR_WIDE)
4622                 dirty_line = TRUE;
4623
4624             break_run = ((tattr ^ attr) & term->attr_mask) != 0;
4625
4626             /* Special hack for VT100 Linedraw glyphs */
4627             if (tchar >= 0x23BA && tchar <= 0x23BD)
4628                 break_run = TRUE;
4629
4630             /*
4631              * Separate out sequences of characters that have the
4632              * same CSET, if that CSET is a magic one.
4633              */
4634             if (CSET_OF(tchar) != cset)
4635                 break_run = TRUE;
4636
4637             /*
4638              * Break on both sides of any combined-character cell.
4639              */
4640             if (d->cc_next != 0 ||
4641                 (j > 0 && d[-1].cc_next != 0))
4642                 break_run = TRUE;
4643
4644             if (!term->ucsdata->dbcs_screenfont && !dirty_line) {
4645                 if (term->disptext[i]->chars[j].chr == tchar &&
4646                     term->disptext[i]->chars[j].attr == tattr)
4647                     break_run = TRUE;
4648                 else if (!dirty_run && ccount == 1)
4649                     break_run = TRUE;
4650             }
4651
4652             if (break_run) {
4653                 if ((dirty_run || last_run_dirty) && ccount > 0) {
4654                     do_text(ctx, start, i, ch, ccount, attr, ldata->lattr);
4655                     updated_line = 1;
4656                 }
4657                 start = j;
4658                 ccount = 0;
4659                 attr = tattr;
4660                 cset = CSET_OF(tchar);
4661                 if (term->ucsdata->dbcs_screenfont)
4662                     last_run_dirty = dirty_run;
4663                 dirty_run = dirty_line;
4664             }
4665
4666             do_copy = FALSE;
4667             if (!termchars_equal_override(&term->disptext[i]->chars[j],
4668                                           d, tchar, tattr)) {
4669                 do_copy = TRUE;
4670                 dirty_run = TRUE;
4671             }
4672
4673             if (ccount >= chlen) {
4674                 chlen = ccount + 256;
4675                 ch = sresize(ch, chlen, wchar_t);
4676             }
4677             ch[ccount++] = (wchar_t) tchar;
4678
4679             if (d->cc_next) {
4680                 termchar *dd = d;
4681
4682                 while (dd->cc_next) {
4683                     unsigned long schar;
4684
4685                     dd += dd->cc_next;
4686
4687                     schar = dd->chr;
4688                     switch (schar & CSET_MASK) {
4689                       case CSET_ASCII:
4690                         schar = term->ucsdata->unitab_line[schar & 0xFF];
4691                         break;
4692                       case CSET_LINEDRW:
4693                         schar = term->ucsdata->unitab_xterm[schar & 0xFF];
4694                         break;
4695                       case CSET_SCOACS:
4696                         schar = term->ucsdata->unitab_scoacs[schar&0xFF];
4697                         break;
4698                     }
4699
4700                     if (ccount >= chlen) {
4701                         chlen = ccount + 256;
4702                         ch = sresize(ch, chlen, wchar_t);
4703                     }
4704                     ch[ccount++] = (wchar_t) schar;
4705                 }
4706
4707                 attr |= TATTR_COMBINING;
4708             }
4709
4710             if (do_copy) {
4711                 copy_termchar(term->disptext[i], j, d);
4712                 term->disptext[i]->chars[j].chr = tchar;
4713                 term->disptext[i]->chars[j].attr = tattr;
4714             }
4715
4716             /* If it's a wide char step along to the next one. */
4717             if (tattr & ATTR_WIDE) {
4718                 if (++j < term->cols) {
4719                     d++;
4720                     /*
4721                      * By construction above, the cursor should not
4722                      * be on the right-hand half of this character.
4723                      * Ever.
4724                      */
4725                     assert(!(i == our_curs_y && j == our_curs_x));
4726                     if (!termchars_equal(&term->disptext[i]->chars[j], d))
4727                         dirty_run = TRUE;
4728                     copy_termchar(term->disptext[i], j, d);
4729                 }
4730             }
4731         }
4732         if (dirty_run && ccount > 0) {
4733             do_text(ctx, start, i, ch, ccount, attr, ldata->lattr);
4734             updated_line = 1;
4735         }
4736
4737         /* Cursor on this line ? (and changed) */
4738         if (i == our_curs_y && (term->curstype != cursor || updated_line)) {
4739             ch[0] = (wchar_t) cursor_background.chr;
4740             attr = cursor_background.attr | cursor;
4741             ccount = 1;
4742
4743             if (cursor_background.cc_next) {
4744                 termchar *dd = ldata->chars + cursor_background.cc_next;
4745
4746                 while (1) {
4747                     unsigned long schar;
4748
4749                     schar = dd->chr;
4750                     switch (schar & CSET_MASK) {
4751                       case CSET_ASCII:
4752                         schar = term->ucsdata->unitab_line[schar & 0xFF];
4753                         break;
4754                       case CSET_LINEDRW:
4755                         schar = term->ucsdata->unitab_xterm[schar & 0xFF];
4756                         break;
4757                       case CSET_SCOACS:
4758                         schar = term->ucsdata->unitab_scoacs[schar&0xFF];
4759                         break;
4760                     }
4761
4762                     if (ccount >= chlen) {
4763                         chlen = ccount + 256;
4764                         ch = sresize(ch, chlen, wchar_t);
4765                     }
4766                     ch[ccount++] = (wchar_t) schar;
4767
4768                     if (dd->cc_next)
4769                         dd += dd->cc_next;
4770                     else
4771                         break;
4772                 }
4773
4774                 attr |= TATTR_COMBINING;
4775             }
4776
4777             do_cursor(ctx, our_curs_x, i, ch, ccount, attr, ldata->lattr);
4778             term->curstype = cursor;
4779         }
4780
4781         unlineptr(ldata);
4782     }
4783
4784     sfree(ch);
4785 }
4786
4787 /*
4788  * Invalidate the whole screen so it will be repainted in full.
4789  */
4790 void term_invalidate(Terminal *term)
4791 {
4792     int i, j;
4793
4794     for (i = 0; i < term->rows; i++)
4795         for (j = 0; j < term->cols; j++)
4796             term->disptext[i]->chars[j].attr = ATTR_INVALID;
4797 }
4798
4799 /*
4800  * Paint the window in response to a WM_PAINT message.
4801  */
4802 void term_paint(Terminal *term, Context ctx,
4803                 int left, int top, int right, int bottom, int immediately)
4804 {
4805     int i, j;
4806     if (left < 0) left = 0;
4807     if (top < 0) top = 0;
4808     if (right >= term->cols) right = term->cols-1;
4809     if (bottom >= term->rows) bottom = term->rows-1;
4810
4811     for (i = top; i <= bottom && i < term->rows; i++) {
4812         if ((term->disptext[i]->lattr & LATTR_MODE) == LATTR_NORM)
4813             for (j = left; j <= right && j < term->cols; j++)
4814                 term->disptext[i]->chars[j].attr = ATTR_INVALID;
4815         else
4816             for (j = left / 2; j <= right / 2 + 1 && j < term->cols; j++)
4817                 term->disptext[i]->chars[j].attr = ATTR_INVALID;
4818     }
4819
4820     if (immediately) {
4821         do_paint (term, ctx, FALSE);
4822     } else {
4823         if (!term->window_update_pending) {
4824             term->window_update_pending = TRUE;
4825             term->next_update = schedule_timer(UPDATE_DELAY, term_timer, term);
4826         }
4827     }
4828 }
4829
4830 /*
4831  * Attempt to scroll the scrollback. The second parameter gives the
4832  * position we want to scroll to; the first is +1 to denote that
4833  * this position is relative to the beginning of the scrollback, -1
4834  * to denote it is relative to the end, and 0 to denote that it is
4835  * relative to the current position.
4836  */
4837 void term_scroll(Terminal *term, int rel, int where)
4838 {
4839     int sbtop = -sblines(term);
4840 #ifdef OPTIMISE_SCROLL
4841     int olddisptop = term->disptop;
4842     int shift;
4843 #endif /* OPTIMISE_SCROLL */
4844
4845     term->disptop = (rel < 0 ? 0 : rel > 0 ? sbtop : term->disptop) + where;
4846     if (term->disptop < sbtop)
4847         term->disptop = sbtop;
4848     if (term->disptop > 0)
4849         term->disptop = 0;
4850     update_sbar(term);
4851 #ifdef OPTIMISE_SCROLL
4852     shift = (term->disptop - olddisptop);
4853     if (shift < term->rows && shift > -term->rows)
4854         scroll_display(term, 0, term->rows - 1, shift);
4855 #endif /* OPTIMISE_SCROLL */
4856     term_update(term);
4857 }
4858
4859 static void clipme(Terminal *term, pos top, pos bottom, int rect, int desel)
4860 {
4861     wchar_t *workbuf;
4862     wchar_t *wbptr;                    /* where next char goes within workbuf */
4863     int old_top_x;
4864     int wblen = 0;                     /* workbuf len */
4865     int buflen;                        /* amount of memory allocated to workbuf */
4866
4867     buflen = 5120;                     /* Default size */
4868     workbuf = snewn(buflen, wchar_t);
4869     wbptr = workbuf;                   /* start filling here */
4870     old_top_x = top.x;                 /* needed for rect==1 */
4871
4872     while (poslt(top, bottom)) {
4873         int nl = FALSE;
4874         termline *ldata = lineptr(top.y);
4875         pos nlpos;
4876
4877         /*
4878          * nlpos will point at the maximum position on this line we
4879          * should copy up to. So we start it at the end of the
4880          * line...
4881          */
4882         nlpos.y = top.y;
4883         nlpos.x = term->cols;
4884
4885         /*
4886          * ... move it backwards if there's unused space at the end
4887          * of the line (and also set `nl' if this is the case,
4888          * because in normal selection mode this means we need a
4889          * newline at the end)...
4890          */
4891         if (!(ldata->lattr & LATTR_WRAPPED)) {
4892             while (IS_SPACE_CHR(ldata->chars[nlpos.x - 1].chr) &&
4893                    !ldata->chars[nlpos.x - 1].cc_next &&
4894                    poslt(top, nlpos))
4895                 decpos(nlpos);
4896             if (poslt(nlpos, bottom))
4897                 nl = TRUE;
4898         } else if (ldata->lattr & LATTR_WRAPPED2) {
4899             /* Ignore the last char on the line in a WRAPPED2 line. */
4900             decpos(nlpos);
4901         }
4902
4903         /*
4904          * ... and then clip it to the terminal x coordinate if
4905          * we're doing rectangular selection. (In this case we
4906          * still did the above, so that copying e.g. the right-hand
4907          * column from a table doesn't fill with spaces on the
4908          * right.)
4909          */
4910         if (rect) {
4911             if (nlpos.x > bottom.x)
4912                 nlpos.x = bottom.x;
4913             nl = (top.y < bottom.y);
4914         }
4915
4916         while (poslt(top, bottom) && poslt(top, nlpos)) {
4917 #if 0
4918             char cbuf[16], *p;
4919             sprintf(cbuf, "<U+%04x>", (ldata[top.x] & 0xFFFF));
4920 #else
4921             wchar_t cbuf[16], *p;
4922             int set, c;
4923             int x = top.x;
4924
4925             if (ldata->chars[x].chr == UCSWIDE) {
4926                 top.x++;
4927                 continue;
4928             }
4929
4930             while (1) {
4931                 int uc = ldata->chars[x].chr;
4932
4933                 switch (uc & CSET_MASK) {
4934                   case CSET_LINEDRW:
4935                     if (!term->cfg.rawcnp) {
4936                         uc = term->ucsdata->unitab_xterm[uc & 0xFF];
4937                         break;
4938                     }
4939                   case CSET_ASCII:
4940                     uc = term->ucsdata->unitab_line[uc & 0xFF];
4941                     break;
4942                   case CSET_SCOACS:
4943                     uc = term->ucsdata->unitab_scoacs[uc&0xFF];
4944                     break;
4945                 }
4946                 switch (uc & CSET_MASK) {
4947                   case CSET_ACP:
4948                     uc = term->ucsdata->unitab_font[uc & 0xFF];
4949                     break;
4950                   case CSET_OEMCP:
4951                     uc = term->ucsdata->unitab_oemcp[uc & 0xFF];
4952                     break;
4953                 }
4954
4955                 set = (uc & CSET_MASK);
4956                 c = (uc & ~CSET_MASK);
4957                 cbuf[0] = uc;
4958                 cbuf[1] = 0;
4959
4960                 if (DIRECT_FONT(uc)) {
4961                     if (c >= ' ' && c != 0x7F) {
4962                         char buf[4];
4963                         WCHAR wbuf[4];
4964                         int rv;
4965                         if (is_dbcs_leadbyte(term->ucsdata->font_codepage, (BYTE) c)) {
4966                             buf[0] = c;
4967                             buf[1] = (char) (0xFF & ldata->chars[top.x + 1].chr);
4968                             rv = mb_to_wc(term->ucsdata->font_codepage, 0, buf, 2, wbuf, 4);
4969                             top.x++;
4970                         } else {
4971                             buf[0] = c;
4972                             rv = mb_to_wc(term->ucsdata->font_codepage, 0, buf, 1, wbuf, 4);
4973                         }
4974
4975                         if (rv > 0) {
4976                             memcpy(cbuf, wbuf, rv * sizeof(wchar_t));
4977                             cbuf[rv] = 0;
4978                         }
4979                     }
4980                 }
4981 #endif
4982
4983                 for (p = cbuf; *p; p++) {
4984                     /* Enough overhead for trailing NL and nul */
4985                     if (wblen >= buflen - 16) {
4986                         buflen += 100;
4987                         workbuf = sresize(workbuf, buflen, wchar_t);
4988                         wbptr = workbuf + wblen;
4989                     }
4990                     wblen++;
4991                     *wbptr++ = *p;
4992                 }
4993
4994                 if (ldata->chars[x].cc_next)
4995                     x += ldata->chars[x].cc_next;
4996                 else
4997                     break;
4998             }
4999             top.x++;
5000         }
5001         if (nl) {
5002             int i;
5003             for (i = 0; i < sel_nl_sz; i++) {
5004                 wblen++;
5005                 *wbptr++ = sel_nl[i];
5006             }
5007         }
5008         top.y++;
5009         top.x = rect ? old_top_x : 0;
5010
5011         unlineptr(ldata);
5012     }
5013 #if SELECTION_NUL_TERMINATED
5014     wblen++;
5015     *wbptr++ = 0;
5016 #endif
5017     write_clip(term->frontend, workbuf, wblen, desel); /* transfer to clipbd */
5018     if (buflen > 0)                    /* indicates we allocated this buffer */
5019         sfree(workbuf);
5020 }
5021
5022 void term_copyall(Terminal *term)
5023 {
5024     pos top;
5025     pos bottom;
5026     tree234 *screen = term->screen;
5027     top.y = -sblines(term);
5028     top.x = 0;
5029     bottom.y = find_last_nonempty_line(term, screen);
5030     bottom.x = term->cols;
5031     clipme(term, top, bottom, 0, TRUE);
5032 }
5033
5034 /*
5035  * The wordness array is mainly for deciding the disposition of the
5036  * US-ASCII characters.
5037  */
5038 static int wordtype(Terminal *term, int uc)
5039 {
5040     struct ucsword {
5041         int start, end, ctype;
5042     };
5043     static const struct ucsword ucs_words[] = {
5044         {
5045         128, 160, 0}, {
5046         161, 191, 1}, {
5047         215, 215, 1}, {
5048         247, 247, 1}, {
5049         0x037e, 0x037e, 1},            /* Greek question mark */
5050         {
5051         0x0387, 0x0387, 1},            /* Greek ano teleia */
5052         {
5053         0x055a, 0x055f, 1},            /* Armenian punctuation */
5054         {
5055         0x0589, 0x0589, 1},            /* Armenian full stop */
5056         {
5057         0x0700, 0x070d, 1},            /* Syriac punctuation */
5058         {
5059         0x104a, 0x104f, 1},            /* Myanmar punctuation */
5060         {
5061         0x10fb, 0x10fb, 1},            /* Georgian punctuation */
5062         {
5063         0x1361, 0x1368, 1},            /* Ethiopic punctuation */
5064         {
5065         0x166d, 0x166e, 1},            /* Canadian Syl. punctuation */
5066         {
5067         0x17d4, 0x17dc, 1},            /* Khmer punctuation */
5068         {
5069         0x1800, 0x180a, 1},            /* Mongolian punctuation */
5070         {
5071         0x2000, 0x200a, 0},            /* Various spaces */
5072         {
5073         0x2070, 0x207f, 2},            /* superscript */
5074         {
5075         0x2080, 0x208f, 2},            /* subscript */
5076         {
5077         0x200b, 0x27ff, 1},            /* punctuation and symbols */
5078         {
5079         0x3000, 0x3000, 0},            /* ideographic space */
5080         {
5081         0x3001, 0x3020, 1},            /* ideographic punctuation */
5082         {
5083         0x303f, 0x309f, 3},            /* Hiragana */
5084         {
5085         0x30a0, 0x30ff, 3},            /* Katakana */
5086         {
5087         0x3300, 0x9fff, 3},            /* CJK Ideographs */
5088         {
5089         0xac00, 0xd7a3, 3},            /* Hangul Syllables */
5090         {
5091         0xf900, 0xfaff, 3},            /* CJK Ideographs */
5092         {
5093         0xfe30, 0xfe6b, 1},            /* punctuation forms */
5094         {
5095         0xff00, 0xff0f, 1},            /* half/fullwidth ASCII */
5096         {
5097         0xff1a, 0xff20, 1},            /* half/fullwidth ASCII */
5098         {
5099         0xff3b, 0xff40, 1},            /* half/fullwidth ASCII */
5100         {
5101         0xff5b, 0xff64, 1},            /* half/fullwidth ASCII */
5102         {
5103         0xfff0, 0xffff, 0},            /* half/fullwidth ASCII */
5104         {
5105         0, 0, 0}
5106     };
5107     const struct ucsword *wptr;
5108
5109     switch (uc & CSET_MASK) {
5110       case CSET_LINEDRW:
5111         uc = term->ucsdata->unitab_xterm[uc & 0xFF];
5112         break;
5113       case CSET_ASCII:
5114         uc = term->ucsdata->unitab_line[uc & 0xFF];
5115         break;
5116       case CSET_SCOACS:  
5117         uc = term->ucsdata->unitab_scoacs[uc&0xFF]; 
5118         break;
5119     }
5120     switch (uc & CSET_MASK) {
5121       case CSET_ACP:
5122         uc = term->ucsdata->unitab_font[uc & 0xFF];
5123         break;
5124       case CSET_OEMCP:
5125         uc = term->ucsdata->unitab_oemcp[uc & 0xFF];
5126         break;
5127     }
5128
5129     /* For DBCS fonts I can't do anything useful. Even this will sometimes
5130      * fail as there's such a thing as a double width space. :-(
5131      */
5132     if (term->ucsdata->dbcs_screenfont &&
5133         term->ucsdata->font_codepage == term->ucsdata->line_codepage)
5134         return (uc != ' ');
5135
5136     if (uc < 0x80)
5137         return term->wordness[uc];
5138
5139     for (wptr = ucs_words; wptr->start; wptr++) {
5140         if (uc >= wptr->start && uc <= wptr->end)
5141             return wptr->ctype;
5142     }
5143
5144     return 2;
5145 }
5146
5147 /*
5148  * Spread the selection outwards according to the selection mode.
5149  */
5150 static pos sel_spread_half(Terminal *term, pos p, int dir)
5151 {
5152     termline *ldata;
5153     short wvalue;
5154     int topy = -sblines(term);
5155
5156     ldata = lineptr(p.y);
5157
5158     switch (term->selmode) {
5159       case SM_CHAR:
5160         /*
5161          * In this mode, every character is a separate unit, except
5162          * for runs of spaces at the end of a non-wrapping line.
5163          */
5164         if (!(ldata->lattr & LATTR_WRAPPED)) {
5165             termchar *q = ldata->chars + term->cols;
5166             while (q > ldata->chars &&
5167                    IS_SPACE_CHR(q[-1].chr) && !q[-1].cc_next)
5168                 q--;
5169             if (q == ldata->chars + term->cols)
5170                 q--;
5171             if (p.x >= q - ldata->chars)
5172                 p.x = (dir == -1 ? q - ldata->chars : term->cols - 1);
5173         }
5174         break;
5175       case SM_WORD:
5176         /*
5177          * In this mode, the units are maximal runs of characters
5178          * whose `wordness' has the same value.
5179          */
5180         wvalue = wordtype(term, UCSGET(ldata->chars, p.x));
5181         if (dir == +1) {
5182             while (1) {
5183                 int maxcols = (ldata->lattr & LATTR_WRAPPED2 ?
5184                                term->cols-1 : term->cols);
5185                 if (p.x < maxcols-1) {
5186                     if (wordtype(term, UCSGET(ldata->chars, p.x+1)) == wvalue)
5187                         p.x++;
5188                     else
5189                         break;
5190                 } else {
5191                     if (ldata->lattr & LATTR_WRAPPED) {
5192                         termline *ldata2;
5193                         ldata2 = lineptr(p.y+1);
5194                         if (wordtype(term, UCSGET(ldata2->chars, 0))
5195                             == wvalue) {
5196                             p.x = 0;
5197                             p.y++;
5198                             unlineptr(ldata);
5199                             ldata = ldata2;
5200                         } else {
5201                             unlineptr(ldata2);
5202                             break;
5203                         }
5204                     } else
5205                         break;
5206                 }
5207             }
5208         } else {
5209             while (1) {
5210                 if (p.x > 0) {
5211                     if (wordtype(term, UCSGET(ldata->chars, p.x-1)) == wvalue)
5212                         p.x--;
5213                     else
5214                         break;
5215                 } else {
5216                     termline *ldata2;
5217                     int maxcols;
5218                     if (p.y <= topy)
5219                         break;
5220                     ldata2 = lineptr(p.y-1);
5221                     maxcols = (ldata2->lattr & LATTR_WRAPPED2 ?
5222                               term->cols-1 : term->cols);
5223                     if (ldata2->lattr & LATTR_WRAPPED) {
5224                         if (wordtype(term, UCSGET(ldata2->chars, maxcols-1))
5225                             == wvalue) {
5226                             p.x = maxcols-1;
5227                             p.y--;
5228                             unlineptr(ldata);
5229                             ldata = ldata2;
5230                         } else {
5231                             unlineptr(ldata2);
5232                             break;
5233                         }
5234                     } else
5235                         break;
5236                 }
5237             }
5238         }
5239         break;
5240       case SM_LINE:
5241         /*
5242          * In this mode, every line is a unit.
5243          */
5244         p.x = (dir == -1 ? 0 : term->cols - 1);
5245         break;
5246     }
5247
5248     unlineptr(ldata);
5249     return p;
5250 }
5251
5252 static void sel_spread(Terminal *term)
5253 {
5254     if (term->seltype == LEXICOGRAPHIC) {
5255         term->selstart = sel_spread_half(term, term->selstart, -1);
5256         decpos(term->selend);
5257         term->selend = sel_spread_half(term, term->selend, +1);
5258         incpos(term->selend);
5259     }
5260 }
5261
5262 void term_do_paste(Terminal *term)
5263 {
5264     wchar_t *data;
5265     int len;
5266
5267     get_clip(term->frontend, &data, &len);
5268     if (data && len > 0) {
5269         wchar_t *p, *q;
5270
5271         term_seen_key_event(term);     /* pasted data counts */
5272
5273         if (term->paste_buffer)
5274             sfree(term->paste_buffer);
5275         term->paste_pos = term->paste_hold = term->paste_len = 0;
5276         term->paste_buffer = snewn(len, wchar_t);
5277
5278         p = q = data;
5279         while (p < data + len) {
5280             while (p < data + len &&
5281                    !(p <= data + len - sel_nl_sz &&
5282                      !memcmp(p, sel_nl, sizeof(sel_nl))))
5283                 p++;
5284
5285             {
5286                 int i;
5287                 for (i = 0; i < p - q; i++) {
5288                     term->paste_buffer[term->paste_len++] = q[i];
5289                 }
5290             }
5291
5292             if (p <= data + len - sel_nl_sz &&
5293                 !memcmp(p, sel_nl, sizeof(sel_nl))) {
5294                 term->paste_buffer[term->paste_len++] = '\015';
5295                 p += sel_nl_sz;
5296             }
5297             q = p;
5298         }
5299
5300         /* Assume a small paste will be OK in one go. */
5301         if (term->paste_len < 256) {
5302             if (term->ldisc)
5303                 luni_send(term->ldisc, term->paste_buffer, term->paste_len, 0);
5304             if (term->paste_buffer)
5305                 sfree(term->paste_buffer);
5306             term->paste_buffer = 0;
5307             term->paste_pos = term->paste_hold = term->paste_len = 0;
5308         }
5309     }
5310     get_clip(term->frontend, NULL, NULL);
5311 }
5312
5313 void term_mouse(Terminal *term, Mouse_Button braw, Mouse_Button bcooked,
5314                 Mouse_Action a, int x, int y, int shift, int ctrl, int alt)
5315 {
5316     pos selpoint;
5317     termline *ldata;
5318     int raw_mouse = (term->xterm_mouse &&
5319                      !term->cfg.no_mouse_rep &&
5320                      !(term->cfg.mouse_override && shift));
5321     int default_seltype;
5322
5323     if (y < 0) {
5324         y = 0;
5325         if (a == MA_DRAG && !raw_mouse)
5326             term_scroll(term, 0, -1);
5327     }
5328     if (y >= term->rows) {
5329         y = term->rows - 1;
5330         if (a == MA_DRAG && !raw_mouse)
5331             term_scroll(term, 0, +1);
5332     }
5333     if (x < 0) {
5334         if (y > 0) {
5335             x = term->cols - 1;
5336             y--;
5337         } else
5338             x = 0;
5339     }
5340     if (x >= term->cols)
5341         x = term->cols - 1;
5342
5343     selpoint.y = y + term->disptop;
5344     selpoint.x = x;
5345     ldata = lineptr(selpoint.y);
5346     if ((ldata->lattr & LATTR_MODE) != LATTR_NORM)
5347         selpoint.x /= 2;
5348     unlineptr(ldata);
5349
5350     if (raw_mouse) {
5351         int encstate = 0, r, c;
5352         char abuf[16];
5353
5354         if (term->ldisc) {
5355
5356             switch (braw) {
5357               case MBT_LEFT:
5358                 encstate = 0x20;               /* left button down */
5359                 break;
5360               case MBT_MIDDLE:
5361                 encstate = 0x21;
5362                 break;
5363               case MBT_RIGHT:
5364                 encstate = 0x22;
5365                 break;
5366               case MBT_WHEEL_UP:
5367                 encstate = 0x60;
5368                 break;
5369               case MBT_WHEEL_DOWN:
5370                 encstate = 0x61;
5371                 break;
5372               default: break;          /* placate gcc warning about enum use */
5373             }
5374             switch (a) {
5375               case MA_DRAG:
5376                 if (term->xterm_mouse == 1)
5377                     return;
5378                 encstate += 0x20;
5379                 break;
5380               case MA_RELEASE:
5381                 encstate = 0x23;
5382                 term->mouse_is_down = 0;
5383                 break;
5384               case MA_CLICK:
5385                 if (term->mouse_is_down == braw)
5386                     return;
5387                 term->mouse_is_down = braw;
5388                 break;
5389               default: break;          /* placate gcc warning about enum use */
5390             }
5391             if (shift)
5392                 encstate += 0x04;
5393             if (ctrl)
5394                 encstate += 0x10;
5395             r = y + 33;
5396             c = x + 33;
5397
5398             sprintf(abuf, "\033[M%c%c%c", encstate, c, r);
5399             ldisc_send(term->ldisc, abuf, 6, 0);
5400         }
5401         return;
5402     }
5403
5404     /*
5405      * Set the selection type (rectangular or normal) at the start
5406      * of a selection attempt, from the state of Alt.
5407      */
5408     if (!alt ^ !term->cfg.rect_select)
5409         default_seltype = RECTANGULAR;
5410     else
5411         default_seltype = LEXICOGRAPHIC;
5412         
5413     if (term->selstate == NO_SELECTION) {
5414         term->seltype = default_seltype;
5415     }
5416
5417     if (bcooked == MBT_SELECT && a == MA_CLICK) {
5418         deselect(term);
5419         term->selstate = ABOUT_TO;
5420         term->seltype = default_seltype;
5421         term->selanchor = selpoint;
5422         term->selmode = SM_CHAR;
5423     } else if (bcooked == MBT_SELECT && (a == MA_2CLK || a == MA_3CLK)) {
5424         deselect(term);
5425         term->selmode = (a == MA_2CLK ? SM_WORD : SM_LINE);
5426         term->selstate = DRAGGING;
5427         term->selstart = term->selanchor = selpoint;
5428         term->selend = term->selstart;
5429         incpos(term->selend);
5430         sel_spread(term);
5431     } else if ((bcooked == MBT_SELECT && a == MA_DRAG) ||
5432                (bcooked == MBT_EXTEND && a != MA_RELEASE)) {
5433         if (term->selstate == ABOUT_TO && poseq(term->selanchor, selpoint))
5434             return;
5435         if (bcooked == MBT_EXTEND && a != MA_DRAG &&
5436             term->selstate == SELECTED) {
5437             if (term->seltype == LEXICOGRAPHIC) {
5438                 /*
5439                  * For normal selection, we extend by moving
5440                  * whichever end of the current selection is closer
5441                  * to the mouse.
5442                  */
5443                 if (posdiff(selpoint, term->selstart) <
5444                     posdiff(term->selend, term->selstart) / 2) {
5445                     term->selanchor = term->selend;
5446                     decpos(term->selanchor);
5447                 } else {
5448                     term->selanchor = term->selstart;
5449                 }
5450             } else {
5451                 /*
5452                  * For rectangular selection, we have a choice of
5453                  * _four_ places to put selanchor and selpoint: the
5454                  * four corners of the selection.
5455                  */
5456                 if (2*selpoint.x < term->selstart.x + term->selend.x)
5457                     term->selanchor.x = term->selend.x-1;
5458                 else
5459                     term->selanchor.x = term->selstart.x;
5460
5461                 if (2*selpoint.y < term->selstart.y + term->selend.y)
5462                     term->selanchor.y = term->selend.y;
5463                 else
5464                     term->selanchor.y = term->selstart.y;
5465             }
5466             term->selstate = DRAGGING;
5467         }
5468         if (term->selstate != ABOUT_TO && term->selstate != DRAGGING)
5469             term->selanchor = selpoint;
5470         term->selstate = DRAGGING;
5471         if (term->seltype == LEXICOGRAPHIC) {
5472             /*
5473              * For normal selection, we set (selstart,selend) to
5474              * (selpoint,selanchor) in some order.
5475              */
5476             if (poslt(selpoint, term->selanchor)) {
5477                 term->selstart = selpoint;
5478                 term->selend = term->selanchor;
5479                 incpos(term->selend);
5480             } else {
5481                 term->selstart = term->selanchor;
5482                 term->selend = selpoint;
5483                 incpos(term->selend);
5484             }
5485         } else {
5486             /*
5487              * For rectangular selection, we may need to
5488              * interchange x and y coordinates (if the user has
5489              * dragged in the -x and +y directions, or vice versa).
5490              */
5491             term->selstart.x = min(term->selanchor.x, selpoint.x);
5492             term->selend.x = 1+max(term->selanchor.x, selpoint.x);
5493             term->selstart.y = min(term->selanchor.y, selpoint.y);
5494             term->selend.y =   max(term->selanchor.y, selpoint.y);
5495         }
5496         sel_spread(term);
5497     } else if ((bcooked == MBT_SELECT || bcooked == MBT_EXTEND) &&
5498                a == MA_RELEASE) {
5499         if (term->selstate == DRAGGING) {
5500             /*
5501              * We've completed a selection. We now transfer the
5502              * data to the clipboard.
5503              */
5504             clipme(term, term->selstart, term->selend,
5505                    (term->seltype == RECTANGULAR), FALSE);
5506             term->selstate = SELECTED;
5507         } else
5508             term->selstate = NO_SELECTION;
5509     } else if (bcooked == MBT_PASTE
5510                && (a == MA_CLICK
5511 #if MULTICLICK_ONLY_EVENT
5512                    || a == MA_2CLK || a == MA_3CLK
5513 #endif
5514                    )) {
5515         request_paste(term->frontend);
5516     }
5517
5518     term_update(term);
5519 }
5520
5521 void term_key(Terminal *term, Key_Sym keysym, wchar_t *text, size_t tlen,
5522               unsigned int modifiers, unsigned int flags)
5523 {
5524     char output[10];
5525     char *p = output;
5526     int prependesc = FALSE;
5527 #if 0
5528     int i;
5529
5530     fprintf(stderr, "keysym = %d, %d chars:", keysym, tlen);
5531     for (i = 0; i < tlen; i++)
5532         fprintf(stderr, " %04x", (unsigned)text[i]);
5533     fprintf(stderr, "\n");
5534 #endif
5535
5536     /* XXX Num Lock */
5537     if ((flags & PKF_REPEAT) && term->repeat_off)
5538         return;
5539
5540     /* Currently, Meta always just prefixes everything with ESC. */
5541     if (modifiers & PKM_META)
5542         prependesc = TRUE;
5543     modifiers &= ~PKM_META;
5544
5545     /*
5546      * Alt is only used for Alt+keypad, which isn't supported yet, so
5547      * ignore it.
5548      */
5549     modifiers &= ~PKM_ALT;
5550
5551     /* Standard local function keys */
5552     switch (modifiers & (PKM_SHIFT | PKM_CONTROL)) {
5553       case PKM_SHIFT:
5554         if (keysym == PK_PAGEUP)
5555             /* scroll up one page */;
5556         if (keysym == PK_PAGEDOWN)
5557             /* scroll down on page */;
5558         if (keysym == PK_INSERT)
5559             term_do_paste(term);
5560         break;
5561       case PKM_CONTROL:
5562         if (keysym == PK_PAGEUP)
5563             /* scroll up one line */;
5564         if (keysym == PK_PAGEDOWN)
5565             /* scroll down one line */;
5566         /* Control-Numlock for app-keypad mode switch */
5567         if (keysym == PK_PF1)
5568             term->app_keypad_keys ^= 1;
5569         break;
5570     }
5571
5572     if (modifiers & PKM_ALT) {
5573         /* Alt+F4 (close) */
5574         /* Alt+Return (full screen) */
5575         /* Alt+Space (system menu) */
5576     }
5577
5578     if (keysym == PK_NULL && (modifiers & PKM_CONTROL) && tlen == 1 &&
5579         text[0] >= 0x20 && text[0] <= 0x7e) {
5580         /* ASCII chars + Control */
5581         if ((text[0] >= 0x40 && text[0] <= 0x5f) ||
5582             (text[0] >= 0x61 && text[0] <= 0x7a))
5583             text[0] &= 0x1f;
5584         else {
5585             /*
5586              * Control-2 should return ^@ (0x00), Control-6 should return
5587              * ^^ (0x1E), and Control-Minus should return ^_ (0x1F). Since
5588              * the DOS keyboard handling did it, and we have nothing better
5589              * to do with the key combo in question, we'll also map
5590              * Control-Backquote to ^\ (0x1C).
5591              */
5592             switch (text[0]) {
5593               case ' ': text[0] = 0x00; break;
5594               case '-': text[0] = 0x1f; break;
5595               case '/': text[0] = 0x1f; break;
5596               case '2': text[0] = 0x00; break;
5597               case '3': text[0] = 0x1b; break;
5598               case '4': text[0] = 0x1c; break;
5599               case '5': text[0] = 0x1d; break;
5600               case '6': text[0] = 0x1e; break;
5601               case '7': text[0] = 0x1f; break;
5602               case '8': text[0] = 0x7f; break;
5603               case '`': text[0] = 0x1c; break;
5604             }
5605         }
5606     }
5607
5608     /* Nethack keypad */
5609     if (term->cfg.nethack_keypad) {
5610         char c = 0;
5611         switch (keysym) {
5612           case PK_KP1: c = 'b'; break;
5613           case PK_KP2: c = 'j'; break;
5614           case PK_KP3: c = 'n'; break;
5615           case PK_KP4: c = 'h'; break;
5616           case PK_KP5: c = '.'; break;
5617           case PK_KP6: c = 'l'; break;
5618           case PK_KP7: c = 'y'; break;
5619           case PK_KP8: c = 'k'; break;
5620           case PK_KP9: c = 'u'; break;
5621           default: break; /* else gcc warns `enum value not used' */
5622         }
5623         if (c != 0) {
5624             if (c != '.') {
5625                 if (modifiers & PKM_CONTROL)
5626                     c &= 0x1f;
5627                 else if (modifiers & PKM_SHIFT)
5628                     c = toupper(c);
5629             }
5630             *p++ = c;
5631             goto done;
5632         }
5633     }
5634
5635     /* Numeric Keypad */
5636     if (PK_ISKEYPAD(keysym)) {
5637         int xkey = 0;
5638
5639         /*
5640          * In VT400 mode, PFn always emits an escape sequence.  In
5641          * Linux and tilde modes, this only happens in app keypad mode.
5642          */
5643         if (term->cfg.funky_type == FUNKY_VT400 ||
5644             ((term->cfg.funky_type == FUNKY_LINUX ||
5645               term->cfg.funky_type == FUNKY_TILDE) &&
5646              term->app_keypad_keys && !term->cfg.no_applic_k)) {
5647             switch (keysym) {
5648               case PK_PF1: xkey = 'P'; break;
5649               case PK_PF2: xkey = 'Q'; break;
5650               case PK_PF3: xkey = 'R'; break;
5651               case PK_PF4: xkey = 'S'; break;
5652               default: break; /* else gcc warns `enum value not used' */
5653             }
5654         }
5655         if (term->app_keypad_keys && !term->cfg.no_applic_k) {
5656             switch (keysym) {
5657               case PK_KP0: xkey = 'p'; break;
5658               case PK_KP1: xkey = 'q'; break;
5659               case PK_KP2: xkey = 'r'; break;
5660               case PK_KP3: xkey = 's'; break;
5661               case PK_KP4: xkey = 't'; break;
5662               case PK_KP5: xkey = 'u'; break;
5663               case PK_KP6: xkey = 'v'; break;
5664               case PK_KP7: xkey = 'w'; break;
5665               case PK_KP8: xkey = 'x'; break;
5666               case PK_KP9: xkey = 'y'; break;
5667               case PK_KPDECIMAL: xkey = 'n'; break;
5668               case PK_KPENTER: xkey = 'M'; break;
5669               default: break; /* else gcc warns `enum value not used' */
5670             }
5671             if (term->cfg.funky_type == FUNKY_XTERM && tlen > 0) {
5672                 /*
5673                  * xterm can't see the layout of the keypad, so it has
5674                  * to rely on the X keysyms returned by the keys.
5675                  * Hence, we look at the strings here, not the PuTTY
5676                  * keysyms (which describe the layout).
5677                  */
5678                 switch (text[0]) {
5679                   case '+':
5680                     if (modifiers & PKM_SHIFT)
5681                         xkey = 'l';
5682                     else
5683                         xkey = 'k';
5684                     break;
5685                   case '/': xkey = 'o'; break;
5686                   case '*': xkey = 'j'; break;
5687                   case '-': xkey = 'm'; break;
5688                 }
5689             } else {
5690                 /*
5691                  * In all other modes, we try to retain the layout of
5692                  * the DEC keypad in application mode.
5693                  */
5694                 switch (keysym) {
5695                   case PK_KPBIGPLUS:
5696                     /* This key covers the '-' and ',' keys on a VT220 */
5697                     if (modifiers & PKM_SHIFT)
5698                         xkey = 'm'; /* VT220 '-' */
5699                     else
5700                         xkey = 'l'; /* VT220 ',' */
5701                     break;
5702                   case PK_KPMINUS: xkey = 'm'; break;
5703                   case PK_KPCOMMA: xkey = 'l'; break;
5704                   default: break; /* else gcc warns `enum value not used' */
5705                 }
5706             }
5707         }
5708         if (xkey) {
5709             if (term->vt52_mode) {
5710                 if (xkey >= 'P' && xkey <= 'S')
5711                     p += sprintf((char *) p, "\x1B%c", xkey);
5712                 else
5713                     p += sprintf((char *) p, "\x1B?%c", xkey);
5714             } else
5715                 p += sprintf((char *) p, "\x1BO%c", xkey);
5716             goto done;
5717         }
5718         /* Not in application mode -- treat the number pad as arrow keys? */
5719         if ((flags & PKF_NUMLOCK) == 0) {
5720             switch (keysym) {
5721               case PK_KP0: keysym = PK_INSERT; break;
5722               case PK_KP1: keysym = PK_END; break;
5723               case PK_KP2: keysym = PK_DOWN; break;
5724               case PK_KP3: keysym = PK_PAGEDOWN; break;
5725               case PK_KP4: keysym = PK_LEFT; break;
5726               case PK_KP5: keysym = PK_REST; break;
5727               case PK_KP6: keysym = PK_RIGHT; break;
5728               case PK_KP7: keysym = PK_HOME; break;
5729               case PK_KP8: keysym = PK_UP; break;
5730               case PK_KP9: keysym = PK_PAGEUP; break;
5731               default: break; /* else gcc warns `enum value not used' */
5732             }
5733         }
5734     }
5735
5736     /* Miscellaneous keys */
5737     switch (keysym) {
5738       case PK_ESCAPE:
5739         *p++ = 0x1b;
5740         goto done;
5741       case PK_BACKSPACE:
5742             if (modifiers == 0)
5743                 *p++ = (term->cfg.bksp_is_delete ? 0x7F : 0x08);
5744             else if (modifiers == PKM_SHIFT)
5745                 /* We do the opposite of what is configured */
5746                 *p++ = (term->cfg.bksp_is_delete ? 0x08 : 0x7F);
5747             else break;
5748             goto done;
5749       case PK_TAB:
5750         if (modifiers == 0)
5751             *p++ = 0x09;
5752         else if (modifiers == PKM_SHIFT)
5753             *p++ = 0x1B, *p++ = '[', *p++ = 'Z';
5754         else break;
5755         goto done;
5756         /* XXX window.c has ctrl+shift+space sending 0xa0 */
5757       case PK_PAUSE:
5758         if (modifiers == PKM_CONTROL)
5759             *p++ = 26;
5760         else break;
5761         goto done;
5762       case PK_RETURN:
5763       case PK_KPENTER: /* Odd keypad modes handled above */
5764         if (modifiers == 0) {
5765             *p++ = 0x0d;
5766             if (term->cr_lf_return)
5767                 *p++ = 0x0a;
5768             goto done;
5769         }
5770       default: break; /* else gcc warns `enum value not used' */
5771     }
5772
5773     /* SCO function keys and editing keys */
5774     if (term->cfg.funky_type == FUNKY_SCO) {
5775         if (PK_ISFKEY(keysym) && keysym <= PK_F12) {
5776             static char const codes[] =
5777                 "MNOPQRSTUVWX" "YZabcdefghij" "klmnopqrstuv" "wxyz@[\\]^_`{";
5778             int index = keysym - PK_F1;
5779
5780             if (modifiers & PKM_SHIFT) index += 12;
5781             if (modifiers & PKM_CONTROL) index += 24;
5782             p += sprintf((char *) p, "\x1B[%c", codes[index]);
5783             goto done;
5784         }
5785         if (PK_ISEDITING(keysym)) {
5786             int xkey = 0;
5787
5788             switch (keysym) {
5789               case PK_DELETE:   *p++ = 0x7f; goto done;
5790               case PK_HOME:     xkey = 'H'; break;
5791               case PK_INSERT:   xkey = 'L'; break;
5792               case PK_END:      xkey = 'F'; break;
5793               case PK_PAGEUP:   xkey = 'I'; break;
5794               case PK_PAGEDOWN: xkey = 'G'; break;
5795               default: break; /* else gcc warns `enum value not used' */
5796             }
5797             p += sprintf((char *) p, "\x1B[%c", xkey);
5798         }
5799     }
5800
5801     if (PK_ISEDITING(keysym) && (modifiers & PKM_SHIFT) == 0) {
5802         int code;
5803
5804         if (term->cfg.funky_type == FUNKY_XTERM) {
5805             /* Xterm shuffles these keys, apparently. */
5806             switch (keysym) {
5807               case PK_HOME:     keysym = PK_INSERT;   break;
5808               case PK_INSERT:   keysym = PK_HOME;     break;
5809               case PK_DELETE:   keysym = PK_END;      break;
5810               case PK_END:      keysym = PK_PAGEUP;   break;
5811               case PK_PAGEUP:   keysym = PK_DELETE;   break;
5812               case PK_PAGEDOWN: keysym = PK_PAGEDOWN; break;
5813               default: break; /* else gcc warns `enum value not used' */
5814             }
5815         }
5816
5817         /* RXVT Home/End */
5818         if (term->cfg.rxvt_homeend &&
5819             (keysym == PK_HOME || keysym == PK_END)) {
5820             p += sprintf((char *) p, keysym == PK_HOME ? "\x1B[H" : "\x1BOw");
5821             goto done;
5822         }
5823
5824         if (term->vt52_mode) {
5825             int xkey;
5826
5827             /*
5828              * A real VT52 doesn't have these, and a VT220 doesn't
5829              * send anything for them in VT52 mode.
5830              */
5831             switch (keysym) {
5832               case PK_HOME:     xkey = 'H'; break;
5833               case PK_INSERT:   xkey = 'L'; break;
5834               case PK_DELETE:   xkey = 'M'; break;
5835               case PK_END:      xkey = 'E'; break;
5836               case PK_PAGEUP:   xkey = 'I'; break;
5837               case PK_PAGEDOWN: xkey = 'G'; break;
5838               default: xkey=0; break; /* else gcc warns `enum value not used'*/
5839             }
5840             p += sprintf((char *) p, "\x1B%c", xkey);
5841             goto done;
5842         }
5843
5844         switch (keysym) {
5845           case PK_HOME:     code = 1; break;
5846           case PK_INSERT:   code = 2; break;
5847           case PK_DELETE:   code = 3; break;
5848           case PK_END:      code = 4; break;
5849           case PK_PAGEUP:   code = 5; break;
5850           case PK_PAGEDOWN: code = 6; break;
5851           default: code = 0; break; /* else gcc warns `enum value not used' */
5852         }
5853         p += sprintf((char *) p, "\x1B[%d~", code);
5854         goto done;
5855     }
5856
5857     if (PK_ISFKEY(keysym)) {
5858         /* Map Shift+F1-F10 to F11-F20 */
5859         if (keysym >= PK_F1 && keysym <= PK_F10 && (modifiers & PKM_SHIFT))
5860             keysym += 10;
5861         if ((term->vt52_mode || term->cfg.funky_type == FUNKY_VT100P) &&
5862             keysym <= PK_F14) {
5863             /* XXX This overrides the XTERM/VT52 mode below */
5864             int offt = 0;
5865             if (keysym >= PK_F6)  offt++;
5866             if (keysym >= PK_F12) offt++;
5867             p += sprintf((char *) p, term->vt52_mode ? "\x1B%c" : "\x1BO%c",
5868                          'P' + keysym - PK_F1 - offt);
5869             goto done;
5870         }
5871         if (term->cfg.funky_type == FUNKY_LINUX && keysym <= PK_F5) {
5872             p += sprintf((char *) p, "\x1B[[%c", 'A' + keysym - PK_F1);
5873             goto done;
5874         }
5875         if (term->cfg.funky_type == FUNKY_XTERM && keysym <= PK_F4) {
5876             if (term->vt52_mode)
5877                 p += sprintf((char *) p, "\x1B%c", 'P' + keysym - PK_F1);
5878             else
5879                 p += sprintf((char *) p, "\x1BO%c", 'P' + keysym - PK_F1);
5880             goto done;
5881         }
5882         p += sprintf((char *) p, "\x1B[%d~", 11 + keysym - PK_F1);
5883         goto done;
5884     }
5885
5886     if (PK_ISCURSOR(keysym)) {
5887         int xkey;
5888
5889         switch (keysym) {
5890           case PK_UP:    xkey = 'A'; break;
5891           case PK_DOWN:  xkey = 'B'; break;
5892           case PK_RIGHT: xkey = 'C'; break;
5893           case PK_LEFT:  xkey = 'D'; break;
5894           case PK_REST:  xkey = 'G'; break; /* centre key on number pad */
5895           default: xkey = 0; break; /* else gcc warns `enum value not used' */
5896         }
5897         if (term->vt52_mode)
5898             p += sprintf((char *) p, "\x1B%c", xkey);
5899         else {
5900             int app_flg = (term->app_cursor_keys && !term->cfg.no_applic_c);
5901
5902             /* Useful mapping of Ctrl-arrows */
5903             if (modifiers == PKM_CONTROL)
5904                 app_flg = !app_flg;
5905
5906             if (app_flg)
5907                 p += sprintf((char *) p, "\x1BO%c", xkey);
5908             else
5909                 p += sprintf((char *) p, "\x1B[%c", xkey);
5910         }
5911         goto done;
5912     }
5913
5914   done:
5915     if (p > output || tlen > 0) {
5916         /*
5917          * Interrupt an ongoing paste. I'm not sure
5918          * this is sensible, but for the moment it's
5919          * preferable to having to faff about buffering
5920          * things.
5921          */
5922         term_nopaste(term);
5923
5924         /*
5925          * We need not bother about stdin backlogs
5926          * here, because in GUI PuTTY we can't do
5927          * anything about it anyway; there's no means
5928          * of asking Windows to hold off on KEYDOWN
5929          * messages. We _have_ to buffer everything
5930          * we're sent.
5931          */
5932         term_seen_key_event(term);
5933
5934         if (prependesc) {
5935 #if 0
5936             fprintf(stderr, "sending ESC\n");
5937 #endif
5938             ldisc_send(term->ldisc, "\x1b", 1, 1);
5939         }
5940
5941         if (p > output) {
5942 #if 0
5943             fprintf(stderr, "sending %d bytes:", p - output);
5944             for (i = 0; i < p - output; i++)
5945                 fprintf(stderr, " %02x", output[i]);
5946             fprintf(stderr, "\n");
5947 #endif
5948             ldisc_send(term->ldisc, output, p - output, 1);
5949         } else if (tlen > 0) {
5950 #if 0
5951             fprintf(stderr, "sending %d unichars:", tlen);
5952             for (i = 0; i < tlen; i++)
5953                 fprintf(stderr, " %04x", (unsigned) text[i]);
5954             fprintf(stderr, "\n");
5955 #endif
5956             luni_send(term->ldisc, text, tlen, 1);
5957         }
5958     }
5959 }
5960
5961 void term_nopaste(Terminal *term)
5962 {
5963     if (term->paste_len == 0)
5964         return;
5965     sfree(term->paste_buffer);
5966     term->paste_buffer = NULL;
5967     term->paste_len = 0;
5968 }
5969
5970 int term_paste_pending(Terminal *term)
5971 {
5972     return term->paste_len != 0;
5973 }
5974
5975 void term_paste(Terminal *term)
5976 {
5977     long now, paste_diff;
5978
5979     if (term->paste_len == 0)
5980         return;
5981
5982     /* Don't wait forever to paste */
5983     if (term->paste_hold) {
5984         now = GETTICKCOUNT();
5985         paste_diff = now - term->last_paste;
5986         if (paste_diff >= 0 && paste_diff < 450)
5987             return;
5988     }
5989     term->paste_hold = 0;
5990
5991     while (term->paste_pos < term->paste_len) {
5992         int n = 0;
5993         while (n + term->paste_pos < term->paste_len) {
5994             if (term->paste_buffer[term->paste_pos + n++] == '\015')
5995                 break;
5996         }
5997         if (term->ldisc)
5998             luni_send(term->ldisc, term->paste_buffer + term->paste_pos, n, 0);
5999         term->paste_pos += n;
6000
6001         if (term->paste_pos < term->paste_len) {
6002             term->paste_hold = 1;
6003             return;
6004         }
6005     }
6006     sfree(term->paste_buffer);
6007     term->paste_buffer = NULL;
6008     term->paste_len = 0;
6009 }
6010
6011 static void deselect(Terminal *term)
6012 {
6013     term->selstate = NO_SELECTION;
6014     term->selstart.x = term->selstart.y = term->selend.x = term->selend.y = 0;
6015 }
6016
6017 void term_deselect(Terminal *term)
6018 {
6019     deselect(term);
6020     term_update(term);
6021 }
6022
6023 int term_ldisc(Terminal *term, int option)
6024 {
6025     if (option == LD_ECHO)
6026         return term->term_echoing;
6027     if (option == LD_EDIT)
6028         return term->term_editing;
6029     return FALSE;
6030 }
6031
6032 int term_data(Terminal *term, int is_stderr, const char *data, int len)
6033 {
6034     bufchain_add(&term->inbuf, data, len);
6035
6036     if (!term->in_term_out) {
6037         term->in_term_out = TRUE;
6038         term_reset_cblink(term);
6039         /*
6040          * During drag-selects, we do not process terminal input,
6041          * because the user will want the screen to hold still to
6042          * be selected.
6043          */
6044         if (term->selstate != DRAGGING)
6045             term_out(term);
6046         term->in_term_out = FALSE;
6047     }
6048
6049     /*
6050      * term_out() always completely empties inbuf. Therefore,
6051      * there's no reason at all to return anything other than zero
6052      * from this function, because there _can't_ be a question of
6053      * the remote side needing to wait until term_out() has cleared
6054      * a backlog.
6055      *
6056      * This is a slightly suboptimal way to deal with SSH2 - in
6057      * principle, the window mechanism would allow us to continue
6058      * to accept data on forwarded ports and X connections even
6059      * while the terminal processing was going slowly - but we
6060      * can't do the 100% right thing without moving the terminal
6061      * processing into a separate thread, and that might hurt
6062      * portability. So we manage stdout buffering the old SSH1 way:
6063      * if the terminal processing goes slowly, the whole SSH
6064      * connection stops accepting data until it's ready.
6065      *
6066      * In practice, I can't imagine this causing serious trouble.
6067      */
6068     return 0;
6069 }
6070
6071 void term_provide_logctx(Terminal *term, void *logctx)
6072 {
6073     term->logctx = logctx;
6074 }
6075
6076 void term_set_focus(Terminal *term, int has_focus)
6077 {
6078     term->has_focus = has_focus;
6079     term_schedule_cblink(term);
6080 }