123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741 |
- /* editor text drawing.
- Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006,
- 2007 Free Software Foundation, Inc.
- Authors: 1996, 1997 Paul Sheer
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301, USA.
- */
- /** \file
- * \brief Source: editor text drawing
- * \author Paul Sheer
- * \date 1996, 1997
- */
- #include <config.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <stdarg.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <string.h>
- #include <ctype.h>
- #include <errno.h>
- #include <sys/stat.h>
- #include "../src/global.h"
- #include "edit-impl.h"
- #include "edit-widget.h"
- #define MAX_LINE_LEN 1024
- #include "../src/tty/tty.h" /* tty_printf() */
- #include "../src/skin/skin.h"
- #include "../src/tty/key.h" /* is_idle() */
- #include "../src/widget.h" /* buttonbar_redraw() */
- #include "../src/charsets.h"
- #include "../src/strutil.h" /* utf string functions */
- #include "../src/main.h" /* source_codepage */
- /* Text styles */
- #define MOD_ABNORMAL (1 << 8)
- #define MOD_BOLD (1 << 9)
- #define MOD_MARKED (1 << 10)
- #define MOD_CURSOR (1 << 11)
- #define MOD_WHITESPACE (1 << 12)
- #define FONT_OFFSET_X 0
- #define FONT_OFFSET_Y 0
- #define FIXED_FONT 1
- #define FONT_PIX_PER_LINE 1
- #define FONT_MEAN_WIDTH 1
- /* Toggles statusbar draw style */
- int simple_statusbar = 0;
- static void status_string (WEdit * edit, char *s, int w)
- {
- char byte_str[16];
- unsigned char cur_byte = 0;
- unsigned int cur_utf = 0;
- int cw = 1;
- /*
- * If we are at the end of file, print <EOF>,
- * otherwise print the current character as is (if printable),
- * as decimal and as hex.
- */
- if (edit->curs1 < edit->last_byte) {
- if ( !edit->utf8 ) {
- cur_byte = edit_get_byte (edit, edit->curs1);
-
- g_snprintf (byte_str, sizeof (byte_str), "%4d 0x%03X",
- (int) cur_byte,
- (unsigned) cur_byte);
- } else {
- cur_utf = edit_get_utf (edit, edit->curs1, &cw);
- if ( cw > 0 ) {
- g_snprintf (byte_str, sizeof (byte_str), "%04d 0x%03X",
- (unsigned) cur_utf,
- (unsigned) cur_utf);
- } else {
- cur_utf = edit_get_byte (edit, edit->curs1);
- g_snprintf (byte_str, sizeof (byte_str), "%04d 0x%03X",
- (int) cur_utf,
- (unsigned) cur_utf);
- }
-
- }
- } else {
- strcpy (byte_str, "<EOF> ");
- }
- /* The field lengths just prevent the status line from shortening too much */
- if (simple_statusbar)
- g_snprintf (s, w,
- "%c%c%c%c %3ld %5ld/%ld %6ld/%ld %s %s",
- edit->mark1 != edit->mark2 ? ( column_highlighting ? 'C' : 'B') : '-',
- edit->modified ? 'M' : '-',
- edit->macro_i < 0 ? '-' : 'R',
- edit->overwrite == 0 ? '-' : 'O',
- edit->curs_col + edit->over_col,
- edit->curs_line + 1,
- edit->total_lines + 1,
- edit->curs1,
- edit->last_byte,
- byte_str,
- #ifdef HAVE_CHARSET
- source_codepage >= 0 ? get_codepage_id (source_codepage) : ""
- #else
- ""
- #endif
- );
- else
- g_snprintf (s, w,
- "[%c%c%c%c] %2ld L:[%3ld+%2ld %3ld/%3ld] *(%-4ld/%4ldb) %s %s",
- edit->mark1 != edit->mark2 ? ( column_highlighting ? 'C' : 'B') : '-',
- edit->modified ? 'M' : '-',
- edit->macro_i < 0 ? '-' : 'R',
- edit->overwrite == 0 ? '-' : 'O',
- edit->curs_col + edit->over_col,
- edit->start_line + 1,
- edit->curs_row,
- edit->curs_line + 1,
- edit->total_lines + 1,
- edit->curs1,
- edit->last_byte,
- byte_str,
- #ifdef HAVE_CHARSET
- source_codepage >= 0 ? get_codepage_id (source_codepage) : ""
- #else
- ""
- #endif
- );
- }
- static inline void
- printwstr (const char *s, int len)
- {
- if (len > 0)
- tty_printf ("%-*.*s", len, len, s);
- }
- /* Draw the status line at the top of the widget. The size of the filename
- * field varies depending on the width of the screen and the length of
- * the filename. */
- void
- edit_status (WEdit *edit)
- {
- const int w = edit->widget.cols;
- const size_t status_size = w + 1;
- char * const status = g_malloc (status_size);
- int status_len;
- const char *fname = "";
- int fname_len;
- const int gap = 3; /* between the filename and the status */
- const int right_gap = 5; /* at the right end of the screen */
- const int preferred_fname_len = 16;
- status_string (edit, status, status_size);
- status_len = (int) str_term_width1 (status);
- if (edit->filename)
- fname = edit->filename;
- fname_len = str_term_width1 (fname);
- if (fname_len < preferred_fname_len)
- fname_len = preferred_fname_len;
- if (fname_len + gap + status_len + right_gap >= w) {
- if (preferred_fname_len + gap + status_len + right_gap >= w)
- fname_len = preferred_fname_len;
- else
- fname_len = w - (gap + status_len + right_gap);
- fname = str_trunc (fname, fname_len);
- }
- widget_move (edit, 0, 0);
- tty_setcolor (SELECTED_COLOR);
- printwstr (fname, fname_len + gap);
- printwstr (status, w - (fname_len + gap));
- if (simple_statusbar && edit->widget.cols > 30) {
- size_t percent;
- if (edit->total_lines + 1 != 0)
- percent = (edit->curs_line + 1) * 100 / (edit->total_lines + 1);
- else
- percent = 100;
- widget_move (edit, 0, edit->widget.cols - 5);
- tty_printf (" %3d%%", percent);
- }
- tty_setcolor (EDITOR_NORMAL_COLOR);
- g_free (status);
- }
- /* this scrolls the text so that cursor is on the screen */
- void edit_scroll_screen_over_cursor (WEdit * edit)
- {
- int p;
- int outby;
- int b_extreme, t_extreme, l_extreme, r_extreme;
- if (edit->num_widget_lines <= 0 || edit->num_widget_columns <= 0)
- return;
- edit->num_widget_columns -= EDIT_TEXT_HORIZONTAL_OFFSET + option_line_state_width;
- edit->num_widget_lines -= EDIT_TEXT_VERTICAL_OFFSET - 1;
- r_extreme = EDIT_RIGHT_EXTREME;
- l_extreme = EDIT_LEFT_EXTREME;
- b_extreme = EDIT_BOTTOM_EXTREME;
- t_extreme = EDIT_TOP_EXTREME;
- if (edit->found_len) {
- b_extreme = max (edit->num_widget_lines / 4, b_extreme);
- t_extreme = max (edit->num_widget_lines / 4, t_extreme);
- }
- if (b_extreme + t_extreme + 1 > edit->num_widget_lines) {
- int n;
- n = b_extreme + t_extreme;
- b_extreme = (b_extreme * (edit->num_widget_lines - 1)) / n;
- t_extreme = (t_extreme * (edit->num_widget_lines - 1)) / n;
- }
- if (l_extreme + r_extreme + 1 > edit->num_widget_columns) {
- int n;
- n = l_extreme + t_extreme;
- l_extreme = (l_extreme * (edit->num_widget_columns - 1)) / n;
- r_extreme = (r_extreme * (edit->num_widget_columns - 1)) / n;
- }
- p = edit_get_col (edit) + edit->over_col;
- edit_update_curs_row (edit);
- outby = p + edit->start_col - edit->num_widget_columns + 1 + (r_extreme + edit->found_len);
- if (outby > 0)
- edit_scroll_right (edit, outby);
- outby = l_extreme - p - edit->start_col;
- if (outby > 0)
- edit_scroll_left (edit, outby);
- p = edit->curs_row;
- outby = p - edit->num_widget_lines + 1 + b_extreme;
- if (outby > 0)
- edit_scroll_downward (edit, outby);
- outby = t_extreme - p;
- if (outby > 0)
- edit_scroll_upward (edit, outby);
- edit_update_curs_row (edit);
- edit->num_widget_lines += EDIT_TEXT_VERTICAL_OFFSET - 1;
- edit->num_widget_columns += EDIT_TEXT_HORIZONTAL_OFFSET + option_line_state_width;
- }
- #define edit_move(x,y) widget_move(edit, y, x);
- struct line_s {
- unsigned int ch;
- unsigned int style;
- };
- static void
- print_to_widget (WEdit *edit, long row, int start_col, int start_col_real,
- long end_col, struct line_s line[], char *status)
- {
- struct line_s *p;
- int x = start_col_real;
- int x1 = start_col + EDIT_TEXT_HORIZONTAL_OFFSET + option_line_state_width;
- int y = row + EDIT_TEXT_VERTICAL_OFFSET;
- int cols_to_skip = abs (x);
- tty_setcolor (EDITOR_NORMAL_COLOR);
- tty_draw_hline (edit->widget.y + y, edit->widget.x + x1,
- ' ', end_col + 1 - start_col);
- if (option_line_state) {
- int i;
- for (i = 0; i < LINE_STATE_WIDTH; i++)
- if (status[i] == '\0')
- status[i] = ' ';
- tty_setcolor (LINE_STATE_COLOR);
- edit_move (x1 + FONT_OFFSET_X - option_line_state_width, y + FONT_OFFSET_Y);
- tty_print_string (status);
- }
- edit_move (x1 + FONT_OFFSET_X, y + FONT_OFFSET_Y);
- p = line;
- while (p->ch) {
- int style;
- unsigned int textchar;
- int color;
- if (cols_to_skip) {
- p++;
- cols_to_skip--;
- continue;
- }
- style = p->style & 0xFF00;
- textchar = p->ch;
- color = p->style >> 16;
- if (style & MOD_ABNORMAL) {
- /* Non-printable - use black background */
- color = 0;
- }
- if (style & MOD_WHITESPACE) {
- if (style & MOD_MARKED) {
- textchar = ' ';
- tty_setcolor (EDITOR_MARKED_COLOR);
- } else {
- #if 0
- if (color != EDITOR_NORMAL_COLOR) {
- textchar = ' ';
- tty_lowlevel_setcolor (color);
- } else
- #endif
- tty_setcolor (EDITOR_WHITESPACE_COLOR);
- }
- } else {
- if (style & MOD_BOLD) {
- tty_setcolor (EDITOR_BOLD_COLOR);
- } else if (style & MOD_MARKED) {
- tty_setcolor (EDITOR_MARKED_COLOR);
- } else {
- tty_lowlevel_setcolor (color);
- }
- }
- tty_print_anychar (textchar);
- p++;
- }
- }
- int visible_tabs = 1, visible_tws = 1;
- /* b is a pointer to the beginning of the line */
- static void
- edit_draw_this_line (WEdit *edit, long b, long row, long start_col,
- long end_col)
- {
- struct line_s line[MAX_LINE_LEN];
- struct line_s *p = line;
- long m1 = 0, m2 = 0, q, c1, c2;
- int col, start_col_real;
- int cw;
- unsigned int c;
- int color;
- int abn_style;
- int i;
- int utf8lag = 0;
- unsigned int cur_line = 0;
- int book_mark = 0;
- char line_stat[LINE_STATE_WIDTH + 1];
- if (row > edit->num_widget_lines - EDIT_TEXT_VERTICAL_OFFSET) {
- return;
- }
- if (book_mark_query_color(edit, edit->start_line + row, BOOK_MARK_COLOR)) {
- book_mark = BOOK_MARK_COLOR;
- } else if (book_mark_query_color(edit, edit->start_line + row, BOOK_MARK_FOUND_COLOR)) {
- book_mark = BOOK_MARK_FOUND_COLOR;
- }
- if (book_mark)
- abn_style = book_mark << 16;
- else
- abn_style = MOD_ABNORMAL;
- end_col -= EDIT_TEXT_HORIZONTAL_OFFSET + option_line_state_width;
- edit_get_syntax_color (edit, b - 1, &color);
- q = edit_move_forward3 (edit, b, start_col - edit->start_col, 0);
- start_col_real = (col =
- (int) edit_move_forward3 (edit, b, 0,
- q)) + edit->start_col;
- if ( option_line_state ) {
- cur_line = edit->start_line + row;
- if ( cur_line <= (unsigned int) edit->total_lines ) {
- g_snprintf (line_stat, LINE_STATE_WIDTH + 1, "%7i ", cur_line + 1);
- } else {
- memset(line_stat, ' ', LINE_STATE_WIDTH);
- line_stat[LINE_STATE_WIDTH] = '\0';
- }
- if (book_mark_query_color (edit, cur_line, BOOK_MARK_COLOR)){
- g_snprintf (line_stat, 2, "*");
- }
- }
- if (col + 16 > -edit->start_col) {
- eval_marks (edit, &m1, &m2);
- if (row <= edit->total_lines - edit->start_line) {
- long tws = 0;
- if (tty_use_colors () && visible_tws) {
- tws = edit_eol (edit, b);
- while (tws > b && ((c = edit_get_byte (edit, tws - 1)) == ' '
- || c == '\t'))
- tws--;
- }
- while (col <= end_col - edit->start_col) {
- p->ch = 0;
- p->style = 0;
- if (q == edit->curs1)
- p->style |= MOD_CURSOR;
- if (q >= m1 && q < m2) {
- if (column_highlighting) {
- int x;
- x = edit_move_forward3 (edit, b, 0, q);
- c1 = min (edit->column1, edit->column2);
- c2 = max (edit->column1, edit->column2);
- if (x >= c1 && x < c2)
- p->style |= MOD_MARKED;
- } else
- p->style |= MOD_MARKED;
- }
- if (q == edit->bracket)
- p->style |= MOD_BOLD;
- if (q >= edit->found_start
- && q < edit->found_start + edit->found_len)
- p->style |= MOD_BOLD;
- cw = 1;
- if ( !edit->utf8 ) {
- c = edit_get_byte (edit, q);
- } else {
- c = edit_get_utf (edit, q, &cw);
- }
- /* we don't use bg for mc - fg contains both */
- if (book_mark) {
- p->style |= book_mark << 16;
- } else {
- edit_get_syntax_color (edit, q, &color);
- p->style |= color << 16;
- }
- switch (c) {
- case '\n':
- col = (end_col + utf8lag) - edit->start_col + 1; /* quit */
- break;
- case '\t':
- i = TAB_SIZE - ((int) col % TAB_SIZE);
- col += i;
- if (tty_use_colors() &&
- ((visible_tabs || (visible_tws && q >= tws)) && enable_show_tabs_tws)) {
- if (p->style & MOD_MARKED)
- c = p->style;
- else if (book_mark)
- c |= book_mark << 16;
- else
- c = p->style | MOD_WHITESPACE;
- if (i > 2) {
- p->ch = '<';
- p->style = c;
- p++;
- while (--i > 1) {
- p->ch = '-';
- p->style = c;
- p++;
- }
- p->ch = '>';
- p->style = c;
- p++;
- } else if (i > 1) {
- p->ch = '<';
- p->style = c;
- p++;
- p->ch = '>';
- p->style = c;
- p++;
- } else {
- p->ch = '>';
- p->style = c;
- p++;
- }
- } else if (tty_use_colors() && visible_tws && q >= tws && enable_show_tabs_tws) {
- p->ch = '.';
- p->style |= MOD_WHITESPACE;
- c = p->style & ~MOD_CURSOR;
- p++;
- while (--i) {
- p->ch = ' ';
- p->style = c;
- p++;
- }
- } else {
- p->ch |= ' ';
- c = p->style & ~MOD_CURSOR;
- p++;
- while (--i) {
- p->ch = ' ';
- p->style = c;
- p++;
- }
- }
- break;
- case ' ':
- if (tty_use_colors() && visible_tws && q >= tws && enable_show_tabs_tws) {
- p->ch = '.';
- p->style |= MOD_WHITESPACE;
- p++;
- col++;
- break;
- }
- /* fallthrough */
- default:
- #ifdef HAVE_CHARSET
- if ( utf8_display ) {
- if ( !edit->utf8 ) {
- c = convert_from_8bit_to_utf_c ((unsigned char) c, edit->converter);
- }
- } else {
- if ( edit->utf8 ) {
- c = convert_from_utf_to_current_c (c, edit->converter);
- } else {
- #endif
- c = convert_to_display_c (c);
- #ifdef HAVE_CHARSET
- }
- }
- #endif
- /* Caret notation for control characters */
- if (c < 32) {
- p->ch = '^';
- p->style = abn_style;
- p++;
- p->ch = c + 0x40;
- p->style = abn_style;
- p++;
- col += 2;
- break;
- }
- if (c == 127) {
- p->ch = '^';
- p->style = abn_style;
- p++;
- p->ch = '?';
- p->style = abn_style;
- p++;
- col += 2;
- break;
- }
- #ifndef HAVE_CHARSET
- int utf8_display = 0;
- #endif
- if (!edit->utf8) {
- if ( ( utf8_display && g_unichar_isprint (c) ) ||
- ( utf8_display == 0 && is_printable (c) ) ) {
- p->ch = c;
- p++;
- } else {
- p->ch = '.';
- p->style = abn_style;
- p++;
- }
- } else {
- if ( g_unichar_isprint (c) ) {
- p->ch = c;
- p++;
- } else {
- p->ch = '.';
- p->style = abn_style;
- p++;
- }
- }
- col++;
- break;
- }
- q++;
- if ( cw > 1) {
- q += cw - 1;
- }
- }
- }
- } else {
- start_col_real = start_col = 0;
- }
- p->ch = 0;
- print_to_widget (edit, row, start_col, start_col_real, end_col, line, line_stat);
- }
- #define key_pending(x) (!is_idle())
- static void edit_draw_this_char (WEdit * edit, long curs, long row)
- {
- int b = edit_bol (edit, curs);
- edit_draw_this_line (edit, b, row, 0, edit->num_widget_columns - 1);
- }
- /* cursor must be in screen for other than REDRAW_PAGE passed in force */
- static void
- render_edit_text (WEdit * edit, long start_row, long start_column, long end_row,
- long end_column)
- {
- long row = 0, curs_row;
- static int prev_curs_row = 0;
- static long prev_curs = 0;
- int force = edit->force;
- long b;
- /*
- * If the position of the page has not moved then we can draw the cursor
- * character only. This will prevent line flicker when using arrow keys.
- */
- if ((!(force & REDRAW_CHAR_ONLY)) || (force & REDRAW_PAGE)) {
- if (!(force & REDRAW_IN_BOUNDS)) { /* !REDRAW_IN_BOUNDS means to ignore bounds and redraw whole rows */
- start_row = 0;
- end_row = edit->num_widget_lines - 1;
- start_column = 0;
- end_column = edit->num_widget_columns - 1;
- }
- if (force & REDRAW_PAGE) {
- row = start_row;
- b = edit_move_forward (edit, edit->start_display, start_row, 0);
- while (row <= end_row) {
- if (key_pending (edit))
- goto exit_render;
- edit_draw_this_line (edit, b, row, start_column, end_column);
- b = edit_move_forward (edit, b, 1, 0);
- row++;
- }
- } else {
- curs_row = edit->curs_row;
- if (force & REDRAW_BEFORE_CURSOR) {
- if (start_row < curs_row) {
- long upto = curs_row - 1 <= end_row ? curs_row - 1 : end_row;
- row = start_row;
- b = edit->start_display;
- while (row <= upto) {
- if (key_pending (edit))
- goto exit_render;
- edit_draw_this_line (edit, b, row, start_column, end_column);
- b = edit_move_forward (edit, b, 1, 0);
- }
- }
- }
- /* if (force & REDRAW_LINE) ---> default */
- b = edit_bol (edit, edit->curs1);
- if (curs_row >= start_row && curs_row <= end_row) {
- if (key_pending (edit))
- goto exit_render;
- edit_draw_this_line (edit, b, curs_row, start_column, end_column);
- }
- if (force & REDRAW_AFTER_CURSOR) {
- if (end_row > curs_row) {
- row = curs_row + 1 < start_row ? start_row : curs_row + 1;
- b = edit_move_forward (edit, b, 1, 0);
- while (row <= end_row) {
- if (key_pending (edit))
- goto exit_render;
- edit_draw_this_line (edit, b, row, start_column, end_column);
- b = edit_move_forward (edit, b, 1, 0);
- row++;
- }
- }
- }
- if (force & REDRAW_LINE_ABOVE && curs_row >= 1) {
- row = curs_row - 1;
- b = edit_move_backward (edit, edit_bol (edit, edit->curs1), 1);
- if (row >= start_row && row <= end_row) {
- if (key_pending (edit))
- goto exit_render;
- edit_draw_this_line (edit, b, row, start_column, end_column);
- }
- }
- if (force & REDRAW_LINE_BELOW && row < edit->num_widget_lines - 1) {
- row = curs_row + 1;
- b = edit_bol (edit, edit->curs1);
- b = edit_move_forward (edit, b, 1, 0);
- if (row >= start_row && row <= end_row) {
- if (key_pending (edit))
- goto exit_render;
- edit_draw_this_line (edit, b, row, start_column, end_column);
- }
- }
- }
- } else {
- if (prev_curs_row < edit->curs_row) { /* with the new text highlighting, we must draw from the top down */
- edit_draw_this_char (edit, prev_curs, prev_curs_row);
- edit_draw_this_char (edit, edit->curs1, edit->curs_row);
- } else {
- edit_draw_this_char (edit, edit->curs1, edit->curs_row);
- edit_draw_this_char (edit, prev_curs, prev_curs_row);
- }
- }
- edit->force = 0;
- prev_curs_row = edit->curs_row;
- prev_curs = edit->curs1;
- exit_render:
- edit->screen_modified = 0;
- return;
- }
- static void
- edit_render (WEdit * edit, int page, int row_start, int col_start, int row_end, int col_end)
- {
- if (page) /* if it was an expose event, 'page' would be set */
- edit->force |= REDRAW_PAGE | REDRAW_IN_BOUNDS;
- if (edit->force & REDRAW_COMPLETELY)
- buttonbar_redraw (find_buttonbar (edit->widget.parent));
- render_edit_text (edit, row_start, col_start, row_end, col_end);
- /*
- * edit->force != 0 means a key was pending and the redraw
- * was halted, so next time we must redraw everything in case stuff
- * was left undrawn from a previous key press.
- */
- if (edit->force)
- edit->force |= REDRAW_PAGE;
- }
- void edit_render_keypress (WEdit * edit)
- {
- edit_render (edit, 0, 0, 0, 0, 0);
- }
|