"src/winio.c" did not exist on "d6c8d1a06db8fddbf199fb16da6a207890963492"
winio.c 70 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   winio.c                                                              *
 *                                                                        *
5
 *   Copyright (C) 1999-2004 Chris Allegretta                             *
Chris Allegretta's avatar
Chris Allegretta committed
6
7
 *   This program is free software; you can redistribute it and/or modify *
 *   it under the terms of the GNU General Public License as published by *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
11
12
13
14
15
16
17
18
19
20
21
 *   any later version.                                                   *
 *                                                                        *
 *   This program is distributed in the hope that it will be useful,      *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of       *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
 *   GNU General Public License for more details.                         *
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.            *
 *                                                                        *
 **************************************************************************/

22
23
#include "config.h"

Chris Allegretta's avatar
Chris Allegretta committed
24
25
#include <stdarg.h>
#include <string.h>
26
#include <stdlib.h>
27
#include <time.h>
28
#include <unistd.h>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
29
#include <ctype.h>
30
#include <assert.h>
Chris Allegretta's avatar
Chris Allegretta committed
31
32
33
34
#include "proto.h"
#include "nano.h"

static int statblank = 0;	/* Number of keystrokes left after
35
				   we call statusbar(), before we
Chris Allegretta's avatar
Chris Allegretta committed
36
				   actually blank the statusbar */
37

38
/* Read in a single input character.  If it's ignored, swallow it and go
39
40
41
42
43
 * on.  Otherwise, try to translate it from ASCII, extended keypad
 * values, and/or escape sequences.  Supported extended keypad values
 * consist of [arrow key], Ctrl-[arrow key], Shift-[arrow key], Enter,
 * Backspace, Insert, Delete, Home, End, PageUp, PageDown, and F1-F14.
 * Assume nodelay(win) is FALSE. */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
44
int get_kbinput(WINDOW *win, int *meta)
45
46
47
48
{
    int kbinput, retval;

    kbinput = get_ignored_kbinput(win);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
49
    retval = get_accepted_kbinput(win, kbinput, meta);
50
51
52
53

    return retval;
}

54
/* Read in a string of input characters (e.g. an escape sequence)
55
56
 * verbatim, and return the length of the string in kbinput_len.  Assume
 * nodelay(win) is FALSE. */
57
58
int *get_verbatim_kbinput(WINDOW *win, int *kbinput_len, int
	allow_ascii)
59
{
60
    int kbinput, *verbatim_kbinput;
61
62

    /* Turn the keypad off so that we don't get extended keypad values,
63
     * all of which are outside the ASCII range, and switch to raw mode
64
65
     * so that we can type ^C, ^Q, ^S, ^Z, and ^\ (and ^Y on the Hurd)
     * without getting interrupts. */
66
    keypad(win, FALSE);
67
#ifdef _POSIX_VDISABLE
68
69
    raw();
#endif
70

71
    kbinput = wgetch(win);
72
    verbatim_kbinput = (int *)nmalloc(sizeof(int));
73
74
75
    verbatim_kbinput[0] = kbinput;
    *kbinput_len = 1;

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
76
    if (allow_ascii && kbinput >= '0' && kbinput <= '2')
77
78
79
	/* Entering a three-digit decimal ASCII code from 000-255 in
	 * verbatim mode will produce the corresponding ASCII
	 * character. */
80
	verbatim_kbinput[0] = get_ascii_kbinput(win, kbinput);
81
82
83
    else {
	nodelay(win, TRUE);
	while ((kbinput = wgetch(win)) != ERR) {
84
	    (*kbinput_len)++;
85
86
	    verbatim_kbinput = realloc(verbatim_kbinput, *kbinput_len * sizeof(int));
	    verbatim_kbinput[*kbinput_len - 1] = kbinput;
87
88
89
90
	}
	nodelay(win, FALSE);
    }

91
92
    /* Turn the keypad back on and switch back to cbreak mode now that
     * we're done. */
93
    keypad(win, TRUE);
94
#ifdef _POSIX_VDISABLE
95
96
    cbreak();
#endif
97

98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#ifdef DEBUG
    fprintf(stderr, "get_verbatim_kbinput(): verbatim_kbinput = %s\n", verbatim_kbinput);
#endif
    return verbatim_kbinput;
}

/* Swallow input characters that should be quietly ignored, and return
 * the first input character that shouldn't be. */
int get_ignored_kbinput(WINDOW *win)
{
    int kbinput;

    while (1) {
	kbinput = wgetch(win);
	switch (kbinput) {
	    case ERR:
	    case KEY_RESIZE:
#ifdef PDCURSES
	    case KEY_SHIFT_L:
	    case KEY_SHIFT_R:
	    case KEY_CONTROL_L:
	    case KEY_CONTROL_R:
	    case KEY_ALT_L:
	    case KEY_ALT_R:
#endif
#ifdef DEBUG
		fprintf(stderr, "get_ignored_kbinput(): kbinput = %d\n", kbinput);
#endif
		break;
	    default:
		return kbinput;
	}
    }
}

133
134
135
/* Translate acceptable ASCII, extended keypad values, and/or escape
 * sequences.  Set meta to 1 if we get a Meta sequence.  Assume
 * nodelay(win) is FALSE. */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
136
int get_accepted_kbinput(WINDOW *win, int kbinput, int *meta)
137
138
139
140
141
{
    *meta = 0;

    switch (kbinput) {
	case NANO_CONTROL_3: /* Escape */
142
143
	    kbinput = wgetch(win);
	    switch (kbinput) {
144
145
146
147
		case NANO_CONTROL_3: /* Escape */
		    kbinput = wgetch(win);
		    /* Esc Esc [three-digit decimal ASCII code from
		     * 000-255] == [corresponding ASCII character];
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
148
		     * Esc Esc 2 obviously can't be Ctrl-2 here */
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
		    if (kbinput >= '0' && kbinput <= '2')
			kbinput = get_ascii_kbinput(win, kbinput);
		    /* Esc Esc [character] == Ctrl-[character];
		     * Ctrl-Space (Ctrl-2) == Ctrl-@ == Ctrl-` */
		    else if (kbinput == ' ' || kbinput == '@' || kbinput == '`')
			kbinput = NANO_CONTROL_SPACE;
		    /* Ctrl-3 (Ctrl-[, Esc) to Ctrl-7 (Ctrl-_) */
		    else if (kbinput >= '3' && kbinput <= '7')
			kbinput -= 24;
		    /* Ctrl-8 (Ctrl-?) */
		    else if (kbinput == '8' || kbinput == '?')
			kbinput = NANO_CONTROL_8;
		    /* Ctrl-A to Ctrl-_ */
		    else if (kbinput >= 'A' && kbinput <= '_')
			kbinput -= 64;
164
165
		    /* Ctrl-A to Ctrl-~ */
		    else if (kbinput >= 'a' && kbinput <= '~')
166
167
			kbinput -= 96;
		    break;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
168
169
		case 'O':
		case 'o':
170
171
172
173
174
		/* Terminal breakage, part 1: We shouldn't get an escape
		 * sequence here for terminals that support Delete, but
		 * we do sometimes on FreeBSD.  Thank you, Wouter van
		 * Hemel. */
		case '[':
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
175
		{
176
		    int old_kbinput = kbinput, *escape_seq, escape_seq_len;
177
178
179
180
		    nodelay(win, TRUE);
		    kbinput = wgetch(win);
		    switch (kbinput) {
			case ERR:
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
181
			    kbinput = tolower(old_kbinput);
182
183
184
			    *meta = 1;
			    break;
			default:
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
185
186
187
188
189
			    ungetch(kbinput);
			    ungetch(old_kbinput);
			    escape_seq = get_verbatim_kbinput(win, &escape_seq_len, 0);
			    kbinput = get_escape_seq_kbinput(win, escape_seq, escape_seq_len);
			    free(escape_seq);
190
191
192
		    }
		    nodelay(win, FALSE);
		    break;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
193
		}
194
195
		default:
		    /* Esc [character] == Meta-[character] */
196
		    kbinput = tolower(kbinput);
197
198
199
		    *meta = 1;
	    }
	    break;
200
201
	case NANO_CONTROL_8:
	    /* Terminal breakage, part 2: We shouldn't get Ctrl-8
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
202
203
	     * (Ctrl-?) for Backspace or Delete, but we do sometimes. */
	    kbinput = ISSET(REBIND_DELETE) ? NANO_DELETE_KEY : NANO_BACKSPACE_KEY;
204
	    break;
205
	case KEY_DOWN:
206
	    kbinput = NANO_NEXTLINE_KEY;
207
208
	    break;
	case KEY_UP:
209
	    kbinput = NANO_PREVLINE_KEY;
210
211
212
213
214
215
216
217
218
219
220
221
222
223
	    break;
	case KEY_LEFT:
	    kbinput = NANO_BACK_KEY;
	    break;
	case KEY_RIGHT:
	    kbinput = NANO_FORWARD_KEY;
	    break;
	case KEY_HOME:
	    kbinput = NANO_HOME_KEY;
	    break;
	case KEY_BACKSPACE:
	    kbinput = NANO_BACKSPACE_KEY;
	    break;
	case KEY_DC:
224
	    /* Terminal breakage, part 3: We should only get KEY_DC when
225
226
	     * hitting Delete, but we get it when hitting Backspace
	     * sometimes on FreeBSD.  Thank you, Lee Nelson. */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
227
	    kbinput = ISSET(REBIND_DELETE) ? NANO_BACKSPACE_KEY : NANO_DELETE_KEY;
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
	    break;
	case KEY_IC:
	    kbinput = NANO_INSERTFILE_KEY;
	    break;
	case KEY_NPAGE:
	    kbinput = NANO_NEXTPAGE_KEY;
	    break;
	case KEY_PPAGE:
	    kbinput = NANO_PREVPAGE_KEY;
	    break;
	case KEY_ENTER:
	    kbinput = NANO_ENTER_KEY;
	    break;
	case KEY_END:
	    kbinput = NANO_END_KEY;
	    break;
	case KEY_SUSPEND:
	    kbinput = NANO_SUSPEND_KEY;
	    break;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
247
248
249
250
251
252
	case KEY_SLEFT:
	    kbinput = NANO_BACK_KEY;
	    break;
	case KEY_SRIGHT:
	    kbinput = NANO_FORWARD_KEY;
	    break;
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
    }
#ifdef DEBUG
    fprintf(stderr, "get_accepted_kbinput(): kbinput = %d, meta = %d\n", kbinput, *meta);
#endif
    return kbinput;
}

/* Translate a three-digit decimal ASCII code from 000-255 into the
 * corresponding ASCII character. */
int get_ascii_kbinput(WINDOW *win, int kbinput)
{
    int retval;

    switch (kbinput) {
	case '0':
	case '1':
	case '2':
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
270
	    retval = (kbinput - '0') * 100;
271
272
273
274
275
276
277
278
279
280
281
282
283
	    break;
	default:
	    return kbinput;
    }

    kbinput = wgetch(win);
    switch (kbinput) {
	case '0':
	case '1':
	case '2':
	case '3':
	case '4':
	case '5':
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
284
	    retval += (kbinput - '0') * 10;
285
286
287
288
289
290
	    break;
	case '6':
	case '7':
	case '8':
	case '9':
	    if (retval < 200) {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
291
		retval += (kbinput - '0') * 10;
292
293
294
295
296
297
298
299
300
301
302
303
304
305
		break;
	    }
	default:
	    return kbinput;
    }

    kbinput = wgetch(win);
    switch (kbinput) {
	case '0':
	case '1':
	case '2':
	case '3':
	case '4':
	case '5':
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
306
	    retval += kbinput - '0';
307
308
309
310
311
312
	    break;
	case '6':
	case '7':
	case '8':
	case '9':
	    if (retval < 250) {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
313
		retval += kbinput - '0';
314
315
316
317
318
319
320
321
322
323
324
325
		break;
	    }
	default:
	    return kbinput;
    }

#ifdef DEBUG
    fprintf(stderr, "get_ascii_kbinput(): kbinput = %d\n", kbinput);
#endif
    return retval;
}

326
327
328
329
/* Translate escape sequences, most of which correspond to extended
 * keypad values.  These sequences are generated when the terminal
 * doesn't support the needed keys.  Assume that Escape has already been
 * read in, and that nodelay(win) is TRUE.
330
331
332
333
334
335
336
337
338
339
340
 *
 * The supported terminals are the Linux console, the FreeBSD console,
 * the Hurd console (a.k.a. the Mach console), xterm, rxvt, and Eterm.
 * There are several escape sequence conflicts and omissions, outlined
 * as follows:
 *
 * - F1 on FreeBSD console == kmous on xterm/rxvt/Eterm; the latter is
 *   omitted.  (Mouse input will only work properly if the extended
 *   keypad value KEY_MOUSE is generated on mouse events instead of the
 *   kmous escape sequence.)
 * - F9 on FreeBSD console == PageDown on Hurd console; the former is
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
341
342
343
 *   omitted.  (The editing keypad, consisting of Insert, Delete, Home,
 *   End, PageUp, and PageDown, is more important to have working than
 *   the function keys, because the functions of the former are not
344
345
346
347
348
349
350
 *   arbitrary and the functions of the latter are.)
 * - F10 on FreeBSD console == PageUp on Hurd console; the former is
 *   omitted.  (Same as above.)
 * - F13 on FreeBSD console == End on Hurd console; the former is
 *   omitted.  (Same as above.)
 * - The Hurd console has no escape sequences for F11, F12, F13, or
 *   F14. */
351
int get_escape_seq_kbinput(WINDOW *win, int *escape_seq, int
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
352
	escape_seq_len)
