Merge branch '1904_spec_bump_epoch'
[midnight-commander.git] / edit / edit.c
blob6e4de51f0a8f3d7cf29115d3642a7abb6c8ae0f5
1 /* editor low level data handling and cursor fundamentals.
3 Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006,
4 2007 Free Software Foundation, Inc.
6 Authors: 1996, 1997 Paul Sheer
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.
24 /** \file
25 * \brief Source: editor low level data handling and cursor fundamentals
26 * \author Paul Sheer
27 * \date 1996, 1997
30 #include <config.h>
31 #include <stdio.h>
32 #include <stdarg.h>
33 #include <sys/types.h>
34 #include <unistd.h>
35 #include <string.h>
36 #include <ctype.h>
37 #include <errno.h>
38 #include <sys/stat.h>
39 #include <stdlib.h>
40 #include <fcntl.h>
42 #include "../src/global.h"
44 #include "edit-impl.h"
45 #include "editlock.h"
46 #include "edit-widget.h"
47 #include "../src/cmddef.h"
49 #include "../src/tty/color.h" /* EDITOR_NORMAL_COLOR */
50 #include "../src/tty/tty.h" /* attrset() */
51 #include "../src/tty/key.h" /* is_idle() */
52 #include "../src/skin/skin.h" /* mc_skin_color_get */
54 #include "../src/widget.h"
55 #include "../src/cmd.h" /* view_other_cmd() */
56 #include "../src/user.h" /* user_menu_cmd() */
57 #include "../src/wtools.h" /* query_dialog() */
58 #include "../src/timefmt.h" /* time formatting */
59 #include "../src/strutil.h" /* utf string functions */
60 #include "../src/charsets.h" /* get_codepage_id */
61 #include "../src/main.h" /* source_codepage */
62 #include "../src/learn.h" /* learn_keys */
64 int option_word_wrap_line_length = 72;
65 int option_typewriter_wrap = 0;
66 int option_auto_para_formatting = 0;
67 int option_fill_tabs_with_spaces = 0;
68 int option_return_does_auto_indent = 1;
69 int option_backspace_through_tabs = 0;
70 int option_fake_half_tabs = 1;
71 int option_save_mode = EDIT_QUICK_SAVE;
72 int option_save_position = 1;
73 int option_max_undo = 32768;
74 int option_persistent_selections = 1;
75 int option_cursor_beyond_eol = 1;
76 int option_line_state = 0;
77 int option_line_state_width = 0;
79 int option_edit_right_extreme = 0;
80 int option_edit_left_extreme = 0;
81 int option_edit_top_extreme = 0;
82 int option_edit_bottom_extreme = 0;
83 int enable_show_tabs_tws = 1;
84 int option_check_nl_at_eof = 0;
86 const char *option_whole_chars_search = "0123456789abcdefghijklmnopqrstuvwxyz_";
87 char *option_backup_ext = NULL;
89 int edit_stack_iterator = 0;
90 edit_stack_type edit_history_moveto [MAX_HISTORY_MOVETO];
91 /* magic sequense for say than block is vertical */
92 const char VERTICAL_MAGIC[] = {'\1', '\1', '\1', '\1', '\n'};
93 /*-
95 * here's a quick sketch of the layout: (don't run this through indent.)
97 * (b1 is buffers1 and b2 is buffers2)
99 * |
100 * \0\0\0\0\0m e _ f i l e . \nf i n . \n|T h i s _ i s _ s o\0\0\0\0\0\0\0\0\0
101 * ______________________________________|______________________________________
103 * ... | b2[2] | b2[1] | b2[0] | b1[0] | b1[1] | b1[2] | ...
104 * |-> |-> |-> |-> |-> |-> |
106 * _<------------------------->|<----------------->_
107 * WEdit->curs2 | WEdit->curs1
108 * ^ | ^
109 * | ^|^ |
110 * cursor ||| cursor
111 * |||
112 * file end|||file beginning
117 * This_is_some_file
118 * fin.
121 const global_keymap_t *editor_map;
122 const global_keymap_t *editor_x_map;
124 static void user_menu (WEdit *edit);
126 int edit_get_byte (WEdit * edit, long byte_index)
128 unsigned long p;
129 if (byte_index >= (edit->curs1 + edit->curs2) || byte_index < 0)
130 return '\n';
132 if (byte_index >= edit->curs1) {
133 p = edit->curs1 + edit->curs2 - byte_index - 1;
134 return edit->buffers2[p >> S_EDIT_BUF_SIZE][EDIT_BUF_SIZE - (p & M_EDIT_BUF_SIZE) - 1];
135 } else {
136 return edit->buffers1[byte_index >> S_EDIT_BUF_SIZE][byte_index & M_EDIT_BUF_SIZE];
140 char *edit_get_byte_ptr (WEdit * edit, long byte_index)
142 unsigned long p;
143 if (byte_index >= (edit->curs1 + edit->curs2) || byte_index < 0)
144 return NULL;
146 if (byte_index >= edit->curs1) {
147 p = edit->curs1 + edit->curs2 - byte_index - 1;
148 return (char *) (edit->buffers2[p >> S_EDIT_BUF_SIZE]+(EDIT_BUF_SIZE - (p & M_EDIT_BUF_SIZE) - 1));
149 } else {
150 return (char *) (edit->buffers1[byte_index >> S_EDIT_BUF_SIZE]+(byte_index & M_EDIT_BUF_SIZE));
154 char *edit_get_buf_ptr (WEdit * edit, long byte_index)
156 unsigned long p;
158 if (byte_index >= (edit->curs1 + edit->curs2))
159 byte_index--;
161 if (byte_index < 0)
162 return NULL;
164 if (byte_index >= edit->curs1) {
165 p = edit->curs1 + edit->curs2 - 1;
166 return (char *) (edit->buffers2[p >> S_EDIT_BUF_SIZE] + (EDIT_BUF_SIZE - (p & M_EDIT_BUF_SIZE) - 1));
167 } else {
168 return (char *) (edit->buffers1[byte_index >> S_EDIT_BUF_SIZE] + (0 & M_EDIT_BUF_SIZE));
172 int edit_get_utf (WEdit * edit, long byte_index, int *char_width)
174 gchar *str = NULL;
175 int res = -1;
176 gunichar ch;
177 gchar *next_ch = NULL;
178 int width = 0;
180 if (byte_index >= (edit->curs1 + edit->curs2) || byte_index < 0) {
181 *char_width = 0;
182 return '\n';
185 str = edit_get_byte_ptr (edit, byte_index);
187 if (str == NULL) {
188 *char_width = 0;
189 return 0;
192 res = g_utf8_get_char_validated (str, -1);
194 if (res < 0) {
195 ch = *str;
196 width = 0;
197 } else {
198 ch = res;
199 /* Calculate UTF-8 char width */
200 next_ch = g_utf8_next_char (str);
201 if (next_ch) {
202 width = next_ch - str;
203 } else {
204 ch = 0;
205 width = 0;
208 *char_width = width;
209 return ch;
212 int edit_get_prev_utf (WEdit * edit, long byte_index, int *char_width)
214 gchar *str, *buf = NULL;
215 int res = -1;
216 gunichar ch;
217 gchar *next_ch = NULL;
218 int width = 0;
220 if (byte_index > 0)
221 byte_index--;
223 if (byte_index >= (edit->curs1 + edit->curs2) || byte_index < 0) {
224 *char_width = 0;
225 return 0;
228 ch = edit_get_utf (edit, byte_index, &width);
230 if (width == 1) {
231 *char_width = width;
232 return ch;
235 str = edit_get_byte_ptr (edit, byte_index);
236 buf = edit_get_buf_ptr (edit, byte_index);
237 if (str == NULL || buf == NULL) {
238 *char_width = 0;
239 return 0;
241 /* get prev utf8 char */
242 if (str != buf)
243 str = g_utf8_find_prev_char (buf, str);
245 res = g_utf8_get_char_validated (str, -1);
247 if (res < 0) {
248 ch = *str;
249 width = 0;
250 } else {
251 ch = res;
252 /* Calculate UTF-8 char width */
253 next_ch = g_utf8_next_char(str);
254 if (next_ch) {
255 width = next_ch - str;
256 } else {
257 ch = 0;
258 width = 0;
261 *char_width = width;
262 return ch;
266 * Initialize the buffers for an empty files.
268 static void
269 edit_init_buffers (WEdit *edit)
271 int j;
273 for (j = 0; j <= MAXBUFF; j++) {
274 edit->buffers1[j] = NULL;
275 edit->buffers2[j] = NULL;
278 edit->curs1 = 0;
279 edit->curs2 = 0;
280 edit->buffers2[0] = g_malloc0 (EDIT_BUF_SIZE);
284 * Load file OR text into buffers. Set cursor to the beginning of file.
285 * Return 1 on error.
287 static int
288 edit_load_file_fast (WEdit *edit, const char *filename)
290 long buf, buf2;
291 int file = -1;
292 edit->curs2 = edit->last_byte;
293 buf2 = edit->curs2 >> S_EDIT_BUF_SIZE;
294 edit->utf8 = 0;
295 if ((file = mc_open (filename, O_RDONLY | O_BINARY)) == -1) {
296 GString *errmsg = g_string_new(NULL);
297 g_string_sprintf(errmsg, _(" Cannot open %s for reading "), filename);
298 edit_error_dialog (_("Error"), get_sys_error (errmsg->str));
299 g_string_free (errmsg, TRUE);
300 return 1;
303 if (!edit->buffers2[buf2])
304 edit->buffers2[buf2] = g_malloc0 (EDIT_BUF_SIZE);
306 mc_read (file,
307 (char *) edit->buffers2[buf2] + EDIT_BUF_SIZE -
308 (edit->curs2 & M_EDIT_BUF_SIZE),
309 edit->curs2 & M_EDIT_BUF_SIZE);
311 for (buf = buf2 - 1; buf >= 0; buf--) {
312 /* edit->buffers2[0] is already allocated */
313 if (!edit->buffers2[buf])
314 edit->buffers2[buf] = g_malloc0 (EDIT_BUF_SIZE);
315 mc_read (file, (char *) edit->buffers2[buf], EDIT_BUF_SIZE);
318 mc_close (file);
319 return 0;
322 /* detecting an error on save is easy: just check if every byte has been written. */
323 /* detecting an error on read, is not so easy 'cos there is not way to tell
324 whether you read everything or not. */
325 /* FIXME: add proper `triple_pipe_open' to read, write and check errors. */
326 static const struct edit_filters {
327 const char *read, *write, *extension;
328 } all_filters[] = {
329 { "xz -cd %s 2>&1", "xz > %s", ".xz" },
330 { "lzma -cd %s 2>&1", "lzma > %s", ".lzma" },
331 { "bzip2 -cd %s 2>&1", "bzip2 > %s", ".bz2" },
332 { "gzip -cd %s 2>&1", "gzip > %s", ".gz" },
333 { "gzip -cd %s 2>&1", "gzip > %s", ".Z" }
336 /* Return index of the filter or -1 is there is no appropriate filter */
337 static int edit_find_filter (const char *filename)
339 size_t i, l, e;
340 if (!filename)
341 return -1;
342 l = strlen (filename);
343 for (i = 0; i < sizeof (all_filters) / sizeof (all_filters[0]); i++) {
344 e = strlen (all_filters[i].extension);
345 if (l > e)
346 if (!strcmp (all_filters[i].extension, filename + l - e))
347 return i;
349 return -1;
352 static char *
353 edit_get_filter (const char *filename)
355 int i, l;
356 char *p, *quoted_name;
357 i = edit_find_filter (filename);
358 if (i < 0)
359 return 0;
360 quoted_name = name_quote (filename, 0);
361 l = str_term_width1 (quoted_name);
362 p = g_malloc0 (str_term_width1 (all_filters[i].read) + l + 2);
363 sprintf (p, all_filters[i].read, quoted_name);
364 g_free (quoted_name);
365 return p;
368 char *
369 edit_get_write_filter (const char *write_name, const char *filename)
371 int i, l;
372 char *p, *writename;
373 i = edit_find_filter (filename);
374 if (i < 0)
375 return 0;
376 writename = name_quote (write_name, 0);
377 l = str_term_width1 (writename);
378 p = g_malloc0 (str_term_width1 (all_filters[i].write) + l + 2);
379 sprintf (p, all_filters[i].write, writename);
380 g_free (writename);
381 return p;
384 static long
385 edit_insert_stream (WEdit * edit, FILE * f)
387 int c;
388 long i = 0;
389 while ((c = fgetc (f)) >= 0) {
390 edit_insert (edit, c);
391 i++;
393 return i;
396 long edit_write_stream (WEdit * edit, FILE * f)
398 long i;
400 if (edit->lb == LB_ASIS) {
401 for (i = 0; i < edit->last_byte; i++)
402 if (fputc (edit_get_byte (edit, i), f) < 0)
403 break;
404 return i;
407 /* change line breaks */
408 for (i = 0; i < edit->last_byte; i++) {
409 unsigned char c = edit_get_byte (edit, i);
411 if (!(c == '\n' || c == '\r')) {
412 /* not line break */
413 if (fputc (c, f) < 0)
414 return i;
415 } else { /* (c == '\n' || c == '\r') */
416 unsigned char c1 = edit_get_byte (edit, i + 1); /* next char */
418 switch (edit->lb) {
419 case LB_UNIX: /* replace "\r\n" or '\r' to '\n' */
420 /* put one line break unconditionally */
421 if (fputc ('\n', f) < 0)
422 return i;
424 i++; /* 2 chars are processed */
426 if (c == '\r' && c1 == '\n')
427 /* Windows line break; go to the next char */
428 break;
430 if (c == '\r' && c1 == '\r') {
431 /* two Macintosh line breaks; put second line break */
432 if (fputc ('\n', f) < 0)
433 return i;
434 break;
437 if (fputc (c1, f) < 0)
438 return i;
439 break;
441 case LB_WIN: /* replace '\n' or '\r' to "\r\n" */
442 /* put one line break unconditionally */
443 if (fputc ('\r', f) < 0 || fputc ('\n', f) < 0)
444 return i;
446 if (c == '\r' && c1 == '\n')
447 /* Windows line break; go to the next char */
448 i++;
449 break;
451 case LB_MAC: /* replace "\r\n" or '\n' to '\r' */
452 /* put one line break unconditionally */
453 if (fputc ('\r', f) < 0)
454 return i;
456 i++; /* 2 chars are processed */
458 if (c == '\r' && c1 == '\n')
459 /* Windows line break; go to the next char */
460 break;
462 if (c == '\n' && c1 == '\n') {
463 /* two Windows line breaks; put second line break */
464 if (fputc ('\r', f) < 0)
465 return i;
466 break;
469 if (fputc (c1, f) < 0)
470 return i;
471 break;
472 case LB_ASIS: /* default without changes */
473 break;
478 return edit->last_byte;
481 #define TEMP_BUF_LEN 1024
483 /* inserts a file at the cursor, returns 1 on success */
485 edit_insert_file (WEdit *edit, const char *filename)
487 char *p;
488 if ((p = edit_get_filter (filename))) {
489 FILE *f;
490 long current = edit->curs1;
491 f = (FILE *) popen (p, "r");
492 if (f) {
493 edit_insert_stream (edit, f);
494 edit_cursor_move (edit, current - edit->curs1);
495 if (pclose (f) > 0) {
496 GString *errmsg = g_string_new (NULL);
497 g_string_sprintf (errmsg, _(" Error reading from pipe: %s "), p);
498 edit_error_dialog (_("Error"), errmsg->str);
499 g_string_free (errmsg, TRUE);
500 g_free (p);
501 return 0;
503 } else {
504 GString *errmsg = g_string_new (NULL);
505 g_string_sprintf (errmsg, _(" Cannot open pipe for reading: %s "), p);
506 edit_error_dialog (_("Error"), errmsg->str);
507 g_string_free (errmsg, TRUE);
508 g_free (p);
509 return 0;
511 g_free (p);
512 } else {
513 int i, file, blocklen;
514 long current = edit->curs1;
515 int vertical_insertion = 0;
516 char *buf;
517 if ((file = mc_open (filename, O_RDONLY | O_BINARY)) == -1)
518 return 0;
519 buf = g_malloc0 (TEMP_BUF_LEN);
520 blocklen = mc_read (file, buf, sizeof(VERTICAL_MAGIC));
521 if (blocklen > 0) {
522 /* if contain signature VERTICAL_MAGIC tnen it vertical block */
523 if ( memcmp(buf, VERTICAL_MAGIC, sizeof(VERTICAL_MAGIC)) == 0 ) {
524 vertical_insertion = 1;
525 } else {
526 mc_lseek (file, 0, SEEK_SET);
529 if (vertical_insertion) {
530 blocklen = edit_insert_column_of_text_from_file (edit, file);
531 } else {
532 while ((blocklen = mc_read (file, (char *) buf, TEMP_BUF_LEN)) > 0) {
533 for (i = 0; i < blocklen; i++)
534 edit_insert (edit, buf[i]);
537 edit_cursor_move (edit, current - edit->curs1);
538 g_free (buf);
539 mc_close (file);
540 if (blocklen)
541 return 0;
543 return 1;
546 /* Open file and create it if necessary. Return 0 for success, 1 for error. */
547 static int
548 check_file_access (WEdit *edit, const char *filename, struct stat *st)
550 int file;
551 GString *errmsg = (GString *) 0;
553 /* Try opening an existing file */
554 file = mc_open (filename, O_NONBLOCK | O_RDONLY | O_BINARY, 0666);
556 if (file < 0) {
558 * Try creating the file. O_EXCL prevents following broken links
559 * and opening existing files.
561 file =
562 mc_open (filename,
563 O_NONBLOCK | O_RDONLY | O_BINARY | O_CREAT | O_EXCL,
564 0666);
565 if (file < 0) {
566 g_string_sprintf (errmsg = g_string_new (NULL),
567 _(" Cannot open %s for reading "), filename);
568 goto cleanup;
569 } else {
570 /* New file, delete it if it's not modified or saved */
571 edit->delete_file = 1;
575 /* Check what we have opened */
576 if (mc_fstat (file, st) < 0) {
577 g_string_sprintf (errmsg = g_string_new (NULL),
578 _(" Cannot get size/permissions for %s "), filename);
579 goto cleanup;
582 /* We want to open regular files only */
583 if (!S_ISREG (st->st_mode)) {
584 g_string_sprintf (errmsg = g_string_new (NULL),
585 _(" %s is not a regular file "), filename);
586 goto cleanup;
590 * Don't delete non-empty files.
591 * O_EXCL should prevent it, but let's be on the safe side.
593 if (st->st_size > 0) {
594 edit->delete_file = 0;
597 if (st->st_size >= SIZE_LIMIT) {
598 g_string_sprintf (errmsg = g_string_new (NULL),
599 _(" File %s is too large "), filename);
602 cleanup:
603 (void) mc_close (file);
604 if (errmsg) {
605 edit_error_dialog (_("Error"), errmsg->str);
606 g_string_free (errmsg, TRUE);
607 return 1;
609 return 0;
613 * Open the file and load it into the buffers, either directly or using
614 * a filter. Return 0 on success, 1 on error.
616 * Fast loading (edit_load_file_fast) is used when the file size is
617 * known. In this case the data is read into the buffers by blocks.
618 * If the file size is not known, the data is loaded byte by byte in
619 * edit_insert_file.
621 static int
622 edit_load_file (WEdit *edit)
624 int fast_load = 1;
626 /* Cannot do fast load if a filter is used */
627 if (edit_find_filter (edit->filename) >= 0)
628 fast_load = 0;
631 * VFS may report file size incorrectly, and slow load is not a big
632 * deal considering overhead in VFS.
634 if (!vfs_file_is_local (edit->filename))
635 fast_load = 0;
638 * FIXME: line end translation should disable fast loading as well
639 * Consider doing fseek() to the end and ftell() for the real size.
642 if (*edit->filename) {
643 /* If we are dealing with a real file, check that it exists */
644 if (check_file_access (edit, edit->filename, &edit->stat1))
645 return 1;
646 } else {
647 /* nothing to load */
648 fast_load = 0;
651 edit_init_buffers (edit);
653 if (fast_load) {
654 edit->last_byte = edit->stat1.st_size;
655 edit_load_file_fast (edit, edit->filename);
656 /* If fast load was used, the number of lines wasn't calculated */
657 edit->total_lines = edit_count_lines (edit, 0, edit->last_byte);
658 } else {
659 #ifdef HAVE_CHARSET
660 const char *codepage_id;
661 #endif
662 edit->last_byte = 0;
663 if (*edit->filename) {
664 edit->stack_disable = 1;
665 if (!edit_insert_file (edit, edit->filename)) {
666 edit_clean (edit);
667 return 1;
669 edit->stack_disable = 0;
672 #ifdef HAVE_CHARSET
673 codepage_id = get_codepage_id( source_codepage );
674 if ( codepage_id )
675 edit->utf8 = str_isutf8 ( codepage_id );
676 #endif
678 edit->lb = LB_ASIS;
679 return 0;
682 /* Restore saved cursor position in the file */
683 static void
684 edit_load_position (WEdit *edit)
686 char *filename;
687 long line, column;
689 if (!edit->filename || !*edit->filename)
690 return;
692 filename = vfs_canon (edit->filename);
693 load_file_position (filename, &line, &column);
694 g_free (filename);
696 edit_move_to_line (edit, line - 1);
697 edit->prev_col = column;
698 edit_move_to_prev_col (edit, edit_bol (edit, edit->curs1));
699 edit_move_display (edit, line - (edit->num_widget_lines / 2));
702 /* Save cursor position in the file */
703 static void
704 edit_save_position (WEdit *edit)
706 char *filename;
708 if (!edit->filename || !*edit->filename)
709 return;
711 filename = vfs_canon (edit->filename);
712 save_file_position (filename, edit->curs_line + 1, edit->curs_col);
713 g_free (filename);
716 /* Clean the WEdit stricture except the widget part */
717 static void
718 edit_purge_widget (WEdit *edit)
720 size_t len = sizeof (WEdit) - sizeof (Widget);
721 char *start = (char *) edit + sizeof (Widget);
722 memset (start, 0, len);
723 edit->macro_i = -1; /* not recording a macro */
726 static void
727 edit_set_keymap (void)
729 editor_map = default_editor_keymap;
730 if (editor_keymap && editor_keymap->len > 0)
731 editor_map = (global_keymap_t *) editor_keymap->data;
733 editor_x_map = default_editor_x_keymap;
734 if (editor_x_keymap && editor_x_keymap->len > 0)
735 editor_x_map = (global_keymap_t *) editor_x_keymap->data;
739 #define space_width 1
742 * Fill in the edit structure. Return NULL on failure. Pass edit as
743 * NULL to allocate a new structure.
745 * If line is 0, try to restore saved position. Otherwise put the
746 * cursor on that line and show it in the middle of the screen.
748 WEdit *
749 edit_init (WEdit *edit, int lines, int columns, const char *filename,
750 long line)
752 int to_free = 0;
753 option_auto_syntax = 1; /* Resetting to auto on every invokation */
754 if ( option_line_state ) {
755 option_line_state_width = LINE_STATE_WIDTH;
756 } else {
757 option_line_state_width = 0;
759 if (!edit) {
760 #ifdef ENABLE_NLS
762 * Expand option_whole_chars_search by national letters using
763 * current locale
766 static char option_whole_chars_search_buf[256];
768 if (option_whole_chars_search_buf != option_whole_chars_search) {
769 size_t i;
770 size_t len = str_term_width1 (option_whole_chars_search);
772 strcpy (option_whole_chars_search_buf,
773 option_whole_chars_search);
775 for (i = 1; i <= sizeof (option_whole_chars_search_buf); i++) {
776 if (g_ascii_islower ((gchar) i) && !strchr (option_whole_chars_search, i)) {
777 option_whole_chars_search_buf[len++] = i;
781 option_whole_chars_search_buf[len] = 0;
782 option_whole_chars_search = option_whole_chars_search_buf;
784 #endif /* ENABLE_NLS */
785 edit = g_malloc0 (sizeof (WEdit));
786 edit->search = NULL;
787 to_free = 1;
789 edit_purge_widget (edit);
790 edit->num_widget_lines = lines;
791 edit->over_col = 0;
792 edit->num_widget_columns = columns;
793 edit->stat1.st_mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
794 edit->stat1.st_uid = getuid ();
795 edit->stat1.st_gid = getgid ();
796 edit->stat1.st_mtime = 0;
797 edit->bracket = -1;
798 edit->force |= REDRAW_PAGE;
799 edit_set_filename (edit, filename);
800 edit->stack_size = START_STACK_SIZE;
801 edit->stack_size_mask = START_STACK_SIZE - 1;
802 edit->undo_stack = g_malloc0 ((edit->stack_size + 10) * sizeof (long));
803 if (edit_load_file (edit)) {
804 /* edit_load_file already gives an error message */
805 if (to_free)
806 g_free (edit);
807 return 0;
809 edit->utf8 = 0;
810 edit->converter = str_cnv_from_term;
811 #ifdef HAVE_CHARSET
813 const char *cp_id = NULL;
814 cp_id = get_codepage_id (source_codepage >= 0 ?
815 source_codepage : display_codepage);
817 if (cp_id != NULL) {
818 GIConv conv;
819 conv = str_crt_conv_from (cp_id);
820 if (conv != INVALID_CONV) {
821 if (edit->converter != str_cnv_from_term)
822 str_close_conv (edit->converter);
823 edit->converter = conv;
826 if (cp_id != NULL)
827 edit->utf8 = str_isutf8 (cp_id);
829 #endif
831 edit->loading_done = 1;
832 edit->modified = 0;
833 edit->locked = 0;
834 edit_load_syntax (edit, 0, 0);
836 int color;
837 edit_get_syntax_color (edit, -1, &color);
840 /* load saved cursor position */
841 if ((line == 0) && option_save_position) {
842 edit_load_position (edit);
843 } else {
844 if (line <= 0)
845 line = 1;
846 edit_move_display (edit, line - 1);
847 edit_move_to_line (edit, line - 1);
850 edit_set_keymap ();
852 return edit;
855 /* Clear the edit struct, freeing everything in it. Return 1 on success */
857 edit_clean (WEdit *edit)
859 int j = 0;
861 if (!edit)
862 return 0;
864 /* a stale lock, remove it */
865 if (edit->locked)
866 edit->locked = edit_unlock_file (edit->filename);
868 /* save cursor position */
869 if (option_save_position)
870 edit_save_position (edit);
872 /* File specified on the mcedit command line and never saved */
873 if (edit->delete_file)
874 unlink (edit->filename);
876 edit_free_syntax_rules (edit);
877 book_mark_flush (edit, -1);
878 for (; j <= MAXBUFF; j++) {
879 g_free (edit->buffers1[j]);
880 g_free (edit->buffers2[j]);
883 g_free (edit->undo_stack);
884 g_free (edit->filename);
885 g_free (edit->dir);
887 if (edit->search)
889 mc_search_free(edit->search);
890 edit->search = NULL;
892 edit_purge_widget (edit);
894 return 1;
897 /* returns 1 on success */
899 edit_renew (WEdit * edit)
901 int lines = edit->num_widget_lines;
902 int columns = edit->num_widget_columns;
904 edit_clean (edit);
905 return (edit_init (edit, lines, columns, "", 0) != NULL);
909 * Load a new file into the editor. If it fails, preserve the old file.
910 * To do it, allocate a new widget, initialize it and, if the new file
911 * was loaded, copy the data to the old widget.
912 * Return 1 on success, 0 on failure.
915 edit_reload (WEdit *edit, const char *filename)
917 WEdit *e;
918 int lines = edit->num_widget_lines;
919 int columns = edit->num_widget_columns;
921 e = g_malloc0 (sizeof (WEdit));
922 e->widget = edit->widget;
923 if (!edit_init (e, lines, columns, filename, 0)) {
924 g_free (e);
925 return 0;
927 edit_clean (edit);
928 memcpy (edit, e, sizeof (WEdit));
929 g_free (e);
930 return 1;
934 * Load a new file into the editor and set line. If it fails, preserve the old file.
935 * To do it, allocate a new widget, initialize it and, if the new file
936 * was loaded, copy the data to the old widget.
937 * Return 1 on success, 0 on failure.
940 edit_reload_line (WEdit *edit, const char *filename, long line)
942 WEdit *e;
943 int lines = edit->num_widget_lines;
944 int columns = edit->num_widget_columns;
946 e = g_malloc0 (sizeof (WEdit));
947 e->widget = edit->widget;
948 if (!edit_init (e, lines, columns, filename, line)) {
949 g_free (e);
950 return 0;
952 edit_clean (edit);
953 memcpy (edit, e, sizeof (WEdit));
954 g_free (e);
955 return 1;
960 Recording stack for undo:
961 The following is an implementation of a compressed stack. Identical
962 pushes are recorded by a negative prefix indicating the number of times the
963 same char was pushed. This saves space for repeated curs-left or curs-right
964 delete etc.
968 pushed: stored:
972 b -3
974 c --> -4
980 If the stack long int is 0-255 it represents a normal insert (from a backspace),
981 256-512 is an insert ahead (from a delete), If it is betwen 600 and 700 it is one
982 of the cursor functions #define'd in edit-impl.h. 1000 through 700'000'000 is to
983 set edit->mark1 position. 700'000'000 through 1400'000'000 is to set edit->mark2
984 position.
986 The only way the cursor moves or the buffer is changed is through the routines:
987 insert, backspace, insert_ahead, delete, and cursor_move.
988 These record the reverse undo movements onto the stack each time they are
989 called.
991 Each key press results in a set of actions (insert; delete ...). So each time
992 a key is pressed the current position of start_display is pushed as
993 KEY_PRESS + start_display. Then for undoing, we pop until we get to a number
994 over KEY_PRESS. We then assign this number less KEY_PRESS to start_display. So undo
995 tracks scrolling and key actions exactly. (KEY_PRESS is about (2^31) * (2/3) = 1400'000'000)
999 void edit_push_action (WEdit * edit, long c,...)
1001 unsigned long sp = edit->stack_pointer;
1002 unsigned long spm1;
1003 long *t;
1005 /* first enlarge the stack if necessary */
1006 if (sp > edit->stack_size - 10) { /* say */
1007 if (option_max_undo < 256)
1008 option_max_undo = 256;
1009 if (edit->stack_size < (unsigned long) option_max_undo) {
1010 t = g_realloc (edit->undo_stack, (edit->stack_size * 2 + 10) * sizeof (long));
1011 if (t) {
1012 edit->undo_stack = t;
1013 edit->stack_size <<= 1;
1014 edit->stack_size_mask = edit->stack_size - 1;
1018 spm1 = (edit->stack_pointer - 1) & edit->stack_size_mask;
1019 if (edit->stack_disable)
1020 return;
1022 #ifdef FAST_MOVE_CURSOR
1023 if (c == CURS_LEFT_LOTS || c == CURS_RIGHT_LOTS) {
1024 va_list ap;
1025 edit->undo_stack[sp] = c == CURS_LEFT_LOTS ? CURS_LEFT : CURS_RIGHT;
1026 edit->stack_pointer = (edit->stack_pointer + 1) & edit->stack_size_mask;
1027 va_start (ap, c);
1028 c = -(va_arg (ap, int));
1029 va_end (ap);
1030 } else
1031 #endif /* ! FAST_MOVE_CURSOR */
1032 if (edit->stack_bottom != sp
1033 && spm1 != edit->stack_bottom
1034 && ((sp - 2) & edit->stack_size_mask) != edit->stack_bottom) {
1035 int d;
1036 if (edit->undo_stack[spm1] < 0) {
1037 d = edit->undo_stack[(sp - 2) & edit->stack_size_mask];
1038 if (d == c) {
1039 if (edit->undo_stack[spm1] > -1000000000) {
1040 if (c < KEY_PRESS) /* --> no need to push multiple do-nothings */
1041 edit->undo_stack[spm1]--;
1042 return;
1045 /* #define NO_STACK_CURSMOVE_ANIHILATION */
1046 #ifndef NO_STACK_CURSMOVE_ANIHILATION
1047 else if ((c == CURS_LEFT && d == CURS_RIGHT)
1048 || (c == CURS_RIGHT && d == CURS_LEFT)) { /* a left then a right anihilate each other */
1049 if (edit->undo_stack[spm1] == -2)
1050 edit->stack_pointer = spm1;
1051 else
1052 edit->undo_stack[spm1]++;
1053 return;
1055 #endif
1056 } else {
1057 d = edit->undo_stack[spm1];
1058 if (d == c) {
1059 if (c >= KEY_PRESS)
1060 return; /* --> no need to push multiple do-nothings */
1061 edit->undo_stack[sp] = -2;
1062 goto check_bottom;
1064 #ifndef NO_STACK_CURSMOVE_ANIHILATION
1065 else if ((c == CURS_LEFT && d == CURS_RIGHT)
1066 || (c == CURS_RIGHT && d == CURS_LEFT)) { /* a left then a right anihilate each other */
1067 edit->stack_pointer = spm1;
1068 return;
1070 #endif
1073 edit->undo_stack[sp] = c;
1075 check_bottom:
1076 edit->stack_pointer = (edit->stack_pointer + 1) & edit->stack_size_mask;
1078 /* if the sp wraps round and catches the stack_bottom then erase
1079 * the first set of actions on the stack to make space - by moving
1080 * stack_bottom forward one "key press" */
1081 c = (edit->stack_pointer + 2) & edit->stack_size_mask;
1082 if ((unsigned long) c == edit->stack_bottom ||
1083 (((unsigned long) c + 1) & edit->stack_size_mask) == edit->stack_bottom)
1084 do {
1085 edit->stack_bottom = (edit->stack_bottom + 1) & edit->stack_size_mask;
1086 } while (edit->undo_stack[edit->stack_bottom] < KEY_PRESS && edit->stack_bottom != edit->stack_pointer);
1088 /*If a single key produced enough pushes to wrap all the way round then we would notice that the [stack_bottom] does not contain KEY_PRESS. The stack is then initialised: */
1089 if (edit->stack_pointer != edit->stack_bottom && edit->undo_stack[edit->stack_bottom] < KEY_PRESS)
1090 edit->stack_bottom = edit->stack_pointer = 0;
1094 TODO: if the user undos until the stack bottom, and the stack has not wrapped,
1095 then the file should be as it was when he loaded up. Then set edit->modified to 0.
1097 static long
1098 pop_action (WEdit * edit)
1100 long c;
1101 unsigned long sp = edit->stack_pointer;
1102 if (sp == edit->stack_bottom) {
1103 return STACK_BOTTOM;
1105 sp = (sp - 1) & edit->stack_size_mask;
1106 if ((c = edit->undo_stack[sp]) >= 0) {
1107 /* edit->undo_stack[sp] = '@'; */
1108 edit->stack_pointer = (edit->stack_pointer - 1) & edit->stack_size_mask;
1109 return c;
1111 if (sp == edit->stack_bottom) {
1112 return STACK_BOTTOM;
1114 c = edit->undo_stack[(sp - 1) & edit->stack_size_mask];
1115 if (edit->undo_stack[sp] == -2) {
1116 /* edit->undo_stack[sp] = '@'; */
1117 edit->stack_pointer = sp;
1118 } else
1119 edit->undo_stack[sp]++;
1121 return c;
1124 /* is called whenever a modification is made by one of the four routines below */
1125 static void edit_modification (WEdit * edit)
1127 edit->caches_valid = 0;
1128 edit->screen_modified = 1;
1130 /* raise lock when file modified */
1131 if (!edit->modified && !edit->delete_file)
1132 edit->locked = edit_lock_file (edit->filename);
1133 edit->modified = 1;
1137 Basic low level single character buffer alterations and movements at the cursor.
1138 Returns char passed over, inserted or removed.
1141 void
1142 edit_insert (WEdit *edit, int c)
1144 /* check if file has grown to large */
1145 if (edit->last_byte >= SIZE_LIMIT)
1146 return;
1148 /* first we must update the position of the display window */
1149 if (edit->curs1 < edit->start_display) {
1150 edit->start_display++;
1151 if (c == '\n')
1152 edit->start_line++;
1155 /* Mark file as modified, unless the file hasn't been fully loaded */
1156 if (edit->loading_done) {
1157 edit_modification (edit);
1160 /* now we must update some info on the file and check if a redraw is required */
1161 if (c == '\n') {
1162 if (edit->book_mark)
1163 book_mark_inc (edit, edit->curs_line);
1164 edit->curs_line++;
1165 edit->total_lines++;
1166 edit->force |= REDRAW_LINE_ABOVE | REDRAW_AFTER_CURSOR;
1169 /* save the reverse command onto the undo stack */
1170 edit_push_action (edit, BACKSPACE);
1172 /* update markers */
1173 edit->mark1 += (edit->mark1 > edit->curs1);
1174 edit->mark2 += (edit->mark2 > edit->curs1);
1175 edit->last_get_rule += (edit->last_get_rule > edit->curs1);
1177 /* add a new buffer if we've reached the end of the last one */
1178 if (!(edit->curs1 & M_EDIT_BUF_SIZE))
1179 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] =
1180 g_malloc0 (EDIT_BUF_SIZE);
1182 /* perform the insertion */
1183 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE][edit->
1184 curs1 & M_EDIT_BUF_SIZE]
1185 = (unsigned char) c;
1187 /* update file length */
1188 edit->last_byte++;
1190 /* update cursor position */
1191 edit->curs1++;
1194 static void
1195 edit_insert_over (WEdit * edit)
1197 int i;
1199 for ( i = 0; i < edit->over_col; i++ ) {
1200 edit_insert (edit, ' ');
1202 edit->over_col = 0;
1205 /* same as edit_insert and move left */
1206 void edit_insert_ahead (WEdit * edit, int c)
1208 if (edit->last_byte >= SIZE_LIMIT)
1209 return;
1210 if (edit->curs1 < edit->start_display) {
1211 edit->start_display++;
1212 if (c == '\n')
1213 edit->start_line++;
1215 edit_modification (edit);
1216 if (c == '\n') {
1217 if (edit->book_mark)
1218 book_mark_inc (edit, edit->curs_line);
1219 edit->total_lines++;
1220 edit->force |= REDRAW_AFTER_CURSOR;
1222 edit_push_action (edit, DELCHAR);
1224 edit->mark1 += (edit->mark1 >= edit->curs1);
1225 edit->mark2 += (edit->mark2 >= edit->curs1);
1226 edit->last_get_rule += (edit->last_get_rule >= edit->curs1);
1228 if (!((edit->curs2 + 1) & M_EDIT_BUF_SIZE))
1229 edit->buffers2[(edit->curs2 + 1) >> S_EDIT_BUF_SIZE] = g_malloc0 (EDIT_BUF_SIZE);
1230 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE][EDIT_BUF_SIZE - (edit->curs2 & M_EDIT_BUF_SIZE) - 1] = c;
1232 edit->last_byte++;
1233 edit->curs2++;
1237 int edit_delete (WEdit * edit, const int byte_delete)
1239 int p = 0;
1240 int cw = 1;
1241 int i;
1243 if (!edit->curs2)
1244 return 0;
1246 edit->mark1 -= (edit->mark1 > edit->curs1);
1247 edit->mark2 -= (edit->mark2 > edit->curs1);
1248 edit->last_get_rule -= (edit->last_get_rule > edit->curs1);
1250 cw = 1;
1251 /* if byte_delete = 1 then delete only one byte not multibyte char*/
1252 if ( edit->utf8 && byte_delete == 0 ) {
1253 edit_get_utf (edit, edit->curs1, &cw);
1254 if ( cw < 1 )
1255 cw = 1;
1257 for ( i = 1; i<= cw; i++ ) {
1258 p = edit->buffers2[(edit->curs2 - 1) >> S_EDIT_BUF_SIZE][EDIT_BUF_SIZE - ((edit->curs2 - 1) & M_EDIT_BUF_SIZE) - 1];
1260 if (!(edit->curs2 & M_EDIT_BUF_SIZE)) {
1261 g_free (edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE]);
1262 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] = NULL;
1264 edit->last_byte--;
1265 edit->curs2--;
1266 edit_push_action (edit, p + 256);
1269 edit_modification (edit);
1270 if (p == '\n') {
1271 if (edit->book_mark)
1272 book_mark_dec (edit, edit->curs_line);
1273 edit->total_lines--;
1274 edit->force |= REDRAW_AFTER_CURSOR;
1276 if (edit->curs1 < edit->start_display) {
1277 edit->start_display--;
1278 if (p == '\n')
1279 edit->start_line--;
1282 return p;
1286 static int
1287 edit_backspace (WEdit * edit, const int byte_delete)
1289 int p = 0;
1290 int cw = 1;
1291 int i;
1293 if (!edit->curs1)
1294 return 0;
1296 edit->mark1 -= (edit->mark1 >= edit->curs1);
1297 edit->mark2 -= (edit->mark2 >= edit->curs1);
1298 edit->last_get_rule -= (edit->last_get_rule >= edit->curs1);
1300 cw = 1;
1301 if ( edit->utf8 && byte_delete == 0 ) {
1302 edit_get_prev_utf (edit, edit->curs1, &cw);
1303 if ( cw < 1 )
1304 cw = 1;
1306 for ( i = 1; i<= cw; i++ ) {
1307 p = *(edit->buffers1[(edit->curs1 - 1) >> S_EDIT_BUF_SIZE] + ((edit->curs1 - 1) & M_EDIT_BUF_SIZE));
1308 if (!((edit->curs1 - 1) & M_EDIT_BUF_SIZE)) {
1309 g_free (edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE]);
1310 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] = NULL;
1312 edit->last_byte--;
1313 edit->curs1--;
1314 edit_push_action (edit, p);
1316 edit_modification (edit);
1317 if (p == '\n') {
1318 if (edit->book_mark)
1319 book_mark_dec (edit, edit->curs_line);
1320 edit->curs_line--;
1321 edit->total_lines--;
1322 edit->force |= REDRAW_AFTER_CURSOR;
1325 if (edit->curs1 < edit->start_display) {
1326 edit->start_display--;
1327 if (p == '\n')
1328 edit->start_line--;
1331 return p;
1334 #ifdef FAST_MOVE_CURSOR
1336 static void memqcpy (WEdit * edit, unsigned char *dest, unsigned char *src, int n)
1338 unsigned long next;
1339 while ((next = (unsigned long) memccpy (dest, src, '\n', n))) {
1340 edit->curs_line--;
1341 next -= (unsigned long) dest;
1342 n -= next;
1343 src += next;
1344 dest += next;
1349 edit_move_backward_lots (WEdit *edit, long increment)
1351 int r, s, t;
1352 unsigned char *p = NULL;
1354 if (increment > edit->curs1)
1355 increment = edit->curs1;
1356 if (increment <= 0)
1357 return -1;
1358 edit_push_action (edit, CURS_RIGHT_LOTS, increment);
1360 t = r = EDIT_BUF_SIZE - (edit->curs2 & M_EDIT_BUF_SIZE);
1361 if (r > increment)
1362 r = increment;
1363 s = edit->curs1 & M_EDIT_BUF_SIZE;
1365 if (s > r) {
1366 memqcpy (edit,
1367 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] + t - r,
1368 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] + s - r,
1370 } else {
1371 if (s) {
1372 memqcpy (edit,
1373 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] + t -
1374 s, edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE], s);
1375 p = edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE];
1376 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] = 0;
1378 memqcpy (edit,
1379 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] + t - r,
1380 edit->buffers1[(edit->curs1 >> S_EDIT_BUF_SIZE) - 1] +
1381 EDIT_BUF_SIZE - (r - s), r - s);
1383 increment -= r;
1384 edit->curs1 -= r;
1385 edit->curs2 += r;
1386 if (!(edit->curs2 & M_EDIT_BUF_SIZE)) {
1387 if (p)
1388 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] = p;
1389 else
1390 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] =
1391 g_malloc0 (EDIT_BUF_SIZE);
1392 } else {
1393 g_free (p);
1396 s = edit->curs1 & M_EDIT_BUF_SIZE;
1397 while (increment) {
1398 p = 0;
1399 r = EDIT_BUF_SIZE;
1400 if (r > increment)
1401 r = increment;
1402 t = s;
1403 if (r < t)
1404 t = r;
1405 memqcpy (edit,
1406 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] +
1407 EDIT_BUF_SIZE - t,
1408 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] + s - t,
1410 if (r >= s) {
1411 if (t) {
1412 p = edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE];
1413 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] = 0;
1415 memqcpy (edit,
1416 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] +
1417 EDIT_BUF_SIZE - r,
1418 edit->buffers1[(edit->curs1 >> S_EDIT_BUF_SIZE) - 1] +
1419 EDIT_BUF_SIZE - (r - s), r - s);
1421 increment -= r;
1422 edit->curs1 -= r;
1423 edit->curs2 += r;
1424 if (!(edit->curs2 & M_EDIT_BUF_SIZE)) {
1425 if (p)
1426 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] = p;
1427 else
1428 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] =
1429 g_malloc0 (EDIT_BUF_SIZE);
1430 } else {
1431 g_free (p);
1434 return edit_get_byte (edit, edit->curs1);
1437 #endif /* ! FAST_MOVE_CURSOR */
1439 /* moves the cursor right or left: increment positive or negative respectively */
1440 void edit_cursor_move (WEdit * edit, long increment)
1442 /* this is the same as a combination of two of the above routines, with only one push onto the undo stack */
1443 int c;
1444 #ifdef FAST_MOVE_CURSOR
1445 if (increment < -256) {
1446 edit->force |= REDRAW_PAGE;
1447 edit_move_backward_lots (edit, -increment);
1448 return;
1450 #endif /* ! FAST_MOVE_CURSOR */
1452 if (increment < 0) {
1453 for (; increment < 0; increment++) {
1454 if (!edit->curs1)
1455 return;
1457 edit_push_action (edit, CURS_RIGHT);
1459 c = edit_get_byte (edit, edit->curs1 - 1);
1460 if (!((edit->curs2 + 1) & M_EDIT_BUF_SIZE))
1461 edit->buffers2[(edit->curs2 + 1) >> S_EDIT_BUF_SIZE] = g_malloc0 (EDIT_BUF_SIZE);
1462 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE][EDIT_BUF_SIZE - (edit->curs2 & M_EDIT_BUF_SIZE) - 1] = c;
1463 edit->curs2++;
1464 c = edit->buffers1[(edit->curs1 - 1) >> S_EDIT_BUF_SIZE][(edit->curs1 - 1) & M_EDIT_BUF_SIZE];
1465 if (!((edit->curs1 - 1) & M_EDIT_BUF_SIZE)) {
1466 g_free (edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE]);
1467 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] = NULL;
1469 edit->curs1--;
1470 if (c == '\n') {
1471 edit->curs_line--;
1472 edit->force |= REDRAW_LINE_BELOW;
1476 } else if (increment > 0) {
1477 for (; increment > 0; increment--) {
1478 if (!edit->curs2)
1479 return;
1481 edit_push_action (edit, CURS_LEFT);
1483 c = edit_get_byte (edit, edit->curs1);
1484 if (!(edit->curs1 & M_EDIT_BUF_SIZE))
1485 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE] = g_malloc0 (EDIT_BUF_SIZE);
1486 edit->buffers1[edit->curs1 >> S_EDIT_BUF_SIZE][edit->curs1 & M_EDIT_BUF_SIZE] = c;
1487 edit->curs1++;
1488 c = edit->buffers2[(edit->curs2 - 1) >> S_EDIT_BUF_SIZE][EDIT_BUF_SIZE - ((edit->curs2 - 1) & M_EDIT_BUF_SIZE) - 1];
1489 if (!(edit->curs2 & M_EDIT_BUF_SIZE)) {
1490 g_free (edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE]);
1491 edit->buffers2[edit->curs2 >> S_EDIT_BUF_SIZE] = 0;
1493 edit->curs2--;
1494 if (c == '\n') {
1495 edit->curs_line++;
1496 edit->force |= REDRAW_LINE_ABOVE;
1502 /* These functions return positions relative to lines */
1504 /* returns index of last char on line + 1 */
1505 long edit_eol (WEdit * edit, long current)
1507 if (current < edit->last_byte) {
1508 for (;; current++)
1509 if (edit_get_byte (edit, current) == '\n')
1510 break;
1511 } else
1512 return edit->last_byte;
1513 return current;
1516 /* returns index of first char on line */
1517 long edit_bol (WEdit * edit, long current)
1519 if (current > 0) {
1520 for (;; current--)
1521 if (edit_get_byte (edit, current - 1) == '\n')
1522 break;
1523 } else
1524 return 0;
1525 return current;
1529 long edit_count_lines (WEdit * edit, long current, long upto)
1531 long lines = 0;
1532 if (upto > edit->last_byte)
1533 upto = edit->last_byte;
1534 if (current < 0)
1535 current = 0;
1536 while (current < upto)
1537 if (edit_get_byte (edit, current++) == '\n')
1538 lines++;
1539 return lines;
1543 /* If lines is zero this returns the count of lines from current to upto. */
1544 /* If upto is zero returns index of lines forward current. */
1545 long edit_move_forward (WEdit * edit, long current, long lines, long upto)
1547 if (upto) {
1548 return edit_count_lines (edit, current, upto);
1549 } else {
1550 long next;
1551 if (lines < 0)
1552 lines = 0;
1553 while (lines--) {
1554 next = edit_eol (edit, current) + 1;
1555 if (next > edit->last_byte)
1556 break;
1557 else
1558 current = next;
1560 return current;
1565 /* Returns offset of 'lines' lines up from current */
1566 long edit_move_backward (WEdit * edit, long current, long lines)
1568 if (lines < 0)
1569 lines = 0;
1570 current = edit_bol (edit, current);
1571 while((lines--) && current != 0)
1572 current = edit_bol (edit, current - 1);
1573 return current;
1576 /* If cols is zero this returns the count of columns from current to upto. */
1577 /* If upto is zero returns index of cols across from current. */
1578 long
1579 edit_move_forward3 (WEdit * edit, long current, int cols, long upto)
1581 long p, q;
1582 int col;
1584 if (upto) {
1585 q = upto;
1586 cols = -10;
1587 } else
1588 q = edit->last_byte + 2;
1590 for (col = 0, p = current; p < q; p++) {
1591 int c, orig_c;
1592 int utf_ch = 0;
1593 #ifdef HAVE_CHARSET
1594 int cw = 1;
1595 #endif
1596 if (cols != -10) {
1597 if (col == cols)
1598 return p;
1599 if (col > cols)
1600 return p - 1;
1602 orig_c = c = edit_get_byte (edit, p);
1603 #ifdef HAVE_CHARSET
1604 if (edit->utf8) {
1605 utf_ch = edit_get_utf (edit, p, &cw);
1606 if (utf8_display) {
1607 if (cw > 1)
1608 col -= cw - 1;
1609 if (g_unichar_iswide (utf_ch))
1610 col++;
1611 } else if (cw > 1 && g_unichar_isprint (utf_ch))
1612 col -= cw - 1;
1614 #endif
1615 c = convert_to_display_c (c);
1616 if (c == '\t')
1617 col += TAB_SIZE - col % TAB_SIZE;
1618 else if (c == '\n') {
1619 if (upto)
1620 return col;
1621 else
1622 return p;
1623 } else if ((c < 32 || c == 127) && (orig_c == c || (!utf8_display && !edit->utf8)))
1624 /* '\r' is shown as ^M, so we must advance 2 characters */
1625 /* Caret notation for control characters */
1626 col += 2;
1627 else
1628 col++;
1630 return col;
1633 /* returns the current column position of the cursor */
1634 int edit_get_col (WEdit * edit)
1636 return edit_move_forward3 (edit, edit_bol (edit, edit->curs1), 0, edit->curs1);
1640 /* Scrolling functions */
1642 void edit_update_curs_row (WEdit * edit)
1644 edit->curs_row = edit->curs_line - edit->start_line;
1647 void edit_update_curs_col (WEdit * edit)
1649 edit->curs_col = edit_move_forward3(edit, edit_bol(edit, edit->curs1), 0, edit->curs1);
1653 edit_get_curs_col (const WEdit *edit)
1655 return edit->curs_col;
1658 /*moves the display start position up by i lines */
1659 void edit_scroll_upward (WEdit * edit, unsigned long i)
1661 unsigned long lines_above = edit->start_line;
1662 if (i > lines_above)
1663 i = lines_above;
1664 if (i) {
1665 edit->start_line -= i;
1666 edit->start_display = edit_move_backward (edit, edit->start_display, i);
1667 edit->force |= REDRAW_PAGE;
1668 edit->force &= (0xfff - REDRAW_CHAR_ONLY);
1670 edit_update_curs_row (edit);
1674 /* returns 1 if could scroll, 0 otherwise */
1675 void edit_scroll_downward (WEdit * edit, int i)
1677 int lines_below;
1678 lines_below = edit->total_lines - edit->start_line - (edit->num_widget_lines - 1);
1679 if (lines_below > 0) {
1680 if (i > lines_below)
1681 i = lines_below;
1682 edit->start_line += i;
1683 edit->start_display = edit_move_forward (edit, edit->start_display, i, 0);
1684 edit->force |= REDRAW_PAGE;
1685 edit->force &= (0xfff - REDRAW_CHAR_ONLY);
1687 edit_update_curs_row (edit);
1690 void edit_scroll_right (WEdit * edit, int i)
1692 edit->force |= REDRAW_PAGE;
1693 edit->force &= (0xfff - REDRAW_CHAR_ONLY);
1694 edit->start_col -= i;
1697 void edit_scroll_left (WEdit * edit, int i)
1699 if (edit->start_col) {
1700 edit->start_col += i;
1701 if (edit->start_col > 0)
1702 edit->start_col = 0;
1703 edit->force |= REDRAW_PAGE;
1704 edit->force &= (0xfff - REDRAW_CHAR_ONLY);
1708 /* high level cursor movement commands */
1710 static int is_in_indent (WEdit *edit)
1712 long p = edit_bol (edit, edit->curs1);
1713 while (p < edit->curs1)
1714 if (!strchr (" \t", edit_get_byte (edit, p++)))
1715 return 0;
1716 return 1;
1719 static int left_of_four_spaces (WEdit *edit);
1721 void
1722 edit_move_to_prev_col (WEdit * edit, long p)
1724 int prev = edit->prev_col;
1725 int over = edit->over_col;
1726 edit_cursor_move (edit, edit_move_forward3 (edit, p, prev + edit->over_col, 0) - edit->curs1);
1728 if (option_cursor_beyond_eol) {
1729 long line_len = edit_move_forward3 (edit, edit_bol (edit, edit->curs1), 0, edit_eol(edit, edit->curs1));
1731 if (line_len < prev + edit->over_col) {
1732 edit->over_col = prev + over - line_len;
1733 edit->prev_col = line_len;
1734 edit->curs_col = line_len;
1735 } else {
1736 edit->curs_col = prev + over;
1737 edit->prev_col = edit->curs_col;
1738 edit->over_col = 0;
1740 } else {
1741 edit->over_col = 0;
1742 if (is_in_indent (edit) && option_fake_half_tabs) {
1743 edit_update_curs_col (edit);
1744 if (space_width)
1745 if (edit->curs_col % (HALF_TAB_SIZE * space_width)) {
1746 int q = edit->curs_col;
1747 edit->curs_col -= (edit->curs_col % (HALF_TAB_SIZE * space_width));
1748 p = edit_bol (edit, edit->curs1);
1749 edit_cursor_move (edit, edit_move_forward3 (edit, p, edit->curs_col, 0) - edit->curs1);
1750 if (!left_of_four_spaces (edit))
1751 edit_cursor_move (edit, edit_move_forward3 (edit, p, q, 0) - edit->curs1);
1757 static int
1758 is_blank (WEdit *edit, long offset)
1760 long s, f;
1761 int c;
1762 s = edit_bol (edit, offset);
1763 f = edit_eol (edit, offset) - 1;
1764 while (s <= f) {
1765 c = edit_get_byte (edit, s++);
1766 if (!isspace (c))
1767 return 0;
1769 return 1;
1773 /* returns the offset of line i */
1774 static long
1775 edit_find_line (WEdit *edit, int line)
1777 int i, j = 0;
1778 int m = 2000000000;
1779 if (!edit->caches_valid) {
1780 for (i = 0; i < N_LINE_CACHES; i++)
1781 edit->line_numbers[i] = edit->line_offsets[i] = 0;
1782 /* three offsets that we *know* are line 0 at 0 and these two: */
1783 edit->line_numbers[1] = edit->curs_line;
1784 edit->line_offsets[1] = edit_bol (edit, edit->curs1);
1785 edit->line_numbers[2] = edit->total_lines;
1786 edit->line_offsets[2] = edit_bol (edit, edit->last_byte);
1787 edit->caches_valid = 1;
1789 if (line >= edit->total_lines)
1790 return edit->line_offsets[2];
1791 if (line <= 0)
1792 return 0;
1793 /* find the closest known point */
1794 for (i = 0; i < N_LINE_CACHES; i++) {
1795 int n;
1796 n = abs (edit->line_numbers[i] - line);
1797 if (n < m) {
1798 m = n;
1799 j = i;
1802 if (m == 0)
1803 return edit->line_offsets[j]; /* know the offset exactly */
1804 if (m == 1 && j >= 3)
1805 i = j; /* one line different - caller might be looping, so stay in this cache */
1806 else
1807 i = 3 + (rand () % (N_LINE_CACHES - 3));
1808 if (line > edit->line_numbers[j])
1809 edit->line_offsets[i] = edit_move_forward (edit, edit->line_offsets[j], line - edit->line_numbers[j], 0);
1810 else
1811 edit->line_offsets[i] = edit_move_backward (edit, edit->line_offsets[j], edit->line_numbers[j] - line);
1812 edit->line_numbers[i] = line;
1813 return edit->line_offsets[i];
1816 int line_is_blank (WEdit * edit, long line)
1818 return is_blank (edit, edit_find_line (edit, line));
1821 /* moves up until a blank line is reached, or until just
1822 before a non-blank line is reached */
1823 static void edit_move_up_paragraph (WEdit * edit, int scroll)
1825 int i = 0;
1826 if (edit->curs_line > 1) {
1827 if (line_is_blank (edit, edit->curs_line)) {
1828 if (line_is_blank (edit, edit->curs_line - 1)) {
1829 for (i = edit->curs_line - 1; i; i--)
1830 if (!line_is_blank (edit, i)) {
1831 i++;
1832 break;
1834 } else {
1835 for (i = edit->curs_line - 1; i; i--)
1836 if (line_is_blank (edit, i))
1837 break;
1839 } else {
1840 for (i = edit->curs_line - 1; i; i--)
1841 if (line_is_blank (edit, i))
1842 break;
1845 edit_move_up (edit, edit->curs_line - i, scroll);
1848 /* moves down until a blank line is reached, or until just
1849 before a non-blank line is reached */
1850 static void edit_move_down_paragraph (WEdit * edit, int scroll)
1852 int i;
1853 if (edit->curs_line >= edit->total_lines - 1) {
1854 i = edit->total_lines;
1855 } else {
1856 if (line_is_blank (edit, edit->curs_line)) {
1857 if (line_is_blank (edit, edit->curs_line + 1)) {
1858 for (i = edit->curs_line + 1; i; i++)
1859 if (!line_is_blank (edit, i) || i > edit->total_lines) {
1860 i--;
1861 break;
1863 } else {
1864 for (i = edit->curs_line + 1; i; i++)
1865 if (line_is_blank (edit, i) || i >= edit->total_lines)
1866 break;
1868 } else {
1869 for (i = edit->curs_line + 1; i; i++)
1870 if (line_is_blank (edit, i) || i >= edit->total_lines)
1871 break;
1874 edit_move_down (edit, i - edit->curs_line, scroll);
1877 static void edit_begin_page (WEdit *edit)
1879 edit_update_curs_row (edit);
1880 edit_move_up (edit, edit->curs_row, 0);
1883 static void edit_end_page (WEdit *edit)
1885 edit_update_curs_row (edit);
1886 edit_move_down (edit, edit->num_widget_lines - edit->curs_row - 1, 0);
1890 /* goto beginning of text */
1891 static void edit_move_to_top (WEdit * edit)
1893 if (edit->curs_line) {
1894 edit_cursor_move (edit, -edit->curs1);
1895 edit_move_to_prev_col (edit, 0);
1896 edit->force |= REDRAW_PAGE;
1897 edit->search_start = 0;
1898 edit_update_curs_row(edit);
1903 /* goto end of text */
1904 static void edit_move_to_bottom (WEdit * edit)
1906 if (edit->curs_line < edit->total_lines) {
1907 edit_move_down (edit, edit->total_lines - edit->curs_row, 0);
1908 edit->start_display = edit->last_byte;
1909 edit->start_line = edit->total_lines;
1910 edit_scroll_upward (edit, edit->num_widget_lines - 1);
1911 edit->force |= REDRAW_PAGE;
1915 /* goto beginning of line */
1916 static void edit_cursor_to_bol (WEdit * edit)
1918 edit_cursor_move (edit, edit_bol (edit, edit->curs1) - edit->curs1);
1919 edit->search_start = edit->curs1;
1920 edit->prev_col = edit_get_col (edit);
1921 edit->over_col = 0;
1924 /* goto end of line */
1925 static void edit_cursor_to_eol (WEdit * edit)
1927 edit_cursor_move (edit, edit_eol (edit, edit->curs1) - edit->curs1);
1928 edit->search_start = edit->curs1;
1929 edit->prev_col = edit_get_col (edit);
1930 edit->over_col = 0;
1933 /* move cursor to line 'line' */
1934 void edit_move_to_line (WEdit * e, long line)
1936 if(line < e->curs_line)
1937 edit_move_up (e, e->curs_line - line, 0);
1938 else
1939 edit_move_down (e, line - e->curs_line, 0);
1940 edit_scroll_screen_over_cursor (e);
1943 /* scroll window so that first visible line is 'line' */
1944 void edit_move_display (WEdit * e, long line)
1946 if(line < e->start_line)
1947 edit_scroll_upward (e, e->start_line - line);
1948 else
1949 edit_scroll_downward (e, line - e->start_line);
1952 /* save markers onto undo stack */
1953 void edit_push_markers (WEdit * edit)
1955 edit_push_action (edit, MARK_1 + edit->mark1);
1956 edit_push_action (edit, MARK_2 + edit->mark2);
1959 void edit_set_markers (WEdit * edit, long m1, long m2, int c1, int c2)
1961 edit->mark1 = m1;
1962 edit->mark2 = m2;
1963 edit->column1 = c1;
1964 edit->column2 = c2;
1968 /* highlight marker toggle */
1969 void edit_mark_cmd (WEdit * edit, int unmark)
1971 edit_push_markers (edit);
1972 if (unmark) {
1973 edit_set_markers (edit, 0, 0, 0, 0);
1974 edit->force |= REDRAW_PAGE;
1975 } else {
1976 if (edit->mark2 >= 0) {
1977 edit_set_markers (edit, edit->curs1, -1, edit->curs_col+edit->over_col, edit->curs_col+edit->over_col);
1978 edit->force |= REDRAW_PAGE;
1979 } else
1980 edit_set_markers (edit, edit->mark1, edit->curs1, edit->column1, edit->curs_col+edit->over_col);
1984 static unsigned long
1985 my_type_of (int c)
1987 int x, r = 0;
1988 const char *p, *q;
1989 const char option_chars_move_whole_word[] =
1990 "!=&|<>^~ !:;, !'!`!.?!\"!( !) !Aa0 !+-*/= |<> ![ !] !\\#! ";
1992 if (!c)
1993 return 0;
1994 if (c == '!') {
1995 if (*option_chars_move_whole_word == '!')
1996 return 2;
1997 return 0x80000000UL;
1999 if (g_ascii_isupper ((gchar) c))
2000 c = 'A';
2001 else if (g_ascii_islower ((gchar) c))
2002 c = 'a';
2003 else if (g_ascii_isalpha (c))
2004 c = 'a';
2005 else if (isdigit (c))
2006 c = '0';
2007 else if (isspace (c))
2008 c = ' ';
2009 q = strchr (option_chars_move_whole_word, c);
2010 if (!q)
2011 return 0xFFFFFFFFUL;
2012 do {
2013 for (x = 1, p = option_chars_move_whole_word; p < q; p++)
2014 if (*p == '!')
2015 x <<= 1;
2016 r |= x;
2017 } while ((q = strchr (q + 1, c)));
2018 return r;
2021 static void
2022 edit_left_word_move (WEdit *edit, int s)
2024 for (;;) {
2025 int c1, c2;
2026 if (column_highlighting
2027 && edit->mark1 != edit->mark2
2028 && edit->over_col == 0
2029 && edit->curs1 == edit_bol(edit, edit->curs1))
2030 break;
2031 edit_cursor_move (edit, -1);
2032 if (!edit->curs1)
2033 break;
2034 c1 = edit_get_byte (edit, edit->curs1 - 1);
2035 c2 = edit_get_byte (edit, edit->curs1);
2036 if (!(my_type_of (c1) & my_type_of (c2)))
2037 break;
2038 if (isspace (c1) && !isspace (c2))
2039 break;
2040 if (s)
2041 if (!isspace (c1) && isspace (c2))
2042 break;
2046 static void edit_left_word_move_cmd (WEdit * edit)
2048 edit_left_word_move (edit, 0);
2049 edit->force |= REDRAW_PAGE;
2052 static void
2053 edit_right_word_move (WEdit *edit, int s)
2055 for (;;) {
2056 int c1, c2;
2057 if (column_highlighting
2058 && edit->mark1 != edit->mark2
2059 && edit->over_col == 0
2060 && edit->curs1 == edit_eol(edit, edit->curs1)
2062 break;
2063 edit_cursor_move (edit, 1);
2064 if (edit->curs1 >= edit->last_byte)
2065 break;
2066 c1 = edit_get_byte (edit, edit->curs1 - 1);
2067 c2 = edit_get_byte (edit, edit->curs1);
2068 if (!(my_type_of (c1) & my_type_of (c2)))
2069 break;
2070 if (isspace (c1) && !isspace (c2))
2071 break;
2072 if (s)
2073 if (!isspace (c1) && isspace (c2))
2074 break;
2078 static void edit_right_word_move_cmd (WEdit * edit)
2080 edit_right_word_move (edit, 0);
2081 edit->force |= REDRAW_PAGE;
2084 static void edit_right_char_move_cmd (WEdit * edit)
2086 int cw = 1;
2087 int c = 0;
2088 if ( edit->utf8 ) {
2089 c = edit_get_utf (edit, edit->curs1, &cw);
2090 if ( cw < 1 )
2091 cw = 1;
2092 } else {
2093 c = edit_get_byte (edit, edit->curs1);
2095 if (option_cursor_beyond_eol && c == '\n') {
2096 edit->over_col++;
2097 } else {
2098 edit_cursor_move (edit, cw);
2102 static void edit_left_char_move_cmd (WEdit * edit)
2104 int cw = 1;
2105 if (column_highlighting
2106 && edit->mark1 != edit->mark2
2107 && edit->over_col == 0
2108 && edit->curs1 == edit_bol(edit, edit->curs1))
2109 return;
2110 if ( edit->utf8 ) {
2111 edit_get_prev_utf (edit, edit->curs1, &cw);
2112 if ( cw < 1 )
2113 cw = 1;
2115 if (option_cursor_beyond_eol && edit->over_col > 0) {
2116 edit->over_col--;
2117 } else {
2118 edit_cursor_move (edit, -cw);
2122 /** Up or down cursor moving.
2123 direction = TRUE - move up
2124 = FALSE - move down
2126 static void
2127 edit_move_updown (WEdit * edit, unsigned long i, int scroll, gboolean direction) {
2128 unsigned long p;
2129 unsigned long l = (direction)
2130 ? edit->curs_line
2131 : edit->total_lines - edit->curs_line;
2133 if (i > l)
2134 i = l;
2136 if (i == 0)
2137 return;
2139 if (i > 1)
2140 edit->force |= REDRAW_PAGE;
2141 if (scroll) {
2142 if (direction)
2143 edit_scroll_upward (edit, i);
2144 else
2145 edit_scroll_downward (edit, i);
2147 p = edit_bol (edit, edit->curs1);
2149 p = (direction)
2150 ? edit_move_backward (edit, p, i)
2151 : edit_move_forward (edit, p, i, 0);
2153 edit_cursor_move (edit, p - edit->curs1);
2155 edit_move_to_prev_col (edit, p);
2157 /* search start of current multibyte char (like CJK) */
2158 edit_right_char_move_cmd (edit);
2159 edit_left_char_move_cmd (edit);
2161 edit->search_start = edit->curs1;
2162 edit->found_len = 0;
2165 static void edit_right_delete_word (WEdit * edit)
2167 int c1, c2;
2168 for (;;) {
2169 if (edit->curs1 >= edit->last_byte)
2170 break;
2171 c1 = edit_delete (edit, 1);
2172 c2 = edit_get_byte (edit, edit->curs1);
2173 if ((isspace (c1) == 0) != (isspace (c2) == 0))
2174 break;
2175 if (!(my_type_of (c1) & my_type_of (c2)))
2176 break;
2180 static void edit_left_delete_word (WEdit * edit)
2182 int c1, c2;
2183 for (;;) {
2184 if (edit->curs1 <= 0)
2185 break;
2186 c1 = edit_backspace (edit, 1);
2187 c2 = edit_get_byte (edit, edit->curs1 - 1);
2188 if ((isspace (c1) == 0) != (isspace (c2) == 0))
2189 break;
2190 if (!(my_type_of (c1) & my_type_of (c2)))
2191 break;
2196 the start column position is not recorded, and hence does not
2197 undo as it happed. But who would notice.
2199 static void
2200 edit_do_undo (WEdit * edit)
2202 long ac;
2203 long count = 0;
2205 edit->stack_disable = 1; /* don't record undo's onto undo stack! */
2206 edit->over_col = 0;
2207 while ((ac = pop_action (edit)) < KEY_PRESS) {
2208 switch ((int) ac) {
2209 case STACK_BOTTOM:
2210 goto done_undo;
2211 case CURS_RIGHT:
2212 edit_cursor_move (edit, 1);
2213 break;
2214 case CURS_LEFT:
2215 edit_cursor_move (edit, -1);
2216 break;
2217 case BACKSPACE:
2218 edit_backspace (edit, 1);
2219 break;
2220 case DELCHAR:
2221 edit_delete (edit, 1);
2222 break;
2223 case COLUMN_ON:
2224 column_highlighting = 1;
2225 break;
2226 case COLUMN_OFF:
2227 column_highlighting = 0;
2228 break;
2230 if (ac >= 256 && ac < 512)
2231 edit_insert_ahead (edit, ac - 256);
2232 if (ac >= 0 && ac < 256)
2233 edit_insert (edit, ac);
2235 if (ac >= MARK_1 - 2 && ac < MARK_2 - 2) {
2236 edit->mark1 = ac - MARK_1;
2237 edit->column1 = edit_move_forward3 (edit, edit_bol (edit, edit->mark1), 0, edit->mark1);
2238 } else if (ac >= MARK_2 - 2 && ac < KEY_PRESS) {
2239 edit->mark2 = ac - MARK_2;
2240 edit->column2 = edit_move_forward3 (edit, edit_bol (edit, edit->mark2), 0, edit->mark2);
2242 if (count++)
2243 edit->force |= REDRAW_PAGE; /* more than one pop usually means something big */
2246 if (edit->start_display > ac - KEY_PRESS) {
2247 edit->start_line -= edit_count_lines (edit, ac - KEY_PRESS, edit->start_display);
2248 edit->force |= REDRAW_PAGE;
2249 } else if (edit->start_display < ac - KEY_PRESS) {
2250 edit->start_line += edit_count_lines (edit, edit->start_display, ac - KEY_PRESS);
2251 edit->force |= REDRAW_PAGE;
2253 edit->start_display = ac - KEY_PRESS; /* see push and pop above */
2254 edit_update_curs_row (edit);
2256 done_undo:;
2257 edit->stack_disable = 0;
2260 static void edit_delete_to_line_end (WEdit * edit)
2262 while (edit_get_byte (edit, edit->curs1) != '\n') {
2263 if (!edit->curs2)
2264 break;
2265 edit_delete (edit, 1);
2269 static void edit_delete_to_line_begin (WEdit * edit)
2271 while (edit_get_byte (edit, edit->curs1 - 1) != '\n') {
2272 if (!edit->curs1)
2273 break;
2274 edit_backspace (edit, 1);
2278 void
2279 edit_delete_line (WEdit *edit)
2282 * Delete right part of the line.
2283 * Note that edit_get_byte() returns '\n' when byte position is
2284 * beyond EOF.
2286 while (edit_get_byte (edit, edit->curs1) != '\n') {
2287 (void) edit_delete (edit, 1);
2291 * Delete '\n' char.
2292 * Note that edit_delete() will not corrupt anything if called while
2293 * cursor position is EOF.
2295 (void) edit_delete (edit, 1);
2298 * Delete left part of the line.
2299 * Note, that edit_get_byte() returns '\n' when byte position is < 0.
2301 while (edit_get_byte (edit, edit->curs1 - 1) != '\n') {
2302 (void) edit_backspace (edit, 1);
2306 void insert_spaces_tab (WEdit * edit, int half)
2308 int i;
2309 edit_update_curs_col (edit);
2310 i = ((edit->curs_col / (option_tab_spacing * space_width / (half + 1))) + 1) * (option_tab_spacing * space_width / (half + 1)) - edit->curs_col;
2311 while (i > 0) {
2312 edit_insert (edit, ' ');
2313 i -= space_width;
2317 static int is_aligned_on_a_tab (WEdit * edit)
2319 edit_update_curs_col (edit);
2320 return !((edit->curs_col % (TAB_SIZE * space_width))
2321 && edit->curs_col % (TAB_SIZE * space_width) != (HALF_TAB_SIZE * space_width));
2324 static int right_of_four_spaces (WEdit *edit)
2326 int i, ch = 0;
2327 for (i = 1; i <= HALF_TAB_SIZE; i++)
2328 ch |= edit_get_byte (edit, edit->curs1 - i);
2329 if (ch == ' ')
2330 return is_aligned_on_a_tab (edit);
2331 return 0;
2334 static int left_of_four_spaces (WEdit *edit)
2336 int i, ch = 0;
2337 for (i = 0; i < HALF_TAB_SIZE; i++)
2338 ch |= edit_get_byte (edit, edit->curs1 + i);
2339 if (ch == ' ')
2340 return is_aligned_on_a_tab (edit);
2341 return 0;
2344 int edit_indent_width (WEdit * edit, long p)
2346 long q = p;
2347 while (strchr ("\t ", edit_get_byte (edit, q)) && q < edit->last_byte - 1) /* move to the end of the leading whitespace of the line */
2348 q++;
2349 return edit_move_forward3 (edit, p, 0, q); /* count the number of columns of indentation */
2352 void edit_insert_indent (WEdit * edit, int indent)
2354 if (!option_fill_tabs_with_spaces) {
2355 while (indent >= TAB_SIZE) {
2356 edit_insert (edit, '\t');
2357 indent -= TAB_SIZE;
2360 while (indent-- > 0)
2361 edit_insert (edit, ' ');
2364 static void
2365 edit_auto_indent (WEdit * edit)
2367 long p;
2368 char c;
2369 p = edit->curs1;
2370 /* use the previous line as a template */
2371 p = edit_move_backward (edit, p, 1);
2372 /* copy the leading whitespace of the line */
2373 for (;;) { /* no range check - the line _is_ \n-terminated */
2374 c = edit_get_byte (edit, p++);
2375 if (c != ' ' && c != '\t')
2376 break;
2377 edit_insert (edit, c);
2381 static inline void
2382 edit_double_newline (WEdit * edit)
2384 edit_insert (edit, '\n');
2385 if (edit_get_byte (edit, edit->curs1) == '\n')
2386 return;
2387 if (edit_get_byte (edit, edit->curs1 - 2) == '\n')
2388 return;
2389 edit->force |= REDRAW_PAGE;
2390 edit_insert (edit, '\n');
2393 static inline void
2394 edit_tab_cmd (WEdit * edit)
2396 int i;
2398 if (option_fake_half_tabs) {
2399 if (is_in_indent (edit)) {
2400 /*insert a half tab (usually four spaces) unless there is a
2401 half tab already behind, then delete it and insert a
2402 full tab. */
2403 if (!option_fill_tabs_with_spaces && right_of_four_spaces (edit)) {
2404 for (i = 1; i <= HALF_TAB_SIZE; i++)
2405 edit_backspace (edit, 1);
2406 edit_insert (edit, '\t');
2407 } else {
2408 insert_spaces_tab (edit, 1);
2410 return;
2413 if (option_fill_tabs_with_spaces) {
2414 insert_spaces_tab (edit, 0);
2415 } else {
2416 edit_insert (edit, '\t');
2420 static void check_and_wrap_line (WEdit * edit)
2422 int curs, c;
2423 if (!option_typewriter_wrap)
2424 return;
2425 edit_update_curs_col (edit);
2426 if (edit->curs_col < option_word_wrap_line_length)
2427 return;
2428 curs = edit->curs1;
2429 for (;;) {
2430 curs--;
2431 c = edit_get_byte (edit, curs);
2432 if (c == '\n' || curs <= 0) {
2433 edit_insert (edit, '\n');
2434 return;
2436 if (c == ' ' || c == '\t') {
2437 int current = edit->curs1;
2438 edit_cursor_move (edit, curs - edit->curs1 + 1);
2439 edit_insert (edit, '\n');
2440 edit_cursor_move (edit, current - edit->curs1 + 1);
2441 return;
2446 static inline void edit_execute_macro (WEdit *edit, struct macro macro[], int n);
2448 void edit_push_key_press (WEdit * edit)
2450 edit_push_action (edit, KEY_PRESS + edit->start_display);
2451 if (edit->mark2 == -1)
2452 edit_push_action (edit, MARK_1 + edit->mark1);
2455 /* this find the matching bracket in either direction, and sets edit->bracket */
2456 static long edit_get_bracket (WEdit * edit, int in_screen, unsigned long furthest_bracket_search)
2458 const char * const b = "{}{[][()(", *p;
2459 int i = 1, a, inc = -1, c, d, n = 0;
2460 unsigned long j = 0;
2461 long q;
2462 edit_update_curs_row (edit);
2463 c = edit_get_byte (edit, edit->curs1);
2464 p = strchr (b, c);
2465 /* no limit */
2466 if (!furthest_bracket_search)
2467 furthest_bracket_search--;
2468 /* not on a bracket at all */
2469 if (!p)
2470 return -1;
2471 /* the matching bracket */
2472 d = p[1];
2473 /* going left or right? */
2474 if (strchr ("{[(", c))
2475 inc = 1;
2476 for (q = edit->curs1 + inc;; q += inc) {
2477 /* out of buffer? */
2478 if (q >= edit->last_byte || q < 0)
2479 break;
2480 a = edit_get_byte (edit, q);
2481 /* don't want to eat CPU */
2482 if (j++ > furthest_bracket_search)
2483 break;
2484 /* out of screen? */
2485 if (in_screen) {
2486 if (q < edit->start_display)
2487 break;
2488 /* count lines if searching downward */
2489 if (inc > 0 && a == '\n')
2490 if (n++ >= edit->num_widget_lines - edit->curs_row) /* out of screen */
2491 break;
2493 /* count bracket depth */
2494 i += (a == c) - (a == d);
2495 /* return if bracket depth is zero */
2496 if (!i)
2497 return q;
2499 /* no match */
2500 return -1;
2503 static long last_bracket = -1;
2505 void edit_find_bracket (WEdit * edit)
2507 edit->bracket = edit_get_bracket (edit, 1, 10000);
2508 if (last_bracket != edit->bracket)
2509 edit->force |= REDRAW_PAGE;
2510 last_bracket = edit->bracket;
2513 static inline void
2514 edit_goto_matching_bracket (WEdit *edit)
2516 long q;
2518 q = edit_get_bracket (edit, 0, 0);
2519 if (q >= 0) {
2520 edit->bracket = edit->curs1;
2521 edit->force |= REDRAW_PAGE;
2522 edit_cursor_move (edit, q - edit->curs1);
2527 * This executes a command as though the user initiated it through a key
2528 * press. Callback with WIDGET_KEY as a message calls this after
2529 * translating the key press. This function can be used to pass any
2530 * command to the editor. Note that the screen wouldn't update
2531 * automatically. Either of command or char_for_insertion must be
2532 * passed as -1. Commands are executed, and char_for_insertion is
2533 * inserted at the cursor.
2535 void
2536 edit_execute_key_command (WEdit *edit, unsigned long command, int char_for_insertion)
2538 if (command == CK_Begin_Record_Macro) {
2539 edit->macro_i = 0;
2540 edit->force |= REDRAW_CHAR_ONLY | REDRAW_LINE;
2541 return;
2543 if (command == CK_End_Record_Macro && edit->macro_i != -1) {
2544 edit->force |= REDRAW_COMPLETELY;
2545 edit_save_macro_cmd (edit, edit->macro, edit->macro_i);
2546 edit->macro_i = -1;
2547 return;
2549 if (edit->macro_i >= 0 && edit->macro_i < MAX_MACRO_LENGTH - 1) {
2550 edit->macro[edit->macro_i].command = command;
2551 edit->macro[edit->macro_i++].ch = char_for_insertion;
2553 /* record the beginning of a set of editing actions initiated by a key press */
2554 if (command != CK_Undo && command != CK_Ext_Mode)
2555 edit_push_key_press (edit);
2557 edit_execute_cmd (edit, command, char_for_insertion);
2558 if (column_highlighting)
2559 edit->force |= REDRAW_PAGE;
2562 static const char * const shell_cmd[] = SHELL_COMMANDS_i;
2565 This executes a command at a lower level than macro recording.
2566 It also does not push a key_press onto the undo stack. This means
2567 that if it is called many times, a single undo command will undo
2568 all of them. It also does not check for the Undo command.
2570 void
2571 edit_execute_cmd (WEdit *edit, unsigned long command, int char_for_insertion)
2573 edit->force |= REDRAW_LINE;
2575 /* The next key press will unhighlight the found string, so update
2576 * the whole page */
2577 if (edit->found_len || column_highlighting)
2578 edit->force |= REDRAW_PAGE;
2580 if (command / 100 == 6) { /* a highlight command like shift-arrow */
2581 column_highlighting = 0;
2582 if (!edit->highlight
2583 || (edit->mark2 != -1 && edit->mark1 != edit->mark2)) {
2584 edit_mark_cmd (edit, 1); /* clear */
2585 edit_mark_cmd (edit, 0); /* marking on */
2587 edit->highlight = 1;
2588 } else { /* any other command */
2589 if (edit->highlight)
2590 edit_mark_cmd (edit, 0); /* clear */
2591 edit->highlight = 0;
2594 /* first check for undo */
2595 if (command == CK_Undo) {
2596 edit_do_undo (edit);
2597 edit->found_len = 0;
2598 edit->prev_col = edit_get_col (edit);
2599 edit->search_start = edit->curs1;
2600 return;
2603 /* An ordinary key press */
2604 if (char_for_insertion >= 0) {
2605 if (edit->overwrite) {
2606 if (edit_get_byte (edit, edit->curs1) != '\n')
2607 edit_delete (edit, 0);
2609 if ( option_cursor_beyond_eol && edit->over_col > 0 )
2610 edit_insert_over (edit);
2611 #ifdef HAVE_CHARSET
2612 if ( char_for_insertion > 255 && utf8_display == 0 ) {
2613 unsigned char str[6 + 1];
2614 size_t i = 0;
2615 int res = g_unichar_to_utf8 (char_for_insertion, (char *)str);
2616 if ( res == 0 ) {
2617 str[0] = '.';
2618 str[1] = '\0';
2619 } else {
2620 str[res] = '\0';
2622 while ( str[i] != 0 && i<=6) {
2623 char_for_insertion = str[i];
2624 edit_insert (edit, char_for_insertion);
2625 i++;
2627 } else
2628 #endif
2629 edit_insert (edit, char_for_insertion);
2631 if (option_auto_para_formatting) {
2632 format_paragraph (edit, 0);
2633 edit->force |= REDRAW_PAGE;
2634 } else
2635 check_and_wrap_line (edit);
2636 edit->found_len = 0;
2637 edit->prev_col = edit_get_col (edit);
2638 edit->search_start = edit->curs1;
2639 edit_find_bracket (edit);
2640 return;
2643 switch (command) {
2644 case CK_Begin_Page:
2645 case CK_End_Page:
2646 case CK_Begin_Page_Highlight:
2647 case CK_End_Page_Highlight:
2648 case CK_Word_Left:
2649 case CK_Word_Right:
2650 case CK_Up:
2651 case CK_Down:
2652 case CK_Left:
2653 case CK_Right:
2654 if ( edit->mark2 >= 0 ) {
2655 if ( !option_persistent_selections ) {
2656 if (column_highlighting)
2657 edit_push_action (edit, COLUMN_ON);
2658 column_highlighting = 0;
2659 edit_mark_cmd (edit, 1);
2664 switch (command) {
2665 case CK_Begin_Page:
2666 case CK_End_Page:
2667 case CK_Begin_Page_Highlight:
2668 case CK_End_Page_Highlight:
2669 case CK_Word_Left:
2670 case CK_Word_Right:
2671 case CK_Up:
2672 case CK_Down:
2673 case CK_Word_Left_Highlight:
2674 case CK_Word_Right_Highlight:
2675 case CK_Up_Highlight:
2676 case CK_Down_Highlight:
2677 case CK_Up_Alt_Highlight:
2678 case CK_Down_Alt_Highlight:
2679 if (edit->mark2 == -1)
2680 break; /*marking is following the cursor: may need to highlight a whole line */
2681 case CK_Left:
2682 case CK_Right:
2683 case CK_Left_Highlight:
2684 case CK_Right_Highlight:
2685 edit->force |= REDRAW_CHAR_ONLY;
2688 /* basic cursor key commands */
2689 switch (command) {
2690 case CK_BackSpace:
2691 /* if non persistent selection and text selected */
2692 if ( !option_persistent_selections ) {
2693 if ( edit->mark1 != edit->mark2 ) {
2694 edit_block_delete_cmd (edit);
2695 break;
2698 if ( option_cursor_beyond_eol && edit->over_col > 0 ) {
2699 edit->over_col--;
2700 break;
2702 if (option_backspace_through_tabs && is_in_indent (edit)) {
2703 while (edit_get_byte (edit, edit->curs1 - 1) != '\n'
2704 && edit->curs1 > 0)
2705 edit_backspace (edit, 1);
2706 break;
2707 } else {
2708 if (option_fake_half_tabs) {
2709 int i;
2710 if (is_in_indent (edit) && right_of_four_spaces (edit)) {
2711 for (i = 0; i < HALF_TAB_SIZE; i++)
2712 edit_backspace (edit, 1);
2713 break;
2717 edit_backspace (edit, 0);
2718 break;
2719 case CK_Delete:
2720 /* if non persistent selection and text selected */
2721 if ( !option_persistent_selections ) {
2722 if ( edit->mark1 != edit->mark2 ) {
2723 edit_block_delete_cmd (edit);
2724 break;
2728 if ( option_cursor_beyond_eol && edit->over_col > 0 )
2729 edit_insert_over (edit);
2731 if (option_fake_half_tabs) {
2732 int i;
2733 if (is_in_indent (edit) && left_of_four_spaces (edit)) {
2734 for (i = 1; i <= HALF_TAB_SIZE; i++)
2735 edit_delete (edit, 1);
2736 break;
2739 edit_delete (edit, 0);
2740 break;
2741 case CK_Delete_Word_Left:
2742 edit->over_col = 0;
2743 edit_left_delete_word (edit);
2744 break;
2745 case CK_Delete_Word_Right:
2746 if ( option_cursor_beyond_eol && edit->over_col > 0 )
2747 edit_insert_over (edit);
2749 edit_right_delete_word (edit);
2750 break;
2751 case CK_Delete_Line:
2752 edit_delete_line (edit);
2753 break;
2754 case CK_Delete_To_Line_End:
2755 edit_delete_to_line_end (edit);
2756 break;
2757 case CK_Delete_To_Line_Begin:
2758 edit_delete_to_line_begin (edit);
2759 break;
2760 case CK_Enter:
2761 edit->over_col = 0;
2762 if (option_auto_para_formatting) {
2763 edit_double_newline (edit);
2764 if (option_return_does_auto_indent)
2765 edit_auto_indent (edit);
2766 format_paragraph (edit, 0);
2767 } else {
2768 edit_insert (edit, '\n');
2769 if (option_return_does_auto_indent) {
2770 edit_auto_indent (edit);
2773 break;
2774 case CK_Return:
2775 edit_insert (edit, '\n');
2776 break;
2778 case CK_Page_Up_Alt_Highlight:
2779 column_highlighting = 1;
2780 case CK_Page_Up:
2781 case CK_Page_Up_Highlight:
2782 edit_move_up (edit, edit->num_widget_lines - 1, 1);
2783 break;
2784 case CK_Page_Down_Alt_Highlight:
2785 column_highlighting = 1;
2786 case CK_Page_Down:
2787 case CK_Page_Down_Highlight:
2788 edit_move_down (edit, edit->num_widget_lines - 1, 1);
2789 break;
2790 case CK_Left_Alt_Highlight:
2791 column_highlighting = 1;
2792 case CK_Left:
2793 case CK_Left_Highlight:
2794 if (option_fake_half_tabs) {
2795 if (is_in_indent (edit) && right_of_four_spaces (edit)) {
2796 if ( option_cursor_beyond_eol && edit->over_col > 0)
2797 edit->over_col--;
2798 else
2799 edit_cursor_move (edit, -HALF_TAB_SIZE);
2800 edit->force &= (0xFFF - REDRAW_CHAR_ONLY);
2801 break;
2804 edit_left_char_move_cmd (edit);
2805 break;
2806 case CK_Right_Alt_Highlight:
2807 column_highlighting = 1;
2808 case CK_Right:
2809 case CK_Right_Highlight:
2810 if (option_fake_half_tabs) {
2811 if (is_in_indent (edit) && left_of_four_spaces (edit)) {
2812 edit_cursor_move (edit, HALF_TAB_SIZE);
2813 edit->force &= (0xFFF - REDRAW_CHAR_ONLY);
2814 break;
2817 edit_right_char_move_cmd (edit);
2818 break;
2819 case CK_Begin_Page:
2820 case CK_Begin_Page_Highlight:
2821 edit_begin_page (edit);
2822 break;
2823 case CK_End_Page:
2824 case CK_End_Page_Highlight:
2825 edit_end_page (edit);
2826 break;
2827 case CK_Word_Left:
2828 case CK_Word_Left_Highlight:
2829 edit->over_col = 0;
2830 edit_left_word_move_cmd (edit);
2831 break;
2832 case CK_Word_Right:
2833 case CK_Word_Right_Highlight:
2834 edit->over_col = 0;
2835 edit_right_word_move_cmd (edit);
2836 break;
2837 case CK_Up_Alt_Highlight:
2838 column_highlighting = 1;
2839 case CK_Up:
2840 case CK_Up_Highlight:
2841 edit_move_up (edit, 1, 0);
2842 break;
2843 case CK_Down_Alt_Highlight:
2844 column_highlighting = 1;
2845 case CK_Down:
2846 case CK_Down_Highlight:
2847 edit_move_down (edit, 1, 0);
2848 break;
2849 case CK_Paragraph_Up_Alt_Highlight:
2850 column_highlighting = 1;
2851 case CK_Paragraph_Up:
2852 case CK_Paragraph_Up_Highlight:
2853 edit_move_up_paragraph (edit, 0);
2854 break;
2855 case CK_Paragraph_Down_Alt_Highlight:
2856 column_highlighting = 1;
2857 case CK_Paragraph_Down:
2858 case CK_Paragraph_Down_Highlight:
2859 edit_move_down_paragraph (edit, 0);
2860 break;
2861 case CK_Scroll_Up_Alt_Highlight:
2862 column_highlighting = 1;
2863 case CK_Scroll_Up:
2864 case CK_Scroll_Up_Highlight:
2865 edit_move_up (edit, 1, 1);
2866 break;
2867 case CK_Scroll_Down_Alt_Highlight:
2868 column_highlighting = 1;
2869 case CK_Scroll_Down:
2870 case CK_Scroll_Down_Highlight:
2871 edit_move_down (edit, 1, 1);
2872 break;
2873 case CK_Home:
2874 case CK_Home_Highlight:
2875 edit_cursor_to_bol (edit);
2876 break;
2877 case CK_End:
2878 case CK_End_Highlight:
2879 edit_cursor_to_eol (edit);
2880 break;
2881 case CK_Tab:
2882 /* if text marked shift block */
2883 if ( edit->mark1 != edit->mark2 && !option_persistent_selections ) {
2884 if (edit->mark2 < 0)
2885 edit_mark_cmd (edit, 0);
2886 edit_move_block_to_right (edit);
2887 } else {
2888 if ( option_cursor_beyond_eol )
2889 edit_insert_over (edit);
2890 edit_tab_cmd (edit);
2891 if (option_auto_para_formatting) {
2892 format_paragraph (edit, 0);
2893 edit->force |= REDRAW_PAGE;
2894 } else {
2895 check_and_wrap_line (edit);
2898 break;
2900 case CK_Toggle_Insert:
2901 edit->overwrite = (edit->overwrite == 0);
2902 break;
2904 case CK_Mark:
2905 if (edit->mark2 >= 0) {
2906 if (column_highlighting)
2907 edit_push_action (edit, COLUMN_ON);
2908 column_highlighting = 0;
2910 edit_mark_cmd (edit, 0);
2911 break;
2912 case CK_Column_Mark:
2913 if (!column_highlighting)
2914 edit_push_action (edit, COLUMN_OFF);
2915 column_highlighting = 1;
2916 edit_mark_cmd (edit, 0);
2917 break;
2918 case CK_Unmark:
2919 if (column_highlighting)
2920 edit_push_action (edit, COLUMN_ON);
2921 column_highlighting = 0;
2922 edit_mark_cmd (edit, 1);
2923 break;
2925 case CK_Toggle_Line_State:
2926 option_line_state = !option_line_state;
2927 if ( option_line_state ) {
2928 option_line_state_width = LINE_STATE_WIDTH;
2929 } else {
2930 option_line_state_width = 0;
2932 edit->force |= REDRAW_PAGE;
2933 break;
2935 case CK_Toggle_Bookmark:
2936 book_mark_clear (edit, edit->curs_line, BOOK_MARK_FOUND_COLOR);
2937 if (book_mark_query_color (edit, edit->curs_line, BOOK_MARK_COLOR))
2938 book_mark_clear (edit, edit->curs_line, BOOK_MARK_COLOR);
2939 else
2940 book_mark_insert (edit, edit->curs_line, BOOK_MARK_COLOR);
2941 break;
2942 case CK_Flush_Bookmarks:
2943 book_mark_flush (edit, BOOK_MARK_COLOR);
2944 book_mark_flush (edit, BOOK_MARK_FOUND_COLOR);
2945 edit->force |= REDRAW_PAGE;
2946 break;
2947 case CK_Next_Bookmark:
2948 if (edit->book_mark) {
2949 struct _book_mark *p;
2950 p = (struct _book_mark *) book_mark_find (edit,
2951 edit->curs_line);
2952 if (p->next) {
2953 p = p->next;
2954 if (p->line >= edit->start_line + edit->num_widget_lines
2955 || p->line < edit->start_line)
2956 edit_move_display (edit,
2957 p->line -
2958 edit->num_widget_lines / 2);
2959 edit_move_to_line (edit, p->line);
2962 break;
2963 case CK_Prev_Bookmark:
2964 if (edit->book_mark) {
2965 struct _book_mark *p;
2966 p = (struct _book_mark *) book_mark_find (edit,
2967 edit->curs_line);
2968 while (p->line == edit->curs_line)
2969 if (p->prev)
2970 p = p->prev;
2971 if (p->line >= 0) {
2972 if (p->line >= edit->start_line + edit->num_widget_lines
2973 || p->line < edit->start_line)
2974 edit_move_display (edit,
2975 p->line -
2976 edit->num_widget_lines / 2);
2977 edit_move_to_line (edit, p->line);
2980 break;
2982 case CK_Beginning_Of_Text:
2983 case CK_Beginning_Of_Text_Highlight:
2984 edit_move_to_top (edit);
2985 break;
2986 case CK_End_Of_Text:
2987 case CK_End_Of_Text_Highlight:
2988 edit_move_to_bottom (edit);
2989 break;
2991 case CK_Copy:
2992 if ( option_cursor_beyond_eol && edit->over_col > 0 )
2993 edit_insert_over (edit);
2994 edit_block_copy_cmd (edit);
2995 break;
2996 case CK_Remove:
2997 edit_block_delete_cmd (edit);
2998 break;
2999 case CK_Move:
3000 if ( option_cursor_beyond_eol && edit->over_col > 0 )
3001 edit_insert_over (edit);
3002 edit_block_move_cmd (edit);
3003 break;
3005 case CK_Shift_Block_Left:
3006 if (edit->mark1 != edit->mark2)
3007 edit_move_block_to_left (edit);
3008 break;
3009 case CK_Shift_Block_Right:
3010 if (edit->mark1 != edit->mark2)
3011 edit_move_block_to_right (edit);
3012 break;
3013 case CK_XStore:
3014 edit_copy_to_X_buf_cmd (edit);
3015 break;
3016 case CK_XCut:
3017 edit_cut_to_X_buf_cmd (edit);
3018 break;
3019 case CK_XPaste:
3020 if ( option_cursor_beyond_eol && edit->over_col > 0 )
3021 edit_insert_over (edit);
3022 edit_paste_from_X_buf_cmd (edit);
3023 break;
3024 case CK_Selection_History:
3025 edit_paste_from_history (edit);
3026 break;
3028 case CK_Save_As:
3029 edit_save_as_cmd (edit);
3030 break;
3031 case CK_Save:
3032 edit_save_confirm_cmd (edit);
3033 break;
3034 case CK_Load:
3035 edit_load_cmd (edit, EDIT_FILE_COMMON);
3036 break;
3037 case CK_Save_Block:
3038 edit_save_block_cmd (edit);
3039 break;
3040 case CK_Insert_File:
3041 edit_insert_file_cmd (edit);
3042 break;
3044 case CK_Load_Prev_File:
3045 edit_load_back_cmd (edit);
3046 break;
3047 case CK_Load_Next_File:
3048 edit_load_forward_cmd (edit);
3049 break;
3051 case CK_Load_Syntax_File:
3052 edit_load_cmd (edit, EDIT_FILE_SYNTAX);
3053 break;
3054 case CK_Choose_Syntax:
3055 edit_syntax_dialog ();
3056 break;
3058 case CK_Load_Menu_File:
3059 edit_load_cmd (edit, EDIT_FILE_MENU);
3060 break;
3062 case CK_Toggle_Syntax:
3063 if ((option_syntax_highlighting ^= 1) == 1)
3064 edit_load_syntax (edit, NULL, option_syntax_type);
3065 edit->force |= REDRAW_PAGE;
3066 break;
3068 case CK_Toggle_Tab_TWS:
3069 enable_show_tabs_tws ^= 1;
3070 edit->force |= REDRAW_PAGE;
3071 break;
3073 case CK_Find:
3074 edit_search_cmd (edit, 0);
3075 break;
3076 case CK_Find_Again:
3077 edit_search_cmd (edit, 1);
3078 break;
3079 case CK_Replace:
3080 edit_replace_cmd (edit, 0);
3081 break;
3082 case CK_Replace_Again:
3083 edit_replace_cmd (edit, 1);
3084 break;
3085 case CK_Complete_Word:
3086 /* if text marked shift block */
3087 if ( edit->mark1 != edit->mark2 && !option_persistent_selections ) {
3088 edit_move_block_to_left (edit);
3089 } else {
3090 edit_complete_word_cmd (edit);
3092 break;
3093 case CK_Find_Definition:
3094 edit_get_match_keyword_cmd (edit);
3095 break;
3096 case CK_Quit:
3097 dlg_stop (edit->widget.parent);
3098 break;
3099 case CK_New:
3100 edit_new_cmd (edit);
3101 break;
3102 case CK_Help:
3103 edit_help_cmd (edit);
3104 break;
3105 case CK_Refresh:
3106 edit_refresh_cmd (edit);
3107 break;
3108 case CK_SaveSetupCmd:
3109 save_setup_cmd ();
3110 break;
3111 case CK_About:
3112 query_dialog (_(" About "),
3113 _("\n Cooledit v3.11.5\n\n"
3114 " Copyright (C) 1996 the Free Software Foundation\n\n"
3115 " A user friendly text editor written\n"
3116 " for the Midnight Commander.\n"), D_NORMAL,
3117 1, _("&OK"));
3118 break;
3119 case CK_LearnKeys:
3120 learn_keys ();
3121 break;
3122 case CK_Edit_Options:
3123 edit_options_dialog ();
3124 break;
3125 case CK_Edit_Save_Mode:
3126 menu_save_mode_cmd ();
3127 break;
3128 case CK_Date:
3130 char s[BUF_MEDIUM];
3131 /* fool gcc to prevent a Y2K warning */
3132 char time_format[] = "_c";
3133 time_format[0] = '%';
3135 FMT_LOCALTIME_CURRENT(s, sizeof(s), time_format);
3136 edit_print_string (edit, s);
3137 edit->force |= REDRAW_PAGE;
3138 break;
3140 break;
3141 case CK_Goto:
3142 edit_goto_cmd (edit);
3143 break;
3144 case CK_Paragraph_Format:
3145 format_paragraph (edit, 1);
3146 edit->force |= REDRAW_PAGE;
3147 break;
3148 case CK_Delete_Macro:
3149 edit_delete_macro_cmd (edit);
3150 break;
3151 case CK_Match_Bracket:
3152 edit_goto_matching_bracket (edit);
3153 break;
3154 case CK_User_Menu:
3155 user_menu (edit);
3156 break;
3157 case CK_Sort:
3158 edit_sort_cmd (edit);
3159 break;
3160 case CK_ExtCmd:
3161 edit_ext_cmd (edit);
3162 break;
3163 case CK_Mail:
3164 edit_mail_dialog (edit);
3165 break;
3166 case CK_Shell:
3167 view_other_cmd ();
3168 break;
3169 case CK_SelectCodepage:
3170 edit_select_codepage_cmd (edit);
3171 break;
3172 case CK_Insert_Literal:
3173 edit_insert_literal_cmd (edit);
3174 break;
3175 case CK_Execute_Macro:
3176 edit_execute_macro_cmd (edit);
3177 break;
3178 case CK_Begin_End_Macro:
3179 edit_begin_end_macro_cmd (edit);
3180 break;
3181 case CK_Ext_Mode:
3182 edit->extmod = 1;
3183 break;
3184 default:
3185 break;
3188 /* CK_Pipe_Block */
3189 if ((command / 1000) == 1) /* a shell command */
3190 edit_block_process_cmd (edit, shell_cmd[command - 1000], 1);
3191 if (command > CK_Macro (0) && command <= CK_Last_Macro) { /* a macro command */
3192 struct macro m[MAX_MACRO_LENGTH];
3193 int nm;
3194 if (edit_load_macro_cmd (edit, m, &nm, command - 2000))
3195 edit_execute_macro (edit, m, nm);
3198 /* keys which must set the col position, and the search vars */
3199 switch (command) {
3200 case CK_Find:
3201 case CK_Find_Again:
3202 case CK_Replace:
3203 case CK_Replace_Again:
3204 case CK_Complete_Word:
3205 edit->prev_col = edit_get_col (edit);
3206 break;
3207 case CK_Up:
3208 case CK_Up_Highlight:
3209 case CK_Up_Alt_Highlight:
3210 case CK_Down:
3211 case CK_Down_Highlight:
3212 case CK_Down_Alt_Highlight:
3213 case CK_Page_Up:
3214 case CK_Page_Up_Highlight:
3215 case CK_Page_Up_Alt_Highlight:
3216 case CK_Page_Down:
3217 case CK_Page_Down_Highlight:
3218 case CK_Page_Down_Alt_Highlight:
3219 case CK_Beginning_Of_Text:
3220 case CK_Beginning_Of_Text_Highlight:
3221 case CK_End_Of_Text:
3222 case CK_End_Of_Text_Highlight:
3223 case CK_Paragraph_Up:
3224 case CK_Paragraph_Up_Highlight:
3225 case CK_Paragraph_Up_Alt_Highlight:
3226 case CK_Paragraph_Down:
3227 case CK_Paragraph_Down_Highlight:
3228 case CK_Paragraph_Down_Alt_Highlight:
3229 case CK_Scroll_Up:
3230 case CK_Scroll_Up_Highlight:
3231 case CK_Scroll_Up_Alt_Highlight:
3232 case CK_Scroll_Down:
3233 case CK_Scroll_Down_Highlight:
3234 case CK_Scroll_Down_Alt_Highlight:
3235 edit->search_start = edit->curs1;
3236 edit->found_len = 0;
3237 break;
3238 default:
3239 edit->found_len = 0;
3240 edit->prev_col = edit_get_col (edit);
3241 edit->search_start = edit->curs1;
3243 edit_find_bracket (edit);
3245 if (option_auto_para_formatting) {
3246 switch (command) {
3247 case CK_BackSpace:
3248 case CK_Delete:
3249 case CK_Delete_Word_Left:
3250 case CK_Delete_Word_Right:
3251 case CK_Delete_To_Line_End:
3252 case CK_Delete_To_Line_Begin:
3253 format_paragraph (edit, 0);
3254 edit->force |= REDRAW_PAGE;
3260 static void
3261 edit_execute_macro (WEdit *edit, struct macro macro[], int n)
3263 int i = 0;
3265 if (edit->macro_depth++ > 256) {
3266 edit_error_dialog (_("Error"), _("Macro recursion is too deep"));
3267 edit->macro_depth--;
3268 return;
3270 edit->force |= REDRAW_PAGE;
3271 for (; i < n; i++) {
3272 edit_execute_cmd (edit, macro[i].command, macro[i].ch);
3274 edit_update_screen (edit);
3275 edit->macro_depth--;
3278 /* User edit menu, like user menu (F2) but only in editor. */
3279 static void
3280 user_menu (WEdit * edit)
3282 char *block_file;
3283 int nomark;
3284 long start_mark, end_mark;
3285 struct stat status;
3287 block_file = concat_dir_and_file (home_dir, EDIT_BLOCK_FILE);
3289 nomark = eval_marks (edit, &start_mark, &end_mark);
3290 if (nomark == 0)
3291 edit_save_block (edit, block_file, start_mark, end_mark);
3293 /* run shell scripts from menu */
3294 user_menu_cmd (edit);
3296 if ((mc_stat (block_file, &status) == 0) && (status.st_size != 0)) {
3297 int rc = 0;
3298 FILE *fd;
3300 if (nomark == 0) {
3301 /* i.e. we have marked block */
3302 rc = edit_block_delete_cmd (edit);
3305 if (rc == 0)
3306 edit_insert_file (edit, block_file);
3308 /* truncate block file */
3309 fd = fopen (block_file, "w");
3310 if (fd != NULL)
3311 fclose (fd);
3313 edit_refresh_cmd (edit);
3314 edit->force |= REDRAW_COMPLETELY;
3316 g_free (block_file);
3319 void
3320 edit_stack_init (void)
3322 for (edit_stack_iterator = 0;
3323 edit_stack_iterator < MAX_HISTORY_MOVETO;
3324 edit_stack_iterator++ ) {
3325 edit_history_moveto[edit_stack_iterator].filename = NULL;
3326 edit_history_moveto[edit_stack_iterator].line = -1;
3329 edit_stack_iterator = 0;
3332 void
3333 edit_stack_free (void)
3335 for (edit_stack_iterator = 0;
3336 edit_stack_iterator < MAX_HISTORY_MOVETO;
3337 edit_stack_iterator++)
3338 g_free (edit_history_moveto[edit_stack_iterator].filename);
3341 /* move i lines */
3342 void edit_move_up (WEdit * edit, unsigned long i, int scroll)
3344 edit_move_updown (edit, i, scroll, TRUE);
3347 /* move i lines */
3348 void edit_move_down (WEdit * edit, unsigned long i, int scroll)
3350 edit_move_updown (edit, i, scroll, FALSE);