353
{
354
    int kbinput = ERR;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
355
356
357
358
359

    if (escape_seq_len > 1) {
	switch (escape_seq[0]) {
	    case 'O':
		switch (escape_seq[1]) {
360
361
362
363
364
365
366
367
368
369
370
371
372
		    case '2':
			if (escape_seq_len >= 3) {
			    switch (escape_seq[2]) {
				case 'P': /* Esc O 2 P == F13 on
					   * xterm. */
				    kbinput = KEY_F(13);
				    break;
				case 'Q': /* Esc O 2 Q == F14 on
					   * xterm. */
				    kbinput = KEY_F(14);
				    break;
			    }
			}
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
373
			break;
374
		    case 'A': /* Esc O A == Up on xterm. */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
375
376
377
		    case 'B': /* Esc O B == Down on xterm. */
		    case 'C': /* Esc O C == Right on xterm. */
		    case 'D': /* Esc O D == Left on xterm. */
378
			kbinput = get_escape_seq_abcd(escape_seq[1]);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
379
380
381
382
383
384
385
			break;
		    case 'F': /* Esc O F == End on xterm. */
			kbinput = NANO_END_KEY;
			break;
		    case 'H': /* Esc O H == Home on xterm. */
			kbinput = NANO_HOME_KEY;
			break;
386
387
		    case 'P': /* Esc O P == F1 on Hurd console. */
			kbinput = KEY_F(1);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
388
			break;
389
390
		    case 'Q': /* Esc O Q == F2 on Hurd console. */
			kbinput = KEY_F(2);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
391
			break;
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
		    case 'R': /* Esc O R == F3 on Hurd console. */
			kbinput = KEY_F(3);
			break;
		    case 'S': /* Esc O S == F4 on Hurd console. */
			kbinput = KEY_F(4);
			break;
		    case 'T': /* Esc O T == F5 on Hurd console. */
			kbinput = KEY_F(5);
			break;
		    case 'U': /* Esc O U == F6 on Hurd console. */
			kbinput = KEY_F(6);
			break;
		    case 'V': /* Esc O V == F7 on Hurd console. */
			kbinput = KEY_F(7);
			break;
		    case 'W': /* Esc O W == F8 on Hurd console. */
			kbinput = KEY_F(8);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
409
			break;
410
411
412
413
414
415
416
417
418
		    case 'X': /* Esc O X == F9 on Hurd console. */
			kbinput = KEY_F(9);
			break;
		    case 'Y': /* Esc O Y == F10 on Hurd console. */
			kbinput = KEY_F(10);
			break;
		    case 'a': /* Esc O a == Ctrl-Up on rxvt. */
		    case 'b': /* Esc O b == Ctrl-Down on rxvt. */
		    case 'c': /* Esc O c == Ctrl-Right on rxvt. */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
419
		    case 'd': /* Esc O d == Ctrl-Left on rxvt. */
420
			kbinput = get_escape_seq_abcd(escape_seq[1]);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
421
422
423
424
425
426
427
428
429
			break;
		}
		break;
	    case 'o':
		switch (escape_seq[1]) {
		    case 'a': /* Esc o a == Ctrl-Up on Eterm. */
		    case 'b': /* Esc o b == Ctrl-Down on Eterm. */
		    case 'c': /* Esc o c == Ctrl-Right on Eterm. */
		    case 'd': /* Esc o d == Ctrl-Left on Eterm. */
430
			kbinput = get_escape_seq_abcd(escape_seq[1]);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
431
432
433
434
435
436
			break;
		}
		break;
	    case '[':
		switch (escape_seq[1]) {
		    case '1':
437
			if (escape_seq_len >= 3) {
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
			    switch (escape_seq[2]) {
				case '1': /* Esc [ 1 1 ~ == F1 on
					   * rxvt/Eterm. */
				    kbinput = KEY_F(1);
				    break;
				case '2': /* Esc [ 1 2 ~ == F2 on
					   * rxvt/Eterm. */
				    kbinput = KEY_F(2);
				    break;
				case '3': /* Esc [ 1 3 ~ == F3 on
					   * rxvt/Eterm. */
				    kbinput = KEY_F(3);
				    break;
				case '4': /* Esc [ 1 4 ~ == F4 on
					   * rxvt/Eterm. */
				    kbinput = KEY_F(4);
				    break;
				case '5': /* Esc [ 1 5 ~ == F5 on
					   * xterm/rxvt/Eterm. */
				    kbinput = KEY_F(5);
				    break;
				case '7': /* Esc [ 1 7 ~ == F6 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(6);
				    break;
				case '8': /* Esc [ 1 8 ~ == F7 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(7);
				    break;
				case '9': /* Esc [ 1 9 ~ == F8 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(8);
				    break;
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
				case ';':
    if (escape_seq_len >= 4) {
	switch (escape_seq[3]) {
	    case '2':
		if (escape_seq_len >= 5) {
		    switch (escape_seq[4]) {
			case 'A': /* Esc [ 1 ; 2 A == Shift-Up on
				   * xterm. */
			case 'B': /* Esc [ 1 ; 2 B == Shift-Down on
				   * xterm. */
			case 'C': /* Esc [ 1 ; 2 C == Shift-Right on
				   * xterm. */
			case 'D': /* Esc [ 1 ; 2 D == Shift-Left on
				   * xterm. */
			    kbinput = get_escape_seq_abcd(escape_seq[4]);
			    break;
		    }
		}
		break;
	    case '5':
		if (escape_seq_len >= 5) {
		    switch (escape_seq[4]) {
			case 'A': /* Esc [ 1 ; 5 A == Ctrl-Up on
				   * xterm. */
			case 'B': /* Esc [ 1 ; 5 B == Ctrl-Down on
				   * xterm. */
			case 'C': /* Esc [ 1 ; 5 C == Ctrl-Right on
				   * xterm. */
			case 'D': /* Esc [ 1 ; 5 D == Ctrl-Left on
				   * xterm. */
			    kbinput = get_escape_seq_abcd(escape_seq[4]);
			    break;
		    }
		}
		break;
	}
    }
				    break;
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
				default: /* Esc [ 1 ~ == Home on Linux
					  * console. */
				    kbinput = NANO_HOME_KEY;
				    break;
			    }
			}
			break;
		    case '2':
			if (escape_seq_len >= 3) {
			    switch (escape_seq[2]) {
				case '0': /* Esc [ 2 0 ~ == F9 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(9);
				    break;
				case '1': /* Esc [ 2 1 ~ == F10 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(10);
				    break;
				case '3': /* Esc [ 2 3 ~ == F11 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(11);
				    break;
				case '4': /* Esc [ 2 4 ~ == F12 on Linux
					   * console/xterm/rxvt/Eterm. */
				    kbinput = KEY_F(12);
				    break;
				case '5': /* Esc [ 2 5 ~ == F13 on Linux
					   * console/rxvt/Eterm. */
				    kbinput = KEY_F(13);
				    break;
				case '6': /* Esc [ 2 6 ~ == F14 on Linux
					   * console/rxvt/Eterm. */
				    kbinput = KEY_F(14);
				    break;
				default: /* Esc [ 2 ~ == Insert on Linux
					  * console/xterm. */
				    kbinput = NANO_INSERTFILE_KEY;
				    break;
			    }
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
548
549
550
551
552
553
554
555
556
557
558
			}
			break;
		    case '3': /* Esc [ 3 ~ == Delete on Linux
			       * console/xterm. */
			kbinput = NANO_DELETE_KEY;
			break;
		    case '4': /* Esc [ 4 ~ == End on Linux
			       * console/xterm. */
			kbinput = NANO_END_KEY;
			break;
		    case '5': /* Esc [ 5 ~ == PageUp on Linux
559
			       * console/xterm; Esc [ 5 ^ == PageUp on
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
560
561
562
563
			       * Eterm. */
			kbinput = NANO_PREVPAGE_KEY;
			break;
		    case '6': /* Esc [ 6 ~ == PageDown on Linux
564
			       * console/xterm; Esc [ 6 ^ == PageDown on
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
			       * Eterm. */
			kbinput = NANO_NEXTPAGE_KEY;
			break;
		    case '7': /* Esc [ 7 ~ == Home on rxvt. */
			kbinput = NANO_HOME_KEY;
			break;
		    case '8': /* Esc [ 8 ~ == End on rxvt. */
			kbinput = NANO_END_KEY;
			break;
		    case '9': /* Esc [ 9 == Delete on Hurd console. */
			kbinput = NANO_DELETE_KEY;
			break;
		    case '@': /* Esc [ @ == Insert on Hurd console. */
			kbinput = NANO_INSERTFILE_KEY;
			break;
		    case 'A': /* Esc [ A == Up on Linux console/FreeBSD
			       * console/Hurd console/rxvt/Eterm. */
		    case 'B': /* Esc [ B == Down on Linux
			       * console/FreeBSD console/Hurd
			       * console/rxvt/Eterm. */
		    case 'C': /* Esc [ C == Right on Linux
			       * console/FreeBSD console/Hurd
			       * console/rxvt/Eterm. */
		    case 'D': /* Esc [ D == Left on Linux
			       * console/FreeBSD console/Hurd
			       * console/rxvt/Eterm. */
591
			kbinput = get_escape_seq_abcd(escape_seq[1]);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
			break;
		    case 'F': /* Esc [ F == End on FreeBSD
			       * console/Eterm. */
			kbinput = NANO_END_KEY;
			break;
		    case 'G': /* Esc [ G == PageDown on FreeBSD
				   * console. */
			kbinput = NANO_NEXTPAGE_KEY;
			break;
		    case 'H': /* Esc [ H == Home on FreeBSD
			       * console/Hurd console/Eterm. */
			kbinput = NANO_HOME_KEY;
			break;
		    case 'I': /* Esc [ I == PageUp on FreeBSD
			       * console. */
			kbinput = NANO_PREVPAGE_KEY;
			break;
		    case 'L': /* Esc [ L == Insert on FreeBSD
			       * console. */
			kbinput = NANO_INSERTFILE_KEY;
			break;
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
		    case 'M': /* Esc [ M == F1 on FreeBSD console. */
			kbinput = KEY_F(1);
			break;
		    case 'N': /* Esc [ N == F2 on FreeBSD console. */
			kbinput = KEY_F(2);
			break;
		    case 'O':
			if (escape_seq_len >= 3) {
			    switch (escape_seq[2]) {
				case 'P': /* Esc [ O P == F1 on
					   * xterm. */
				    kbinput = KEY_F(1);
				    break;
				case 'Q': /* Esc [ O Q == F2 on
					   * xterm. */
				    kbinput = KEY_F(2);
				    break;
				case 'R': /* Esc [ O R == F3 on
					   * xterm. */
				    kbinput = KEY_F(3);
				    break;
				case 'S': /* Esc [ O S == F4 on
					   * xterm. */
				    kbinput = KEY_F(4);
				    break;
				default: /* Esc [ O == F3 on
					  * FreeBSD console. */
				    kbinput = KEY_F(3);
				    break;
			    }
			}
			break;
		    case 'P': /* Esc [ P == F4 on FreeBSD console. */
			kbinput = KEY_F(4);
			break;
		    case 'Q': /* Esc [ Q == F5 on FreeBSD console. */
			kbinput = KEY_F(5);
			break;
		    case 'R': /* Esc [ R == F6 on FreeBSD console. */
			kbinput = KEY_F(6);
			break;
		    case 'S': /* Esc [ S == F7 on FreeBSD console. */
			kbinput = KEY_F(7);
			break;
		    case 'T': /* Esc [ T == F8 on FreeBSD console. */
			kbinput = KEY_F(8);
			break;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
660
661
662
663
664
665
		    case 'U': /* Esc [ U == PageDown on Hurd console. */
			kbinput = NANO_NEXTPAGE_KEY;
			break;
		    case 'V': /* Esc [ V == PageUp on Hurd console. */
			kbinput = NANO_PREVPAGE_KEY;
			break;
666
667
668
669
670
671
		    case 'W': /* Esc [ W == F11 on FreeBSD console. */
			kbinput = KEY_F(11);
			break;
		    case 'X': /* Esc [ X == F12 on FreeBSD console. */
			kbinput = KEY_F(12);
			break;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
672
673
674
		    case 'Y': /* Esc [ Y == End on Hurd console. */
			kbinput = NANO_END_KEY;
			break;
675
676
		    case 'Z': /* Esc [ Z == F14 on FreeBSD console. */
			kbinput = KEY_F(14);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
677
			break;
678
		    case 'a': /* Esc [ a == Shift-Up on rxvt/Eterm. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
679
680
681
682
		    case 'b': /* Esc [ b == Shift-Down on rxvt/Eterm. */
		    case 'c': /* Esc [ c == Shift-Right on
			       * rxvt/Eterm. */
		    case 'd': /* Esc [ d == Shift-Left on rxvt/Eterm. */
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
			kbinput = get_escape_seq_abcd(escape_seq[1]);
			break;
		    case '[':
			if (escape_seq_len >= 3) {
			    switch (escape_seq[2]) {
				case 'A': /* Esc [ [ A == F1 on Linux
					   * console. */
				    kbinput = KEY_F(1);
				    break;
				case 'B': /* Esc [ [ B == F2 on Linux
					   * console. */
				    kbinput = KEY_F(2);
				    break;
				case 'C': /* Esc [ [ C == F3 on Linux
					   * console. */
				    kbinput = KEY_F(3);
				    break;
				case 'D': /* Esc [ [ D == F4 on Linux
					   * console. */
				    kbinput = KEY_F(4);
				    break;
				case 'E': /* Esc [ [ E == F5 on Linux
					   * console. */
				    kbinput = KEY_F(5);
				    break;
			    }
			}
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
710
711
712
713
			break;
		}
		break;
	}
714
715
    }

716
    if (kbinput == ERR) {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
717
718
719
720
	/* This escape sequence is unrecognized; send it back. */
	for (; escape_seq_len > 1; escape_seq_len--)
	    ungetch(escape_seq[escape_seq_len - 1]);
	kbinput = escape_seq[0];
721
    }
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
722
723

    return kbinput;
724
725
}

726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
/* Return the equivalent arrow key value for the case-insensitive
 * letters A (up), B (down), C (left), and D (right).  These are common
 * to many escape sequences. */
int get_escape_seq_abcd(int kbinput)
{
    switch (tolower(kbinput)) {
	case 'a':
	    return NANO_PREVLINE_KEY;
	case 'b':
	    return NANO_NEXTLINE_KEY;
	case 'c':
	    return NANO_FORWARD_KEY;
	case 'd':
	    return NANO_BACK_KEY;
	default:
	    return ERR;
    }
}

745
#ifndef DISABLE_MOUSE
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
746
747
748
749
750
751
752
753
754
/* Check for a mouse event, and if one's taken place, save the
 * coordinates where it took place in mouse_x and mouse_y.  After that,
 * if allow_shortcuts is zero, return 0.  Otherwise, if the mouse event
 * took place on the shortcut list on the bottom two lines of the screen
 * (assuming that the shortcut list is visible), figure out which
 * shortcut was clicked and ungetch() the equivalent keystroke(s).
 * Return 0 if no keystrokes were ungetch()ed, or 1 if at least one was.
 * Assume that KEY_MOUSE has already been read in. */
int get_mouseinput(int *mouse_x, int *mouse_y, int allow_shortcuts)
755
756
757
758
759
760
761
762
763
764
765
766
767
768
{
    MEVENT mevent;

    *mouse_x = -1;
    *mouse_y = -1;

    /* First, get the actual mouse event. */
    if (getmouse(&mevent) == ERR)
	return 0;

    /* Save the screen coordinates where the mouse event took place. */
    *mouse_x = mevent.x;
    *mouse_y = mevent.y;

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
769
770
771
772
773
774
775
776
    /* If we're not allowing shortcuts' we're done now. */
    if (!allow_shortcuts)
	return 0;

    /* Otherwise, if the current shortcut list is being displayed on the
     * last two lines of the screen and the mouse event took place
     * inside it, we need to figure out which shortcut was clicked and
     * ungetch() the equivalent keystroke(s) for it. */
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
    if (!ISSET(NO_HELP) && wenclose(bottomwin, *mouse_y, *mouse_x)) {
	int i, j;
	int currslen;
	    /* The number of shortcuts in the current shortcut list. */
	const shortcut *s = currshortcut;
	    /* The actual shortcut we clicked on, starting at the first
	     * one in the current shortcut list. */

	/* Get the shortcut lists' length. */
	if (currshortcut == main_list)
	    currslen = MAIN_VISIBLE;
	else
	    currslen = length_of_list(currshortcut);

	/* Calculate the width of each shortcut in the list (it's the
	 * same for all of them). */
	if (currslen < 2)
	    i = COLS / 6;
	else
	    i = COLS / ((currslen / 2) + (currslen % 2));

	/* Calculate the y-coordinates relative to the beginning of
	 * bottomwin, i.e, the bottom three lines of the screen. */
	j = *mouse_y - (editwinrows + 3);

	/* If we're on the statusbar, beyond the end of the shortcut
	 * list, or beyond the end of a shortcut on the right side of
	 * the screen, don't do anything. */
	if (j < 0 || (*mouse_x / i) >= currslen)
	    return 0;
	j = (*mouse_x / i) * 2 + j;
	if (j >= currslen)
	    return 0;

	/* Go through the shortcut list to determine which shortcut was
	 * clicked. */
	for (; j > 0; j--)
	    s = s->next;

	/* And ungetch() the equivalent keystroke. */
	ungetch(s->val);

	/* If it's not a control character, assume it's a Meta key
	 * sequence, in which case we need to ungetch() Escape too. */
	if (!is_cntrl_char(s->val))
	   ungetch(NANO_CONTROL_3);

	return 1;
    }
    return 0;
}
#endif

Chris Allegretta's avatar
Chris Allegretta committed
830
831
832
833
834
int do_first_line(void)
{
    current = fileage;
    placewewant = 0;
    current_x = 0;
835
    edit_update(current, TOP);
Chris Allegretta's avatar
Chris Allegretta committed
836
837
838
839
840
841
842
843
    return 1;
}

int do_last_line(void)
{
    current = filebot;
    placewewant = 0;
    current_x = 0;
844
    edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
845
846
847
    return 1;
}

Chris Allegretta's avatar
Chris Allegretta committed
848
849
850
851
/* Return the placewewant associated with current_x.  That is, xplustabs
 * is the zero-based column position of the cursor.  Value is no smaller
 * than current_x. */
size_t xplustabs(void)
Chris Allegretta's avatar
Chris Allegretta committed
852
{
Chris Allegretta's avatar
Chris Allegretta committed
853
    return strnlenpt(current->data, current_x);
Chris Allegretta's avatar
Chris Allegretta committed
854
855
}

856
857
858
859
/* actual_x() gives the index in str of the character displayed at
 * column xplus.  That is, actual_x() is the largest value such that
 * strnlenpt(str, actual_x(str, xplus)) <= xplus. */
size_t actual_x(const char *str, size_t xplus)
Chris Allegretta's avatar
Chris Allegretta committed
860
{
Chris Allegretta's avatar
Chris Allegretta committed
861
    size_t i = 0;
862
	/* the position in str, returned */
Chris Allegretta's avatar
Chris Allegretta committed
863
    size_t length = 0;
864
	/* the screen display width to str[i] */
Chris Allegretta's avatar
Chris Allegretta committed
865

866
    assert(str != NULL);
Chris Allegretta's avatar
Chris Allegretta committed
867

868
869
    for (; length < xplus && *str != '\0'; i++, str++) {
	if (*str == '\t')
870
	    length += tabsize - (length % tabsize);
871
	else if (is_cntrl_char((int)*str))
Chris Allegretta's avatar
Chris Allegretta committed
872
873
874
875
	    length += 2;
	else
	    length++;
    }
876
877
    assert(length == strnlenpt(str - i, i));
    assert(i <= strlen(str - i));
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
878

Chris Allegretta's avatar
Chris Allegretta committed
879
880
    if (length > xplus)
	i--;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
881

Chris Allegretta's avatar
Chris Allegretta committed
882
    return i;
883
884
}

885
886
/* A strlen with tabs factored in, similar to xplustabs().  How many
 * columns wide are the first size characters of buf? */
Chris Allegretta's avatar
Chris Allegretta committed
887
size_t strnlenpt(const char *buf, size_t size)
888
{
Chris Allegretta's avatar
Chris Allegretta committed
889
890
    size_t length = 0;

891
892
893
894
895
896
897
898
899
    assert(buf != NULL);
    for (; *buf != '\0' && size != 0; size--, buf++) {
	if (*buf == '\t')
	    length += tabsize - (length % tabsize);
	else if (is_cntrl_char((int)*buf))
	    length += 2;
	else
	    length++;
    }
Chris Allegretta's avatar
Chris Allegretta committed
900
    return length;
Chris Allegretta's avatar
Chris Allegretta committed
901
902
}

903
/* How many columns wide is buf? */
Chris Allegretta's avatar
Chris Allegretta committed
904
size_t strlenpt(const char *buf)
905
{
Chris Allegretta's avatar
Chris Allegretta committed
906
    return strnlenpt(buf, -1);
907
908
}

Chris Allegretta's avatar
Chris Allegretta committed
909
910
void blank_bottombars(void)
{
911
    if (!ISSET(NO_HELP)) {
Chris Allegretta's avatar
Chris Allegretta committed
912
913
914
	mvwaddstr(bottomwin, 1, 0, hblank);
	mvwaddstr(bottomwin, 2, 0, hblank);
    }
Chris Allegretta's avatar
Chris Allegretta committed
915
916
}

917
918
919
920
921
922
923
924
925
void blank_bottomwin(void)
{
    if (ISSET(NO_HELP))
	return;

    mvwaddstr(bottomwin, 1, 0, hblank);
    mvwaddstr(bottomwin, 2, 0, hblank);
}

Chris Allegretta's avatar
Chris Allegretta committed
926
927
928
void blank_edit(void)
{
    int i;
929
    for (i = 0; i < editwinrows; i++)
Chris Allegretta's avatar
Chris Allegretta committed
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
	mvwaddstr(edit, i, 0, hblank);
}

void blank_statusbar(void)
{
    mvwaddstr(bottomwin, 0, 0, hblank);
}

void blank_statusbar_refresh(void)
{
    blank_statusbar();
    wrefresh(bottomwin);
}

void check_statblank(void)
{
    if (statblank > 1)
	statblank--;
    else if (statblank == 1 && !ISSET(CONSTUPDATE)) {
	statblank--;
	blank_statusbar_refresh();
    }
}

954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
/* Convert buf into a string that can be displayed on screen.  The
 * caller wants to display buf starting with column start_col, and
 * extending for at most len columns.  start_col is zero-based.  len is
 * one-based, so len == 0 means you get "" returned.  The returned
 * string is dynamically allocated, and should be freed. */
char *display_string(const char *buf, size_t start_col, int len)
{
    size_t start_index;
	/* Index in buf of first character shown in return value. */
    size_t column;
	/* Screen column start_index corresponds to. */
    size_t end_index;
	/* Index in buf of last character shown in return value. */
    size_t alloc_len;
	/* The length of memory allocated for converted. */
    char *converted;
	/* The string we return. */
    size_t index;
	/* Current position in converted. */

    if (len == 0)
	return mallocstrcpy(NULL, "");

    start_index = actual_x(buf, start_col);
    column = strnlenpt(buf, start_index);
    assert(column <= start_col);
    end_index = actual_x(buf, start_col + len - 1);
    alloc_len = strnlenpt(buf, end_index + 1) - column;
    if (len > alloc_len + column - start_col)
	len = alloc_len + column - start_col;
    converted = charalloc(alloc_len + 1);
    buf += start_index;
    index = 0;

    for (; index < alloc_len; buf++) {
	if (*buf == '\t')
	    do {
		converted[index++] = ' ';
	    } while ((column + index) % tabsize);
	else if (is_cntrl_char(*buf)) {
	    converted[index++] = '^';
	    if (*buf == '\n')
		/* Treat newlines embedded in a line as encoded nulls;
		 * the line in question should be run through unsunder()
		 * before reaching here. */
		converted[index++] = '@';
	    else if (*buf == NANO_CONTROL_8)
		converted[index++] = '?';
	    else
		converted[index++] = *buf + 64;
	} else
	    converted[index++] = *buf;
    }
    assert(len <= alloc_len + column - start_col);
    charmove(converted, converted + start_col - column, len);
    null_at(&converted, len);

    return charealloc(converted, len + 1);
}

Chris Allegretta's avatar
Chris Allegretta committed
1014
/* Repaint the statusbar when getting a character in nanogetstr().  buf
1015
 * should be no longer than max(0, COLS - 4).
Chris Allegretta's avatar
Chris Allegretta committed
1016
 *
Chris Allegretta's avatar
Chris Allegretta committed
1017
 * Note that we must turn on A_REVERSE here, since do_help() turns it
Chris Allegretta's avatar
Chris Allegretta committed
1018
 * off! */
1019
void nanoget_repaint(const char *buf, const char *inputbuf, size_t x)
1020
{
1021
1022
    size_t x_real = strnlenpt(inputbuf, x);
    int wid = COLS - strlen(buf) - 2;
1023

Chris Allegretta's avatar
Chris Allegretta committed
1024
1025
    assert(0 <= x && x <= strlen(inputbuf));

1026
    wattron(bottomwin, A_REVERSE);
1027
    blank_statusbar();
1028

Chris Allegretta's avatar
Chris Allegretta committed
1029
1030
    mvwaddstr(bottomwin, 0, 0, buf);
    waddch(bottomwin, ':');
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044

    if (COLS > 1)
	waddch(bottomwin, x_real < wid ? ' ' : '$');
    if (COLS > 2) {
	size_t page_start = x_real - x_real % wid;
	char *expanded = display_string(inputbuf, page_start, wid);

	assert(wid > 0);
	assert(strlen(expanded) <= wid);
	waddstr(bottomwin, expanded);
	free(expanded);
	wmove(bottomwin, 0, COLS - wid + x_real - page_start);
    } else
	wmove(bottomwin, 0, COLS - 1);
1045
    wattroff(bottomwin, A_REVERSE);
1046
1047
}

Chris Allegretta's avatar
Chris Allegretta committed
1048
1049
/* Get the input from the kb; this should only be called from
 * statusq(). */
1050
int nanogetstr(int allowtabs, const char *buf, const char *def,
1051
1052
1053
#ifndef NANO_SMALL
		historyheadtype *history_list,
#endif
1054
		const shortcut *s
1055
#ifndef DISABLE_TABCOMP
1056
		, int *list
1057
#endif
1058
		)
Chris Allegretta's avatar
Chris Allegretta committed
1059
1060
{
    int kbinput;
1061
    int meta;
Chris Allegretta's avatar
Chris Allegretta committed
1062
    static int x = -1;
Chris Allegretta's avatar
Chris Allegretta committed
1063
1064
1065
1066
1067
1068
1069
	/* the cursor position in 'answer' */
    int xend;
	/* length of 'answer', the status bar text */
    int tabbed = 0;
	/* used by input_tab() */
    const shortcut *t;

1070
1071
1072
#ifndef NANO_SMALL
   /* for history */
    char *history = NULL;
1073
    char *currentbuf = NULL;
1074
    char *complete = NULL;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1075
1076
1077
1078
1079
1080
1081
1082
1083
    int last_kbinput = 0;

    /* This variable is used in the search history code.  use_cb == 0 
       means that we're using the existing history and ignoring
       currentbuf.  use_cb == 1 means that the entry in answer should be
       moved to currentbuf or restored from currentbuf to answer. 
       use_cb == 2 means that the entry in currentbuf should be moved to
       answer or restored from answer to currentbuf. */
    int use_cb = 0;
1084
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1085
    xend = strlen(def);
Chris Allegretta's avatar
Chris Allegretta committed
1086
1087
1088
1089
1090

    /* Only put x at the end of the string if it's uninitialized or if
       it would be past the end of the string as it is.  Otherwise,
       leave it alone.  This is so the cursor position stays at the same
       place if a prompt-changing toggle is pressed. */
1091
    if (x == -1 || x > xend || resetstatuspos)
Chris Allegretta's avatar
Chris Allegretta committed
1092
1093
	x = xend;

Chris Allegretta's avatar
Chris Allegretta committed
1094
    answer = charealloc(answer, xend + 1);
Chris Allegretta's avatar
Chris Allegretta committed
1095
1096
1097
1098
    if (xend > 0)
	strcpy(answer, def);
    else
	answer[0] = '\0';
Chris Allegretta's avatar
Chris Allegretta committed
1099

1100
#if !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
1101
    currshortcut = s;
1102
1103
#endif

Chris Allegretta's avatar
Chris Allegretta committed
1104
    /* Get the input! */
1105

Chris Allegretta's avatar
Chris Allegretta committed
1106
    nanoget_repaint(buf, answer, x);
Chris Allegretta's avatar
Chris Allegretta committed
1107

1108
1109
    /* Make sure any editor screen updates are displayed before getting
       input */
1110
1111
    wrefresh(edit);

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1112
    while ((kbinput = get_kbinput(bottomwin, &meta)) != NANO_ENTER_KEY) {
1113
	for (t = s; t != NULL; t = t->next) {
1114
#ifdef DEBUG
1115
	    fprintf(stderr, "Aha! \'%c\' (%d)\n", kbinput, kbinput);
1116
1117
#endif

1118
	    if (kbinput == t->val && is_cntrl_char(kbinput)) {
1119

1120
#ifndef DISABLE_HELP
1121
1122
		/* Have to do this here, it would be too late to do it
		   in statusq() */
Chris Allegretta's avatar
Chris Allegretta committed
1123
		if (kbinput == NANO_HELP_KEY || kbinput == NANO_HELP_FKEY) {
1124
1125
1126
1127
		    do_help();
		    break;
		}
#endif
1128
1129
#ifndef NANO_SMALL
		/* Have to handle these here too, for the time being */
1130
		if (kbinput == NANO_PREVLINE_KEY || kbinput == NANO_NEXTLINE_KEY)
1131
1132
		    break;
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1133

1134
		return t->val;
Chris Allegretta's avatar
Chris Allegretta committed
1135
1136
	    }
	}
Chris Allegretta's avatar
Chris Allegretta committed
1137
	assert(0 <= x && x <= xend && xend == strlen(answer));
Chris Allegretta's avatar
Chris Allegretta committed
1138

Chris Allegretta's avatar
Chris Allegretta committed
1139
1140
1141
	if (kbinput != '\t')
	    tabbed = 0;

Chris Allegretta's avatar
Chris Allegretta committed
1142
	switch (kbinput) {
1143
#ifndef DISABLE_MOUSE
1144
1145
1146
	case KEY_MOUSE:
	    do_mouse();
	    break;
1147
#endif
1148
	case NANO_HOME_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1149
	    x = 0;
Chris Allegretta's avatar
Chris Allegretta committed
1150
	    break;
1151
	case NANO_END_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1152
	    x = xend;
Chris Allegretta's avatar
Chris Allegretta committed
1153
	    break;
1154
	case NANO_FORWARD_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1155
1156
1157
	    if (x < xend)
		x++;
	    break;
1158
	case NANO_DELETE_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1159
	    if (x < xend) {
1160
		charmove(answer + x, answer + x + 1, xend - x);
Chris Allegretta's avatar
Chris Allegretta committed
1161
		xend--;
Chris Allegretta's avatar
Chris Allegretta committed
1162
1163
	    }
	    break;
1164
1165
	case NANO_CUT_KEY:
	case NANO_UNCUT_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1166
1167
1168
	    null_at(&answer, 0);
	    xend = 0;
	    x = 0;
Chris Allegretta's avatar
Chris Allegretta committed
1169
	    break;
1170
	case NANO_BACKSPACE_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1171
	    if (x > 0) {
1172
		charmove(answer + x - 1, answer + x, xend - x + 1);
Chris Allegretta's avatar
Chris Allegretta committed
1173
		x--;
Chris Allegretta's avatar
Chris Allegretta committed
1174
1175
		xend--;
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1176
	    break;
1177
	case NANO_TAB_KEY:
1178
1179
#ifndef NANO_SMALL
	    /* tab history completion */
Chris Allegretta's avatar
Chris Allegretta committed
1180
	    if (history_list != NULL) {
1181
		if (!complete || last_kbinput != NANO_TAB_KEY) {
1182
1183
1184
		    history_list->current = (historytype *)history_list;
		    history_list->len = strlen(answer);
		}
Chris Allegretta's avatar
Chris Allegretta committed
1185

Chris Allegretta's avatar
Chris Allegretta committed
1186
		if (history_list->len > 0) {
1187
1188
		    complete = get_history_completion(history_list, answer);
		    xend = strlen(complete);
Chris Allegretta's avatar
Chris Allegretta committed
1189
		    x = xend;
1190
1191
		    answer = mallocstrcpy(answer, complete);
		}
1192
	    }
1193
#ifndef DISABLE_TABCOMP
1194
1195
	    else
#endif
1196
1197
#endif
#ifndef DISABLE_TABCOMP
1198
1199
1200
1201
1202
1203
1204
1205
	    if (allowtabs) {
		int shift = 0;

		answer = input_tab(answer, x, &tabbed, &shift, list);
		xend = strlen(answer);
		x += shift;
		if (x > xend)
		    x = xend;
1206
1207
1208
	    }
#endif
	    break;
1209
	case NANO_BACK_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
1210
	    if (x > 0)
Chris Allegretta's avatar
Chris Allegretta committed
1211
1212
		x--;
	    break;
1213
	case NANO_PREVLINE_KEY:
1214
#ifndef NANO_SMALL
Chris Allegretta's avatar
Chris Allegretta committed
1215
	    if (history_list != NULL) {
1216

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1217
1218
1219
1220
1221
1222
1223
		/* if currentbuf is NULL, or if use_cb is 1, currentbuf
		   isn't NULL, and currentbuf is different from answer,
		   it means that we're scrolling up at the top of the
		   search history, and we need to save the current
		   answer in currentbuf; do this and reset use_cb to
		   0 */
		if (currentbuf == NULL || (use_cb == 1 && strcmp(currentbuf, answer))) {
1224
		    currentbuf = mallocstrcpy(currentbuf, answer);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1225
		    use_cb = 0;
1226
1227
		}

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
		/* if currentbuf isn't NULL, use_cb is 2, and currentbuf 
		   is different from answer, it means that we're
		   scrolling up at the bottom of the search history, and
		   we need to make the string in currentbuf the current
		   answer; do this, blow away currentbuf since we don't
		   need it anymore, and reset use_cb to 0 */
		if (currentbuf != NULL && use_cb == 2 && strcmp(currentbuf, answer)) {
		    answer = mallocstrcpy(answer, currentbuf);
		    free(currentbuf);
		    currentbuf = NULL;
		    xend = strlen(answer);
		    use_cb = 0;

		/* else get older search from the history list and save
		   it in answer; if there is no older search, blank out 
		   answer */
		} else if ((history = get_history_older(history_list)) != NULL) {
1245
1246
1247
1248
1249
1250
1251
1252
1253
		    answer = mallocstrcpy(answer, history);
		    xend = strlen(history);
		} else {
		    answer = mallocstrcpy(answer, "");
		    xend = 0;
		}
		x = xend;
	    }
#endif
1254
	    break;
1255
	case NANO_NEXTLINE_KEY:
1256
#ifndef NANO_SMALL
Chris Allegretta's avatar
Chris Allegretta committed
1257
	    if (history_list != NULL) {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1258
1259
1260

		/* get newer search from the history list and save it 
		   in answer */
Chris Allegretta's avatar
Chris Allegretta committed
1261
		if ((history = get_history_newer(history_list)) != NULL) {
1262
1263
		    answer = mallocstrcpy(answer, history);
		    xend = strlen(history);
1264

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1265
1266
1267
1268
1269
1270
1271
1272
1273
		/* if there is no newer search, we're here */
		
		/* if currentbuf isn't NULL and use_cb isn't 2, it means 
		   that we're scrolling down at the bottom of the search
		   history and we need to make the string in currentbuf
		   the current answer; do this, blow away currentbuf
		   since we don't need it anymore, and set use_cb to
		   1 */
		} else if (currentbuf != NULL && use_cb != 2) {
1274
		    answer = mallocstrcpy(answer, currentbuf);
Chris Allegretta's avatar
Chris Allegretta committed
1275
1276
1277
		    free(currentbuf);
		    currentbuf = NULL;
		    xend = strlen(answer);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1278
1279
1280
1281
		    use_cb = 1;

		/* otherwise, if currentbuf is NULL and use_cb isn't 2, 
		   it means that we're scrolling down at the bottom of
1282
1283
1284
1285
		   the search history and the current answer (if it's
		   not blank) needs to be saved in currentbuf; do this,
		   blank out answer (if necessary), and set use_cb to
		   2 */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1286
		} else if (use_cb != 2) {
1287
1288
1289
1290
		    if (answer[0] != '\0') {
			currentbuf = mallocstrcpy(currentbuf, answer);
			answer = mallocstrcpy(answer, "");
		    }
1291
		    xend = 0;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1292
		    use_cb = 2;
1293
1294
1295
1296
		}
		x = xend;
	    }
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1297
	    break;
1298
1299
	    default:

1300
		for (t = s; t != NULL; t = t->next) {
1301
#ifdef DEBUG
1302
		    fprintf(stderr, "Aha! \'%c\' (%d)\n", kbinput,
Chris Allegretta's avatar
Chris Allegretta committed
1303
			    kbinput);
1304
#endif
1305
1306
1307
1308
1309
1310
		    if (meta == 1 && (kbinput == t->metaval || kbinput == t->misc))
			/* We hit a Meta key.  Do like above.  We don't
			 * just ungetch() the letter and let it get
			 * caught above cause that screws the
			 * keypad... */
			return kbinput;
1311
		}
Chris Allegretta's avatar
Chris Allegretta committed
1312

1313
	    if (is_cntrl_char(kbinput))
Chris Allegretta's avatar
Chris Allegretta committed
1314
		break;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1315
	    answer = charealloc(answer, xend + 2);
1316
	    charmove(answer + x + 1, answer + x, xend - x + 1);
Chris Allegretta's avatar
Chris Allegretta committed
1317
1318
	    xend++;
	    answer[x] = kbinput;
Chris Allegretta's avatar
Chris Allegretta committed
1319
1320
1321
	    x++;

#ifdef DEBUG
1322
	    fprintf(stderr, "input \'%c\' (%d)\n", kbinput, kbinput);
Chris Allegretta's avatar
Chris Allegretta committed
1323
#endif
1324
	} /* switch (kbinput) */
1325
#ifndef NANO_SMALL
1326
	last_kbinput = kbinput;
1327
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1328
	nanoget_repaint(buf, answer, x);
Chris Allegretta's avatar
Chris Allegretta committed
1329
	wrefresh(bottomwin);
Chris Allegretta's avatar
Chris Allegretta committed
1330
    } /* while (kbinput ...) */
Chris Allegretta's avatar
Chris Allegretta committed
1331

Chris Allegretta's avatar
Chris Allegretta committed
1332
1333
1334
    /* We finished putting in an answer; reset x */
    x = -1;

Chris Allegretta's avatar
Chris Allegretta committed
1335
    /* Just check for a blank answer here */
1336
    if (answer[0] == '\0')
Chris Allegretta's avatar
Chris Allegretta committed
1337
1338
1339
1340
1341
	return -2;
    else
	return 0;
}

1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
/* If modified is not already set, set it and update titlebar. */
void set_modified(void)
{
    if (!ISSET(MODIFIED)) {
	SET(MODIFIED);
	titlebar(NULL);
	wrefresh(topwin);
    }
}

1352
void titlebar(const char *path)
Chris Allegretta's avatar
Chris Allegretta committed
1353
1354
{
    int namelen, space;
1355
    const char *what = path;
Chris Allegretta's avatar
Chris Allegretta committed
1356
1357
1358

    if (path == NULL)
	what = filename;
Chris Allegretta's avatar
Chris Allegretta committed
1359
1360

    wattron(topwin, A_REVERSE);
1361

Chris Allegretta's avatar
Chris Allegretta committed
1362
    mvwaddstr(topwin, 0, 0, hblank);
1363
    mvwaddnstr(topwin, 0, 2, VERMSG, COLS - 3);
Chris Allegretta's avatar
Chris Allegretta committed
1364

1365
    space = COLS - sizeof(VERMSG) - 23;
Chris Allegretta's avatar
Chris Allegretta committed
1366

Chris Allegretta's avatar
Chris Allegretta committed
1367
    namelen = strlen(what);
Chris Allegretta's avatar
Chris Allegretta committed
1368

1369
1370
    if (space > 0) {
        if (what[0] == '\0')
Chris Allegretta's avatar
Chris Allegretta committed
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
      	    mvwaddnstr(topwin, 0, COLS / 2 - 6, _("New Buffer"),
			COLS / 2 + COLS % 2 - 6);
        else if (namelen > space) {
	    if (path == NULL)
		waddstr(topwin, _("  File: ..."));
	    else
		waddstr(topwin, _("   DIR: ..."));
	    waddstr(topwin, &what[namelen - space]);
	} else {
	    if (path == NULL)
		mvwaddstr(topwin, 0, COLS / 2 - (namelen / 2 + 1),
				_("File: "));
	    else
		mvwaddstr(topwin, 0, COLS / 2 - (namelen / 2 + 1),
				_(" DIR: "));
	    waddstr(topwin, what);
Chris Allegretta's avatar
Chris Allegretta committed
1387
	}
1388
    } /* If we don't have space, we shouldn't bother */
Chris Allegretta's avatar
Chris Allegretta committed
1389
    if (ISSET(MODIFIED))
Chris Allegretta's avatar
Chris Allegretta committed
1390
	mvwaddnstr(topwin, 0, COLS - 11, _(" Modified "), 11);
Chris Allegretta's avatar
Chris Allegretta committed
1391
    else if (ISSET(VIEW_MODE))
Chris Allegretta's avatar
Chris Allegretta committed
1392
	mvwaddnstr(topwin, 0, COLS - 11, _(" View "), 11);
1393

Chris Allegretta's avatar
Chris Allegretta committed
1394
    wattroff(topwin, A_REVERSE);
1395

Chris Allegretta's avatar
Chris Allegretta committed
1396
1397
1398
1399
    wrefresh(topwin);
    reset_cursor();
}

1400
void bottombars(const shortcut *s)
Chris Allegretta's avatar
Chris Allegretta committed
1401
{
1402
    int i, j, numcols;
1403
    char keystr[9];
1404
1405
    int slen;

Chris Allegretta's avatar
Chris Allegretta committed
1406
1407
1408
    if (ISSET(NO_HELP))
	return;

1409
1410
1411
1412
1413
1414
1415
1416
    if (s == main_list) {
	slen = MAIN_VISIBLE;
	assert(MAIN_VISIBLE <= length_of_list(s));
    } else
	slen = length_of_list(s);

    /* There will be this many columns of shortcuts */
    numcols = (slen + (slen % 2)) / 2;
Chris Allegretta's avatar
Chris Allegretta committed
1417

1418
    blank_bottomwin();
1419

1420
1421
    for (i = 0; i < numcols; i++) {
	for (j = 0; j <= 1; j++) {
Chris Allegretta's avatar
Chris Allegretta committed
1422

1423
	    wmove(bottomwin, 1 + j, i * (COLS / numcols));
1424

1425
	    /* Yucky sentinel values we can't handle a better way */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1426
	    if (s->val != NANO_NO_KEY) {
1427
#ifndef NANO_SMALL
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1428
1429
1430
1431
1432
1433
1434
1435
		if (s->val == NANO_HISTORY_KEY)
		    strncpy(keystr, _("Up"), 8);
		else
#endif
		if (s->val == NANO_CONTROL_SPACE)
		    strcpy(keystr, "^ ");
		else if (s->val == NANO_CONTROL_8)
		    strcpy(keystr, "^?");
1436
		else
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1437
		    sprintf(keystr, "^%c", s->val + 64);
1438
1439
	    } else if (s->metaval != NANO_NO_KEY)
		sprintf(keystr, "M-%c", toupper(s->metaval));
1440

1441
	    onekey(keystr, s->desc, COLS / numcols);
Chris Allegretta's avatar
Chris Allegretta committed
1442

1443
1444
1445
	    s = s->next;
	    if (s == NULL)
		goto break_completely_out;
1446
	}
Chris Allegretta's avatar
Chris Allegretta committed
1447
    }
1448

Chris Allegretta's avatar
Chris Allegretta committed
1449
  break_completely_out:
Chris Allegretta's avatar
Chris Allegretta committed
1450
1451
1452
    wrefresh(bottomwin);
}

1453
1454
1455
1456
/* Write a shortcut key to the help area at the bottom of the window. 
 * keystroke is e.g. "^G" and desc is e.g. "Get Help".
 * We are careful to write exactly len characters, even if len is
 * very small and keystroke and desc are long. */
1457
void onekey(const char *keystroke, const char *desc, int len)
Chris Allegretta's avatar
Chris Allegretta committed
1458
{
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
    wattron(bottomwin, A_REVERSE);
    waddnstr(bottomwin, keystroke, len);
    wattroff(bottomwin, A_REVERSE);
    len -= strlen(keystroke);
    if (len > 0) {
	waddch(bottomwin, ' ');
	len--;
	waddnstr(bottomwin, desc, len);
	len -= strlen(desc);
	for (; len > 0; len--)
	    waddch(bottomwin, ' ');
Chris Allegretta's avatar
Chris Allegretta committed
1470
1471
1472
    }
}

1473
/* And so start the display update routines. */
Chris Allegretta's avatar
Chris Allegretta committed
1474

1475
1476
#ifndef NDEBUG
int check_linenumbers(const filestruct *fileptr)
Chris Allegretta's avatar
Chris Allegretta committed
1477
{
1478
1479
    int check_line = 0;
    const filestruct *filetmp;
1480

1481
1482
1483
    for (filetmp = edittop; filetmp != fileptr; filetmp = filetmp->next)
	check_line++;
    return check_line;
1484
}
1485
#endif
1486

1487
1488
1489
1490
1491
/* nano scrolls horizontally within a line in chunks.  This function
 * returns the column number of the first character displayed in the
 * window when the cursor is at the given column.  Note that
 * 0 <= column - get_page_start(column) < COLS. */
size_t get_page_start(size_t column)
Chris Allegretta's avatar
Chris Allegretta committed
1492
{
1493
1494
1495
1496
    assert(COLS > 0);
    if (column == 0 || column < COLS - 1)
	return 0;
    else if (COLS > 9)
1497
	return column - 7 - (column - 7) % (COLS - 8);
1498
1499
1500
1501
1502
    else if (COLS > 2)
	return column - (COLS - 2);
    else
	return column - (COLS - 1);
		/* The parentheses are necessary to avoid overflow. */
Chris Allegretta's avatar
Chris Allegretta committed
1503
1504
}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1505
1506
1507
1508
1509
1510
1511
/* Resets current_y, based on the position of current, and puts the
 * cursor at (current_y, current_x). */
void reset_cursor(void)
{
    const filestruct *ptr = edittop;
    size_t x;

1512
1513
    /* Yuck.  This condition can be true after open_file() when opening
     * the first file. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
    if (edittop == NULL)
	return;

    current_y = 0;

    while (ptr != current && ptr != editbot && ptr->next != NULL) {
	ptr = ptr->next;
	current_y++;
    }

    x = xplustabs();
    wmove(edit, current_y, x - get_page_start(x));
}
Chris Allegretta's avatar
Chris Allegretta committed
1527

1528
1529
1530
1531
1532
1533
1534
1535
1536
/* edit_add() takes care of the job of actually painting a line into the
 * edit window.  fileptr is the line to be painted, at row yval of the
 * window.  converted is the actual string to be written to the window,
 * with tabs and control characters replaced by strings of regular
 * characters.  start is the column number of the first character
 * of this page.  That is, the first character of converted corresponds to
 * character number actual_x(fileptr->data, start) of the line. */
void edit_add(const filestruct *fileptr, const char *converted,
		int yval, size_t start)
Chris Allegretta's avatar
Chris Allegretta committed
1537
{
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
#if defined(ENABLE_COLOR) || !defined(NANO_SMALL)
    size_t startpos = actual_x(fileptr->data, start);
	/* The position in fileptr->data of the leftmost character
	 * that displays at least partially on the window. */
    size_t endpos = actual_x(fileptr->data, start + COLS - 1) + 1;
	/* The position in fileptr->data of the first character that is
	 * completely off the window to the right.
	 *
	 * Note that endpos might be beyond the null terminator of the
	 * string. */
1548
1549
#endif

1550
1551
1552
    assert(fileptr != NULL && converted != NULL);
    assert(strlen(converted) <= COLS);

1553
    /* Just paint the string in any case (we'll add color or reverse on
1554
1555
     * just the text that needs it). */
    mvwaddstr(edit, yval, 0, converted);
1556

Chris Allegretta's avatar
Chris Allegretta committed
1557
#ifdef ENABLE_COLOR
1558
    if (colorstrings != NULL && ISSET(COLOR_SYNTAX)) {
1559
1560
1561
1562
1563
1564
	const colortype *tmpcolor = colorstrings;

	for (; tmpcolor != NULL; tmpcolor = tmpcolor->next) {
	    int x_start;
		/* Starting column for mvwaddnstr.  Zero-based. */
	    int paintlen;
1565
		/* Number of chars to paint on this line.  There are COLS
1566
		 * characters on a whole line. */
1567
1568
	    regmatch_t startmatch;	/* match position for start_regexp */
	    regmatch_t endmatch;	/* match position for end_regexp */
1569
1570
1571
1572

	    if (tmpcolor->bright)
		wattron(edit, A_BOLD);
	    wattron(edit, COLOR_PAIR(tmpcolor->pairnum));
1573
1574
	    /* Two notes about regexec().  Return value 0 means there is
	     * a match.  Also, rm_eo is the first non-matching character
1575
1576
1577
	     * after the match. */

	    /* First case, tmpcolor is a single-line expression. */
1578
	    if (tmpcolor->end == NULL) {
1579
1580
1581
		size_t k = 0;

		/* We increment k by rm_eo, to move past the end of the
1582
1583
1584
1585
1586
1587
1588
1589
		 * last match.  Even though two matches may overlap, we
		 * want to ignore them, so that we can highlight
		 * C-strings correctly. */
		while (k < endpos) {
		    /* Note the fifth parameter to regexec().  It says
		     * not to match the beginning-of-line character
		     * unless k is 0.  If regexec() returns REG_NOMATCH,
		     * there are no more matches in the line. */
1590
		    if (regexec(&tmpcolor->start, &fileptr->data[k], 1,
1591
			&startmatch, k == 0 ? 0 : REG_NOTBOL) == REG_NOMATCH)
1592
			break;
1593
1594
1595
		    /* Translate the match to the beginning of the line. */
		    startmatch.rm_so += k;
		    startmatch.rm_eo += k;
1596
1597
		    if (startmatch.rm_so == startmatch.rm_eo) {
			startmatch.rm_eo++;
1598
			statusbar(_("Refusing 0 length regex match"));
1599
1600
1601
		    } else if (startmatch.rm_so < endpos &&
				startmatch.rm_eo > startpos) {
			if (startmatch.rm_so <= startpos)
1602
			    x_start = 0;
1603
1604
1605
1606
1607
			else
			    x_start = strnlenpt(fileptr->data, startmatch.rm_so)
				- start;
			paintlen = strnlenpt(fileptr->data, startmatch.rm_eo)
				- start - x_start;
1608
1609
1610
1611
1612
1613
			if (paintlen > COLS - x_start)
			    paintlen = COLS - x_start;

			assert(0 <= x_start && 0 < paintlen &&
				x_start + paintlen <= COLS);
			mvwaddnstr(edit, yval, x_start,
1614
1615
				converted + x_start, paintlen);
		    }
1616
		    k = startmatch.rm_eo;
Chris Allegretta's avatar
Chris Allegretta committed
1617
		}
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
	    } else {
		/* This is a multi-line regexp.  There are two steps. 
		 * First, we have to see if the beginning of the line is
		 * colored by a start on an earlier line, and an end on
		 * this line or later.
		 *
		 * We find the first line before fileptr matching the
		 * start.  If every match on that line is followed by an
		 * end, then go to step two.  Otherwise, find the next line
		 * after start_line matching the end.  If that line is not
		 * before fileptr, then paint the beginning of this line. */

		const filestruct *start_line = fileptr->prev;
1631
		    /* the first line before fileptr matching start */
1632
1633
1634
1635
1636
1637
1638
1639
		regoff_t start_col;
		    /* where it starts in that line */
		const filestruct *end_line;
		int searched_later_lines = 0;
		    /* Used in step 2.  Have we looked for an end on
		     * lines after fileptr? */

		while (start_line != NULL &&
1640
			regexec(&tmpcolor->start, start_line->data, 1,
1641
			&startmatch, 0) == REG_NOMATCH) {
1642
1643
		    /* If there is an end on this line, there is no need
		     * to look for starts on earlier lines. */
1644
1645
		    if (regexec(tmpcolor->end, start_line->data, 0, NULL, 0)
			== 0)
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
			goto step_two;
		    start_line = start_line->prev;
		}
		/* No start found, so skip to the next step. */
		if (start_line == NULL)
		    goto step_two;
		/* Now start_line is the first line before fileptr
		 * containing a start match.  Is there a start on this
		 * line not followed by an end on this line? */

		start_col = 0;
		while (1) {
		    start_col += startmatch.rm_so;
		    startmatch.rm_eo -= startmatch.rm_so;
1660
1661
1662
1663
1664
 		    if (regexec(tmpcolor->end,
 			start_line->data + start_col + startmatch.rm_eo,
			0, NULL, start_col + startmatch.rm_eo == 0 ? 0 :
			REG_NOTBOL) == REG_NOMATCH)
			/* No end found after this start. */
1665
			break;
1666
		    start_col++;
1667
		    if (regexec(&tmpcolor->start,
1668
			    start_line->data + start_col, 1, &startmatch,
1669
			    REG_NOTBOL) == REG_NOMATCH)
1670
1671
			/* No later start on this line. */
			goto step_two;
1672
		}
1673
1674
		/* Indeed, there is a start not followed on this line by
		 * an end. */
1675
1676
1677

		/* We have already checked that there is no end before
		 * fileptr and after the start.  Is there an end after
1678
1679
		 * the start at all?  We don't paint unterminated
		 * starts. */
1680
		end_line = fileptr;
1681
1682
		while (end_line != NULL &&
			regexec(tmpcolor->end, end_line->data, 1, &endmatch, 0))
1683
1684
1685
		    end_line = end_line->next;

		/* No end found, or it is too early. */
1686
1687
		if (end_line == NULL ||
			(end_line == fileptr && endmatch.rm_eo <= startpos))
1688
1689
1690
		    goto step_two;

		/* Now paint the start of fileptr. */
1691
1692
		paintlen = end_line != fileptr ? COLS :
			strnlenpt(fileptr->data, endmatch.rm_eo) - start;
1693
1694
1695
1696
		if (paintlen > COLS)
		    paintlen = COLS;

		assert(0 < paintlen && paintlen <= COLS);
1697
		mvwaddnstr(edit, yval, 0, converted, paintlen);
1698
1699
1700
1701
1702
1703
1704

		/* We have already painted the whole line. */
		if (paintlen == COLS)
		    goto skip_step_two;

  step_two:	/* Second step, we look for starts on this line. */
		start_col = 0;
1705
		while (start_col < endpos) {
1706
		    if (regexec(&tmpcolor->start, fileptr->data + start_col, 1,
1707
1708
1709
			&startmatch, start_col == 0 ? 0 : REG_NOTBOL)
			== REG_NOMATCH || start_col + startmatch.rm_so >=
			endpos)
1710
1711
1712
1713
1714
1715
1716
			/* No more starts on this line. */
			break;
		    /* Translate the match to be relative to the
		     * beginning of the line. */
		    startmatch.rm_so += start_col;
		    startmatch.rm_eo += start_col;

1717
		    if (startmatch.rm_so <= startpos)
1718
			x_start = 0;
1719
1720
1721
1722
1723
1724
		    else
			x_start = strnlenpt(fileptr->data, startmatch.rm_so)
					- start;
		    if (regexec(tmpcolor->end, fileptr->data + startmatch.rm_eo,
			1, &endmatch, startmatch.rm_eo == 0 ? 0 :
			REG_NOTBOL) == 0) {
1725
			/* Translate the end match to be relative to the
1726
			 * beginning of the line. */
1727
1728
1729
			endmatch.rm_so += startmatch.rm_eo;
			endmatch.rm_eo += startmatch.rm_eo;
			/* There is an end on this line.  But does it
1730
1731
1732
			 * appear on this page, and is the match more than
			 * zero characters long? */
			if (endmatch.rm_eo > startpos &&
1733
				endmatch.rm_eo > startmatch.rm_so) {
1734
1735
			    paintlen = strnlenpt(fileptr->data, endmatch.rm_eo)
					- start - x_start;
1736
1737
1738
1739
1740
1741
			    if (x_start + paintlen > COLS)
				paintlen = COLS - x_start;

			    assert(0 <= x_start && 0 < paintlen &&
				    x_start + paintlen <= COLS);
			    mvwaddnstr(edit, yval, x_start,
1742
				converted + x_start, paintlen);
1743
			}
1744
1745
1746
1747
1748
		    } else if (!searched_later_lines) {
			searched_later_lines = 1;
			/* There is no end on this line.  But we haven't
			 * yet looked for one on later lines. */
			end_line = fileptr->next;
1749
1750
1751
			while (end_line != NULL &&
				regexec(tmpcolor->end, end_line->data, 0,
				NULL, 0) == REG_NOMATCH)
1752
1753
1754
1755
			    end_line = end_line->next;
			if (end_line != NULL) {
			    assert(0 <= x_start && x_start < COLS);
			    mvwaddnstr(edit, yval, x_start,
1756
1757
					converted + x_start,
					COLS - x_start);
1758
1759
1760
			    /* We painted to the end of the line, so
			     * don't bother checking any more starts. */
			    break;
1761
1762
			}
		    }
1763
		    start_col = startmatch.rm_so + 1;
1764
		} /* while start_col < endpos */
1765
	    } /* if (tmp_color->end != NULL) */
1766

1767
  skip_step_two:
1768
1769
1770
1771
	    wattroff(edit, A_BOLD);
	    wattroff(edit, COLOR_PAIR(tmpcolor->pairnum));
	} /* for tmpcolor in colorstrings */
    }
Chris Allegretta's avatar
Chris Allegretta committed
1772
#endif				/* ENABLE_COLOR */
1773

1774
1775
1776
1777
1778
1779
1780
1781
#ifndef NANO_SMALL
    if (ISSET(MARK_ISSET)
	    && (fileptr->lineno <= mark_beginbuf->lineno
		|| fileptr->lineno <= current->lineno)
	    && (fileptr->lineno >= mark_beginbuf->lineno
		|| fileptr->lineno >= current->lineno)) {
	/* fileptr is at least partially selected. */

1782
1783
1784
1785
1786
1787
	const filestruct *top;
	    /* Either current or mark_beginbuf, whichever is first. */
	size_t top_x;
	    /* current_x or mark_beginx, corresponding to top. */
	const filestruct *bot;
	size_t bot_x;
1788
1789
1790
	int x_start;
	    /* Starting column for mvwaddnstr.  Zero-based. */
	int paintlen;
1791
	    /* Number of chars to paint on this line.  There are COLS
1792
1793
	     * characters on a whole line. */

1794
1795
1796
1797
1798
1799
	mark_order(&top, &top_x, &bot, &bot_x);

	if (top->lineno < fileptr->lineno || top_x < startpos)
	    top_x = startpos;
	if (bot->lineno > fileptr->lineno || bot_x > endpos)
	    bot_x = endpos;
Chris Allegretta's avatar
Chris Allegretta committed
1800

1801
	/* The selected bit of fileptr is on this page. */
1802
1803
	if (top_x < endpos && bot_x > startpos) {
	    assert(startpos <= top_x);
1804
1805
1806
1807

	    /* x_start is the expanded location of the beginning of the
	     * mark minus the beginning of the page. */
	    x_start = strnlenpt(fileptr->data, top_x) - start;
1808
1809

	    if (bot_x >= endpos)
1810
1811
1812
1813
		/* If the end of the mark is off the page, paintlen is
		 * -1, meaning that everything on the line gets
		 * painted. */
		paintlen = -1;
1814
	    else
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
		/* Otherwise, paintlen is the expanded location of the
		 * end of the mark minus the expanded location of the
		 * beginning of the mark. */
		paintlen = strnlenpt(fileptr->data, bot_x) - (x_start +
			start);

	    /* If x_start is before the beginning of the page, shift
	     * paintlen x_start characters to compensate, and put
	     * x_start at the beginning of the page. */
	    if (x_start < 0) {
		paintlen += x_start;
		x_start = 0;
	    }
1828
1829
1830

	    assert(x_start >= 0 && x_start <= strlen(converted));

1831
	    wattron(edit, A_REVERSE);
1832
	    mvwaddnstr(edit, yval, x_start, converted + x_start, paintlen);
1833
	    wattroff(edit, A_REVERSE);
Chris Allegretta's avatar
Chris Allegretta committed
1834
	}
1835
    }
1836
#endif /* !NANO_SMALL */
Chris Allegretta's avatar
Chris Allegretta committed
1837
1838
}

1839
/* Just update one line in the edit buffer.  Basically a wrapper for
1840
1841
1842
 * edit_add().
 *
 * If fileptr != current, then index is considered 0.
1843
1844
 * The line will be displayed starting with fileptr->data[index].
 * Likely args are current_x or 0. */
1845
void update_line(const filestruct *fileptr, size_t index)
Chris Allegretta's avatar
Chris Allegretta committed
1846
{
1847
1848
1849
1850
1851
1852
    int line;
	/* line in the edit window for CURSES calls */
    char *converted;
	/* fileptr->data converted to have tabs and control characters
	 * expanded. */
    size_t page_start;
Chris Allegretta's avatar
Chris Allegretta committed
1853

1854
    assert(fileptr != NULL);
1855

1856
    line = fileptr->lineno - edittop->lineno;
Chris Allegretta's avatar
Chris Allegretta committed
1857

1858
1859
    /* We assume the line numbers are valid.  Is that really true? */
    assert(line < 0 || line == check_linenumbers(fileptr));
1860

1861
1862
    if (line < 0 || line >= editwinrows)
	return;
1863

1864
1865
1866
    /* First, blank out the line (at a minimum) */
    mvwaddstr(edit, line, 0, hblank);

1867
1868
    /* Next, convert variables that index the line to their equivalent
     * positions in the expanded line. */
1869
    index = (fileptr == current) ? strnlenpt(fileptr->data, index) : 0;
1870
    page_start = get_page_start(index);
1871

1872
1873
1874
    /* Expand the line, replacing Tab by spaces, and control characters
     * by their display form. */
    converted = display_string(fileptr->data, page_start, COLS);
Chris Allegretta's avatar
Chris Allegretta committed
1875

Chris Allegretta's avatar
Chris Allegretta committed
1876
    /* Now, paint the line */
1877
    edit_add(fileptr, converted, line, page_start);
1878
    free(converted);
Chris Allegretta's avatar
Chris Allegretta committed
1879

1880
    if (page_start > 0)
Chris Allegretta's avatar
Chris Allegretta committed
1881
	mvwaddch(edit, line, 0, '$');
1882
    if (strlenpt(fileptr->data) > page_start + COLS)
1883
	mvwaddch(edit, line, COLS - 1, '$');
Chris Allegretta's avatar
Chris Allegretta committed
1884
1885
}

1886
1887
1888
1889
1890
1891
1892
/* This function updates current, based on where current_y is;
 * reset_cursor() does the opposite. */
void update_cursor(void)
{
    int i = 0;

#ifdef DEBUG
1893
    fprintf(stderr, "Moved to (%d, %d) in edit buffer\n", current_y,
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
	    current_x);
#endif

    current = edittop;
    while (i < current_y && current->next != NULL) {
	current = current->next;
	i++;
    }

#ifdef DEBUG
1904
    fprintf(stderr, "current->data = \"%s\"\n", current->data);
1905
1906
1907
#endif
}

Chris Allegretta's avatar
Chris Allegretta committed
1908
1909
1910
1911
1912
1913
void center_cursor(void)
{
    current_y = editwinrows / 2;
    wmove(edit, current_y, current_x);
}

Chris Allegretta's avatar
Chris Allegretta committed
1914
/* Refresh the screen without changing the position of lines. */
Chris Allegretta's avatar
Chris Allegretta committed
1915
1916
void edit_refresh(void)
{
1917
1918
    /* Neither of these conditions should occur, but they do.  edittop
     * is NULL when you open an existing file on the command line, and
Chris Allegretta's avatar
Chris Allegretta committed
1919
     * ENABLE_COLOR is defined.  Yuck. */
Chris Allegretta's avatar
Chris Allegretta committed
1920
1921
    if (current == NULL)
	return;
Chris Allegretta's avatar
Chris Allegretta committed
1922
1923
    if (edittop == NULL)
	edittop = current;
Chris Allegretta's avatar
Chris Allegretta committed
1924

1925
1926
    if (current->lineno < edittop->lineno ||
	    current->lineno >= edittop->lineno + editwinrows)
1927
1928
1929
1930
	/* Note that edit_update() changes edittop so that
	 * current->lineno = edittop->lineno + editwinrows / 2.  Thus
	 * when it then calls edit_refresh(), there is no danger of
	 * getting an infinite loop. */
1931
	edit_update(current, CENTER);
1932
1933
    else {
	int nlines = 0;
Chris Allegretta's avatar
Chris Allegretta committed
1934

1935
1936
	/* Don't make the cursor jump around the screen whilst
	 * updating. */
1937
	leaveok(edit, TRUE);
1938

1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
	editbot = edittop;
	while (nlines < editwinrows) {
	    update_line(editbot, current_x);
	    nlines++;
	    if (editbot->next == NULL)
		break;
	    editbot = editbot->next;
	}
	while (nlines < editwinrows) {
	    mvwaddstr(edit, nlines, 0, hblank);
	    nlines++;
	}
	/* What the hell are we expecting to update the screen if this
1952
	 * isn't here?  Luck? */
1953
1954
1955
	wrefresh(edit);
	leaveok(edit, FALSE);
    }
Chris Allegretta's avatar
Chris Allegretta committed
1956
1957
}

Chris Allegretta's avatar
Chris Allegretta committed
1958
1959
/* Same as above, but touch the window first, so everything is
 * redrawn. */
1960
1961
1962
1963
1964
1965
1966
void edit_refresh_clearok(void)
{
    clearok(edit, TRUE);
    edit_refresh();
    clearok(edit, FALSE);
}

1967
1968
/* Nice generic routine to update the edit buffer, given a pointer to the
 * file struct =) */
1969
void edit_update(filestruct *fileptr, topmidnone location)
Chris Allegretta's avatar
Chris Allegretta committed
1970
1971
1972
1973
{
    if (fileptr == NULL)
	return;

Chris Allegretta's avatar
Chris Allegretta committed
1974
    if (location != TOP) {
1975
	int goal = location == NONE ? current_y : editwinrows / 2;
Chris Allegretta's avatar
Chris Allegretta committed
1976

1977
	for (; goal > 0 && fileptr->prev != NULL; goal--)
Chris Allegretta's avatar
Chris Allegretta committed
1978
1979
1980
	    fileptr = fileptr->prev;
    }
    edittop = fileptr;
Chris Allegretta's avatar
Chris Allegretta committed
1981
1982
1983
    edit_refresh();
}

1984
/* Ask a question on the statusbar.  Answer will be stored in answer
Chris Allegretta's avatar
Chris Allegretta committed
1985
 * global.  Returns -1 on aborted enter, -2 on a blank string, and 0
1986
 * otherwise, the valid shortcut key caught.  Def is any editable text we
Chris Allegretta's avatar
Chris Allegretta committed
1987
 * want to put up by default.
1988
 *
1989
 * New arg tabs tells whether or not to allow tab completion. */
Chris Allegretta's avatar
Chris Allegretta committed
1990
int statusq(int tabs, const shortcut *s, const char *def,
1991
1992
1993
#ifndef NANO_SMALL
		historyheadtype *which_history,
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1994
		const char *msg, ...)
Chris Allegretta's avatar
Chris Allegretta committed
1995
1996
{
    va_list ap;
Chris Allegretta's avatar
Chris Allegretta committed
1997
    char *foo = charalloc(COLS - 3);
1998
    int ret;
1999
#ifndef DISABLE_TABCOMP
2000
    int list = 0;
2001
2002
#endif

2003
    bottombars(s);
Chris Allegretta's avatar
Chris Allegretta committed
2004
2005

    va_start(ap, msg);
Chris Allegretta's avatar
Chris Allegretta committed
2006
    vsnprintf(foo, COLS - 4, msg, ap);
Chris Allegretta's avatar
Chris Allegretta committed
2007
    va_end(ap);
Chris Allegretta's avatar
Chris Allegretta committed
2008
    foo[COLS - 4] = '\0';
2009

2010
2011
2012
2013
2014
    ret = nanogetstr(tabs, foo, def,
#ifndef NANO_SMALL
		which_history,
#endif
		s
2015
#ifndef DISABLE_TABCOMP
2016
		, &list
2017
#endif
2018
		);
Chris Allegretta's avatar
Chris Allegretta committed
2019
    free(foo);
2020
    resetstatuspos = 0;
Chris Allegretta's avatar
Chris Allegretta committed
2021
2022
2023
2024

    switch (ret) {
    case NANO_FIRSTLINE_KEY:
	do_first_line();
2025
	resetstatuspos = 1;
Chris Allegretta's avatar
Chris Allegretta committed
2026
2027
2028
	break;
    case NANO_LASTLINE_KEY:
	do_last_line();
2029
	resetstatuspos = 1;
Chris Allegretta's avatar
Chris Allegretta committed
2030
	break;
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
#ifndef DISABLE_JUSTIFY
    case NANO_PARABEGIN_KEY:
	do_para_begin();
	resetstatuspos = 1;
	break;
    case NANO_PARAEND_KEY:
	do_para_end();
	resetstatuspos = 1;
	break;
#endif
Chris Allegretta's avatar
Chris Allegretta committed
2041
    case NANO_CANCEL_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
2042
	ret = -1;
2043
	resetstatuspos = 1;
Chris Allegretta's avatar
Chris Allegretta committed
2044
	break;
Chris Allegretta's avatar
Chris Allegretta committed
2045
    }
Chris Allegretta's avatar
Chris Allegretta committed
2046
    blank_statusbar();
Chris Allegretta's avatar
Chris Allegretta committed
2047
2048

#ifdef DEBUG
2049
    fprintf(stderr, "I got \"%s\"\n", answer);
Chris Allegretta's avatar
Chris Allegretta committed
2050
2051
#endif

Chris Allegretta's avatar
Chris Allegretta committed
2052
2053
2054
#ifndef DISABLE_TABCOMP
	/* if we've done tab completion, there might be a list of
	   filename matches on the edit window at this point; make sure
2055
	   they're cleared off. */
Chris Allegretta's avatar
Chris Allegretta committed
2056
2057
2058
2059
	if (list)
	    edit_refresh();
#endif

Chris Allegretta's avatar
Chris Allegretta committed
2060
2061
2062
    return ret;
}

2063
/* Ask a simple yes/no question on the statusbar.  Returns 1 for Y, 0
2064
 * for N, 2 for All (if all is nonzero when passed in) and -1 for abort
2065
 * (^C). */
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2066
int do_yesno(int all, const char *msg)
Chris Allegretta's avatar
Chris Allegretta committed
2067
{
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2068
    int ok = -2, width = 16;
Chris Allegretta's avatar
Chris Allegretta committed
2069
2070
2071
    const char *yesstr;		/* String of yes characters accepted */
    const char *nostr;		/* Same for no */
    const char *allstr;		/* And all, surprise! */
Chris Allegretta's avatar
Chris Allegretta committed
2072

2073
2074
2075
    /* Yes, no and all are strings of any length.  Each string consists
     * of all characters accepted as a valid character for that value.
     * The first value will be the one displayed in the shortcuts. */
2076
2077
2078
    yesstr = _("Yy");
    nostr = _("Nn");
    allstr = _("Aa");
Chris Allegretta's avatar
Chris Allegretta committed
2079

2080
2081
    /* Remove gettext call for keybindings until we clear the thing
     * up. */
Chris Allegretta's avatar
Chris Allegretta committed
2082
    if (!ISSET(NO_HELP)) {
2083
	char shortstr[3];		/* Temp string for Y, N, A. */
2084

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2085
2086
2087
	if (COLS < 32)
	    width = COLS / 2;

2088
	/* Write the bottom of the screen. */
2089
	blank_bottombars();
2090

2091
	sprintf(shortstr, " %c", yesstr[0]);
2092
	wmove(bottomwin, 1, 0);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2093
	onekey(shortstr, _("Yes"), width);
2094
2095

	if (all) {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2096
	    wmove(bottomwin, 1, width);
2097
	    shortstr[1] = allstr[0];
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2098
	    onekey(shortstr, _("All"), width);
2099
2100
	}

2101
	wmove(bottomwin, 2, 0);
2102
	shortstr[1] = nostr[0];
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2103
	onekey(shortstr, _("No"), width);
2104

2105
	wmove(bottomwin, 2, 16);
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2106
	onekey("^C", _("Cancel"), width);
Chris Allegretta's avatar
Chris Allegretta committed
2107
    }
2108

Chris Allegretta's avatar
Chris Allegretta committed
2109
    wattron(bottomwin, A_REVERSE);
2110
2111

    blank_statusbar();
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2112
    mvwaddnstr(bottomwin, 0, 0, msg, COLS - 1);
2113

Chris Allegretta's avatar
Chris Allegretta committed
2114
    wattroff(bottomwin, A_REVERSE);
2115

Chris Allegretta's avatar
Chris Allegretta committed
2116
2117
    wrefresh(bottomwin);

2118
    do {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2119
2120
	int kbinput;
	int meta;
2121
#ifndef DISABLE_MOUSE
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2122
	int mouse_x, mouse_y;
Chris Allegretta's avatar
Chris Allegretta committed
2123
#endif
2124

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2125
2126
2127
	kbinput = get_kbinput(edit, &meta);

	if (kbinput == NANO_CANCEL_KEY)
2128
	    ok = -1;
2129
#ifndef DISABLE_MOUSE
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
	/* Look ma!  We get to duplicate lots of code from
	 * do_mouse()!! */
	else if (kbinput == KEY_MOUSE) {
	    kbinput = get_mouseinput(&mouse_x, &mouse_y, 0);

	    if (mouse_x != -1 && mouse_y != -1 && !ISSET(NO_HELP) &&
		wenclose(bottomwin, mouse_y, mouse_x) && mouse_x <
		(width * 2) && mouse_y >= editwinrows + 3) {

		int x = mouse_x / width;
		    /* Did we click in the first column of shortcuts, or
		     * the second? */
		int y = mouse_y - editwinrows - 3;
		    /* Did we click in the first row of shortcuts? */

		assert(0 <= x && x <= 1 && 0 <= y && y <= 1);

		/* x = 0 means they clicked Yes or No.
		 * y = 0 means Yes or All. */
		ok = -2 * x * y + x - y + 1;

		if (ok == 2 && !all)
		    ok = -2;
	    }
Chris Allegretta's avatar
Chris Allegretta committed
2154
	}
2155
#endif
2156
2157
	/* Look for the kbinput in the yes, no and (optionally) all
	 * str. */
2158
2159
2160
2161
2162
2163
2164
2165
2166
	else if (strchr(yesstr, kbinput) != NULL)
	    ok = 1;
	else if (strchr(nostr, kbinput) != NULL)
	    ok = 0;
	else if (all && strchr(allstr, kbinput) != NULL)
	    ok = 2;
    } while (ok == -2);

    return ok;
Chris Allegretta's avatar
Chris Allegretta committed
2167
2168
}

2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
int total_refresh(void)
{
    clearok(edit, TRUE);
    clearok(topwin, TRUE);
    clearok(bottomwin, TRUE);
    wnoutrefresh(edit);
    wnoutrefresh(topwin);
    wnoutrefresh(bottomwin);
    doupdate();
    clearok(edit, FALSE);
    clearok(topwin, FALSE);
    clearok(bottomwin, FALSE);
    edit_refresh();
    titlebar(NULL);
    return 1;
}

void display_main_list(void)
{
    bottombars(main_list);
}

Chris Allegretta's avatar
Chris Allegretta committed
2191
void statusbar(const char *msg, ...)
Chris Allegretta's avatar
Chris Allegretta committed
2192
2193
{
    va_list ap;
Chris Allegretta's avatar
Chris Allegretta committed
2194

2195
2196
    va_start(ap, msg);

2197
2198
    /* Curses mode is turned off.  If we use wmove() now, it will muck
     * up the terminal settings.  So we just use vfprintf(). */
2199
2200
2201
2202
2203
2204
    if (curses_ended) {
	vfprintf(stderr, msg, ap);
	va_end(ap);
	return;
    }

2205
    /* Blank out the line. */
Chris Allegretta's avatar
Chris Allegretta committed
2206
2207
    blank_statusbar();

2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
    if (COLS >= 4) {
	char *bar;
	char *foo;
	int start_x = 0;
	size_t foo_len;
	bar = charalloc(COLS - 3);
	vsnprintf(bar, COLS - 3, msg, ap);
	va_end(ap);
	foo = display_string(bar, 0, COLS - 4);
	free(bar);
	foo_len = strlen(foo);
	start_x = (COLS - foo_len - 4) / 2;

	wmove(bottomwin, 0, start_x);
	wattron(bottomwin, A_REVERSE);

	waddstr(bottomwin, "[ ");
	waddstr(bottomwin, foo);
	free(foo);
	waddstr(bottomwin, " ]");
	wattroff(bottomwin, A_REVERSE);
	wnoutrefresh(bottomwin);
	wrefresh(edit);
	    /* Leave the cursor at its position in the edit window, not
	     * in the statusbar. */
    }
Chris Allegretta's avatar
Chris Allegretta committed
2234

2235
2236
    SET(DISABLE_CURPOS);
    statblank = 26;
Chris Allegretta's avatar
Chris Allegretta committed
2237
2238
}

2239
/* If constant is false, the user typed ^C so we unconditionally display
2240
2241
2242
2243
2244
2245
 * the cursor position.  Otherwise, we display it only if the character
 * position changed, and DISABLE_CURPOS is not set.
 *
 * If constant and DISABLE_CURPOS is set, we unset it and update old_i and
 * old_totsize.  That way, we leave the current statusbar alone, but next
 * time we will display. */
2246
int do_cursorpos(int constant)
Chris Allegretta's avatar
Chris Allegretta committed
2247
{
2248
2249
2250
2251
    const filestruct *fileptr;
    unsigned long i = 0;
    static unsigned long old_i = 0;
    static long old_totsize = -1;
Chris Allegretta's avatar
Chris Allegretta committed
2252

2253
    assert(current != NULL && fileage != NULL && totlines != 0);
2254
2255
2256
2257

    if (old_totsize == -1)
	old_totsize = totsize;

2258
2259
    for (fileptr = fileage; fileptr != current; fileptr = fileptr->next) {
	assert(fileptr != NULL);
2260
	i += strlen(fileptr->data) + 1;
2261
    }
2262
    i += current_x;
2263

2264
2265
2266
2267
2268
2269
    if (constant && ISSET(DISABLE_CURPOS)) {
	UNSET(DISABLE_CURPOS);
	old_i = i;
	old_totsize = totsize;
	return 0;
    }
Chris Allegretta's avatar
Chris Allegretta committed
2270

2271
2272
2273
    /* If constant is false, display the position on the statusbar
     * unconditionally; otherwise, only display the position when the
     * character values have changed. */
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
    if (!constant || old_i != i || old_totsize != totsize) {
	unsigned long xpt = xplustabs() + 1;
	unsigned long cur_len = strlenpt(current->data) + 1;
	int linepct = 100 * current->lineno / totlines;
	int colpct = 100 * xpt / cur_len;
	int bytepct = totsize == 0 ? 0 : 100 * i / totsize;

	statusbar(
	    _("line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)"),
		    current->lineno, totlines, linepct,
		    xpt, cur_len, colpct,
		    i, totsize, bytepct);
	UNSET(DISABLE_CURPOS);
2287
2288
2289
2290
2291
    }

    old_i = i;
    old_totsize = totsize;

Chris Allegretta's avatar
Chris Allegretta committed
2292
    reset_cursor();
2293
    return 0;
Chris Allegretta's avatar
Chris Allegretta committed
2294
2295
}

2296
2297
2298
2299
2300
int do_cursorpos_void(void)
{
    return do_cursorpos(0);
}

2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
/* Calculate the next line of help_text, starting at ptr. */
int line_len(const char *ptr)
{
    int j = 0;

    while (*ptr != '\n' && *ptr != '\0' && j < COLS - 5) {
	ptr++;
	j++;
    }
    if (j == COLS - 5) {
	/* Don't wrap at the first of two spaces following a period. */
	if (*ptr == ' ' && *(ptr + 1) == ' ')
	    j++;
2314
	/* Don't print half a word if we've run out of space. */
2315
2316
2317
2318
	while (*ptr != ' ' && j > 0) {
	    ptr--;
	    j--;
	}
2319
	/* Word longer than COLS - 5 chars just gets broken. */
2320
2321
2322
2323
2324
2325
2326
	if (j == 0)
	    j = COLS - 5;
    }
    assert(j >= 0 && j <= COLS - 4 && (j > 0 || *ptr == '\n'));
    return j;
}

2327
2328
/* Our shortcut-list-compliant help function, which is better than
 * nothing, and dynamic! */
Chris Allegretta's avatar
Chris Allegretta committed
2329
2330
int do_help(void)
{
2331
#ifndef DISABLE_HELP
2332
    int i, page = 0, kbinput = -1, meta, no_more = 0;
Chris Allegretta's avatar
Chris Allegretta committed
2333
    int no_help_flag = 0;
Chris Allegretta's avatar
Chris Allegretta committed
2334
    const shortcut *oldshortcut;
Chris Allegretta's avatar
Chris Allegretta committed
2335
2336
2337

    blank_edit();
    curs_set(0);
2338
    wattroff(bottomwin, A_REVERSE);
Chris Allegretta's avatar
Chris Allegretta committed
2339
2340
    blank_statusbar();

2341
    /* Set help_text as the string to display. */
2342
    help_init();
2343
    assert(help_text != NULL);
2344
2345
2346

    oldshortcut = currshortcut;

2347
    currshortcut = help_list;
2348

Chris Allegretta's avatar
Chris Allegretta committed
2349
2350
    if (ISSET(NO_HELP)) {

2351
2352
	/* Well, if we're going to do this, we should at least do it the
	 * right way. */
Chris Allegretta's avatar
Chris Allegretta committed
2353
	no_help_flag = 1;
Chris Allegretta's avatar
Chris Allegretta committed
2354
	UNSET(NO_HELP);
2355
	window_init();
2356
	bottombars(help_list);
2357

Chris Allegretta's avatar
Chris Allegretta committed
2358
    } else
2359
	bottombars(help_list);
Chris Allegretta's avatar
Chris Allegretta committed
2360
2361

    do {
2362
	const char *ptr = help_text;
2363

Chris Allegretta's avatar
Chris Allegretta committed
2364
	switch (kbinput) {
2365
#ifndef DISABLE_MOUSE
Chris Allegretta's avatar
Chris Allegretta committed
2366
2367
2368
	case KEY_MOUSE:
	    do_mouse();
	    break;
2369
#endif
Chris Allegretta's avatar
Chris Allegretta committed
2370
2371
2372
2373
2374
2375
2376
2377
2378
	case NANO_NEXTPAGE_KEY:
	case NANO_NEXTPAGE_FKEY:
	    if (!no_more) {
		blank_edit();
		page++;
	    }
	    break;
	case NANO_PREVPAGE_KEY:
	case NANO_PREVPAGE_FKEY:
2379
	    if (page > 0) {
Chris Allegretta's avatar
Chris Allegretta committed
2380
2381
2382
2383
2384
2385
2386
		no_more = 0;
		blank_edit();
		page--;
	    }
	    break;
	}

2387
2388
	/* Calculate where in the text we should be, based on the
	 * page. */
2389
2390
2391
	for (i = 1; i < page * (editwinrows - 1); i++) {
	    ptr += line_len(ptr);
	    if (*ptr == '\n')
Chris Allegretta's avatar
Chris Allegretta committed
2392
2393
2394
		ptr++;
	}

2395
2396
	for (i = 0; i < editwinrows && *ptr != '\0'; i++) {
	    int j = line_len(ptr);
Chris Allegretta's avatar
Chris Allegretta committed
2397
2398

	    mvwaddnstr(edit, i, 0, ptr, j);
2399
2400
2401
	    ptr += j;
	    if (*ptr == '\n')
		ptr++;
Chris Allegretta's avatar
Chris Allegretta committed
2402
	}
2403

Chris Allegretta's avatar
Chris Allegretta committed
2404
2405
2406
2407
	if (*ptr == '\0') {
	    no_more = 1;
	    continue;
	}
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
2408
    } while ((kbinput = get_kbinput(edit, &meta)) != NANO_EXIT_KEY && kbinput != NANO_EXIT_FKEY);
Chris Allegretta's avatar
Chris Allegretta committed
2409

2410
2411
    currshortcut = oldshortcut;

Chris Allegretta's avatar
Chris Allegretta committed
2412
    if (no_help_flag) {
2413
	blank_bottombars();
Chris Allegretta's avatar
Chris Allegretta committed
2414
	wrefresh(bottomwin);
Chris Allegretta's avatar
Chris Allegretta committed
2415
	SET(NO_HELP);
2416
	window_init();
Chris Allegretta's avatar
Chris Allegretta committed
2417
    } else
2418
	bottombars(currshortcut);
Chris Allegretta's avatar
Chris Allegretta committed
2419
2420
2421

    curs_set(1);
    edit_refresh();
2422

2423
    /* The help_init() at the beginning allocated help_text, which has
2424
     * now been written to the screen. */
2425
2426
2427
    free(help_text);
    help_text = NULL;

Chris Allegretta's avatar
Chris Allegretta committed
2428
2429
2430
2431
#elif defined(DISABLE_HELP)
    nano_disabled_msg();
#endif

Chris Allegretta's avatar
Chris Allegretta committed
2432
2433
2434
    return 1;
}

2435
2436
/* Highlight the current word being replaced or spell checked.  We
 * expect word to have tabs and control characters expanded. */
Chris Allegretta's avatar
Chris Allegretta committed
2437
void do_replace_highlight(int highlight_flag, const char *word)
Chris Allegretta's avatar
Chris Allegretta committed
2438
{
2439
2440
    int y = xplustabs();
    size_t word_len = strlen(word);
Chris Allegretta's avatar
Chris Allegretta committed
2441

2442
2443
2444
    y = get_page_start(y) + COLS - y;
	/* Now y is the number of characters we can display on this
	 * line. */
Chris Allegretta's avatar
Chris Allegretta committed
2445
2446

    reset_cursor();
Chris Allegretta's avatar
Chris Allegretta committed
2447

Chris Allegretta's avatar
Chris Allegretta committed
2448
2449
2450
    if (highlight_flag)
	wattron(edit, A_REVERSE);

2451
#ifdef HAVE_REGEX_H
2452
2453
2454
2455
    /* This is so we can show zero-length regexes. */
    if (word_len == 0)
	waddstr(edit, " ");
    else
2456
#endif
2457
	waddnstr(edit, word, y - 1);
2458
2459
2460
2461
2462

    if (word_len > y)
	waddch(edit, '$');
    else if (word_len == y)
	waddch(edit, word[word_len - 1]);
Chris Allegretta's avatar
Chris Allegretta committed
2463
2464
2465
2466
2467

    if (highlight_flag)
	wattroff(edit, A_REVERSE);
}

2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
/* Fix editbot, based on the assumption that edittop is correct. */
void fix_editbot(void)
{
    int i;

    editbot = edittop;
    for (i = 0; i < editwinrows && editbot->next != NULL; i++)
	editbot = editbot->next;
}

#ifdef DEBUG
2479
2480
2481
/* Dump the passed-in file structure to stderr. */
void dump_buffer(const filestruct *inptr)
{
2482
    if (inptr == fileage)
2483
	fprintf(stderr, "Dumping file buffer to stderr...\n");
2484
    else if (inptr == cutbuffer)
2485
	fprintf(stderr, "Dumping cutbuffer to stderr...\n");
2486
    else
2487
	fprintf(stderr, "Dumping a buffer to stderr...\n");
2488
2489
2490
2491
2492
2493
2494

    while (inptr != NULL) {
	fprintf(stderr, "(%d) %s\n", inptr->lineno, inptr->data);
	inptr = inptr->next;
    }
}

2495
/* Dump the file structure to stderr in reverse. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
2496
2497
void dump_buffer_reverse(void)
{
2498
2499
2500
2501
2502
2503
2504
2505
2506
    const filestruct *fileptr = filebot;

    while (fileptr != NULL) {
	fprintf(stderr, "(%d) %s\n", fileptr->lineno, fileptr->data);
	fileptr = fileptr->prev;
    }
}
#endif /* DEBUG */

2507
#ifdef NANO_EXTRA
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
2508
#define CREDIT_LEN 53
2509
2510
#define XLCREDIT_LEN 8

2511
/* Easter egg: Display credits.  Assume nodelay(edit) is FALSE. */
2512
2513
void do_credits(void)
{
Chris Allegretta's avatar
Chris Allegretta committed
2514
    int i, j = 0, k, place = 0, start_x;
2515
    struct timespec scrolldelay;
2516

2517
2518
    const char *what;
    const char *xlcredits[XLCREDIT_LEN];
2519

2520
    const char *credits[CREDIT_LEN] = { 
2521
2522
	"0",				/* "The nano text editor" */
	"1",				/* "version" */
Chris Allegretta's avatar
Chris Allegretta committed
2523
2524
	VERSION,
	"",
2525
	"2",				/* "Brought to you by:" */
Chris Allegretta's avatar
Chris Allegretta committed
2526
2527
2528
2529
2530
	"Chris Allegretta",
	"Jordi Mallach",
	"Adam Rogoyski",
	"Rob Siemborski",
	"Rocco Corsi",
2531
	"David Lawrence Ramsey",
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
2532
	"David Benbennick",
Chris Allegretta's avatar
Chris Allegretta committed
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
	"Ken Tyler",
	"Sven Guckes",
	"Florian Knig",
	"Pauli Virtanen",
	"Daniele Medri",
	"Clement Laforet",
	"Tedi Heriyanto",
	"Bill Soudan",
	"Christian Weisgerber",
	"Erik Andersen",
	"Big Gaute",
	"Joshua Jensen",
	"Ryan Krebs",
	"Albert Chin",
	"",
2548
	"3",				/* "Special thanks to:" */
Chris Allegretta's avatar
Chris Allegretta committed
2549
2550
2551
2552
2553
2554
	"Plattsburgh State University",
	"Benet Laboratories",
	"Amy Allegretta",
	"Linda Young",
	"Jeremy Robichaud",
	"Richard Kolb II",
2555
	"4",				/* "The Free Software Foundation" */
Chris Allegretta's avatar
Chris Allegretta committed
2556
	"Linus Torvalds",
2557
	"5",				/* "For ncurses:" */
2558
2559
2560
2561
	"Thomas Dickey",
	"Pavel Curtis",
	"Zeyd Ben-Halim",
	"Eric S. Raymond",
2562
2563
	"6",				/* "and anyone else we forgot..." */
	"7",				/* "Thank you for using nano!\n" */
Chris Allegretta's avatar
Chris Allegretta committed
2564
	"", "", "", "",
2565
	"(c) 1999-2004 Chris Allegretta",
Chris Allegretta's avatar
Chris Allegretta committed
2566
	"", "", "", "",
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
2567
	"http://www.nano-editor.org/"
2568
2569
    };

2570
2571
2572
2573
2574
2575
2576
2577
2578
    xlcredits[0] = _("The nano text editor");
    xlcredits[1] = _("version ");
    xlcredits[2] = _("Brought to you by:");
    xlcredits[3] = _("Special thanks to:");
    xlcredits[4] = _("The Free Software Foundation");
    xlcredits[5] = _("For ncurses:");
    xlcredits[6] = _("and anyone else we forgot...");
    xlcredits[7] = _("Thank you for using nano!\n");

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
2579
    scrolldelay.tv_sec = 0;
2580
    scrolldelay.tv_nsec = 700000000;
2581

2582
2583
2584
2585
    curs_set(0);
    nodelay(edit, TRUE);
    blank_bottombars();
    mvwaddstr(topwin, 0, 0, hblank);
Chris Allegretta's avatar
Chris Allegretta committed
2586
2587
    blank_edit();
    wrefresh(edit);
2588
2589
2590
2591
    wrefresh(bottomwin);
    wrefresh(topwin);

    while (wgetch(edit) == ERR) {
Chris Allegretta's avatar
Chris Allegretta committed
2592
2593
	for (k = 0; k <= 1; k++) {
	    blank_edit();
Chris Allegretta's avatar
Chris Allegretta committed
2594
2595
	    for (i = editwinrows / 2 - 1; i >= (editwinrows / 2 - 1 - j);
		 i--) {
Chris Allegretta's avatar
Chris Allegretta committed
2596
2597
		mvwaddstr(edit, i * 2 - k, 0, hblank);

2598
		if (place - (editwinrows / 2 - 1 - i) < CREDIT_LEN) {
Chris Allegretta's avatar
Chris Allegretta committed
2599
		    what = credits[place - (editwinrows / 2 - 1 - i)];
2600
2601
2602
2603
2604
2605
2606
2607

		    /* God I've missed hacking.  If what is exactly
			1 char long, it's a sentinel for a translated
			string, so use that instead.  This means no
			thanking people with 1 character long names ;-) */
		    if (strlen(what) == 1)
			what = xlcredits[atoi(what)];
		} else
Chris Allegretta's avatar
Chris Allegretta committed
2608
2609
		    what = "";

2610
		start_x = COLS / 2 - strlen(what) / 2 - 1;
Chris Allegretta's avatar
Chris Allegretta committed
2611
2612
		mvwaddstr(edit, i * 2 - k, start_x, what);
	    }
2613
	    nanosleep(&scrolldelay, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
2614
	    wrefresh(edit);
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
	}
	if (j < editwinrows / 2 - 1)
	    j++;

	place++;

	if (place >= CREDIT_LEN + editwinrows / 2)
	    break;
    }

    nodelay(edit, FALSE);
    curs_set(1);
    display_main_list();
    total_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
2629
}
2630
#endif