4 Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006,
6 The Free Software Foundation, Inc.
11 This file is part of the Midnight Commander.
13 The Midnight Commander is free software: you can redistribute it
14 and/or modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation, either version 3 of the License,
16 or (at your option) any later version.
18 The Midnight Commander is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 * \brief Source: editor text drawing
37 #include <sys/types.h>
44 #include "lib/global.h"
45 #include "lib/tty/tty.h" /* tty_printf() */
46 #include "lib/tty/key.h" /* is_idle() */
48 #include "lib/strutil.h" /* utf string functions */
49 #include "lib/util.h" /* is_printable() */
50 #include "lib/widget.h" /* buttonbar_redraw() */
52 #include "lib/charsets.h"
55 #include "src/setup.h" /* edit_tab_spacing */
56 #include "src/main.h" /* macro_index */
58 #include "edit-impl.h"
59 #include "edit-widget.h"
61 /*** global variables ****************************************************************************/
63 /* Toggles statusbar draw style */
64 int simple_statusbar
= 0;
66 int visible_tabs
= 1, visible_tws
= 1;
68 /*** file scope macro definitions ****************************************************************/
70 #define MAX_LINE_LEN 1024
73 #define MOD_ABNORMAL (1 << 8)
74 #define MOD_BOLD (1 << 9)
75 #define MOD_MARKED (1 << 10)
76 #define MOD_CURSOR (1 << 11)
77 #define MOD_WHITESPACE (1 << 12)
79 #define edit_move(x,y) widget_move(edit, y, x);
81 #define key_pending(x) (!is_idle())
83 #define EDITOR_MINIMUM_TERMINAL_WIDTH 30
85 /*** file scope type declarations ****************************************************************/
93 /*** file scope variables ************************************************************************/
95 /*** file scope functions ************************************************************************/
96 /* --------------------------------------------------------------------------------------------- */
99 status_string (WEdit
* edit
, char *s
, int w
)
102 unsigned char cur_byte
= 0;
103 unsigned int cur_utf
= 0;
107 * If we are at the end of file, print <EOF>,
108 * otherwise print the current character as is (if printable),
109 * as decimal and as hex.
111 if (edit
->curs1
< edit
->last_byte
)
115 cur_byte
= edit_get_byte (edit
, edit
->curs1
);
117 g_snprintf (byte_str
, sizeof (byte_str
), "%4d 0x%03X",
118 (int) cur_byte
, (unsigned) cur_byte
);
122 cur_utf
= edit_get_utf (edit
, edit
->curs1
, &cw
);
125 g_snprintf (byte_str
, sizeof (byte_str
), "%04d 0x%03X",
126 (unsigned) cur_utf
, (unsigned) cur_utf
);
130 cur_utf
= edit_get_byte (edit
, edit
->curs1
);
131 g_snprintf (byte_str
, sizeof (byte_str
), "%04d 0x%03X",
132 (int) cur_utf
, (unsigned) cur_utf
);
139 strcpy (byte_str
, "<EOF> ");
142 /* The field lengths just prevent the status line from shortening too much */
143 if (simple_statusbar
)
145 "%c%c%c%c %3ld %5ld/%ld %6ld/%ld %s %s",
146 edit
->mark1
!= edit
->mark2
? (edit
->column_highlight
? 'C' : 'B') : '-',
147 edit
->modified
? 'M' : '-',
148 macro_index
< 0 ? '-' : 'R',
149 edit
->overwrite
== 0 ? '-' : 'O',
150 edit
->curs_col
+ edit
->over_col
,
152 edit
->total_lines
+ 1, edit
->curs1
, edit
->last_byte
, byte_str
,
154 mc_global
.source_codepage
>=
155 0 ? get_codepage_id (mc_global
.source_codepage
) : ""
162 "[%c%c%c%c] %2ld L:[%3ld+%2ld %3ld/%3ld] *(%-4ld/%4ldb) %s %s",
163 edit
->mark1
!= edit
->mark2
? (edit
->column_highlight
? 'C' : 'B') : '-',
164 edit
->modified
? 'M' : '-',
165 macro_index
< 0 ? '-' : 'R',
166 edit
->overwrite
== 0 ? '-' : 'O',
167 edit
->curs_col
+ edit
->over_col
,
168 edit
->start_line
+ 1,
171 edit
->total_lines
+ 1, edit
->curs1
, edit
->last_byte
, byte_str
,
173 mc_global
.source_codepage
>=
174 0 ? get_codepage_id (mc_global
.source_codepage
) : ""
181 /* --------------------------------------------------------------------------------------------- */
184 printwstr (const char *s
, int len
)
187 tty_printf ("%-*.*s", len
, len
, s
);
190 /* --------------------------------------------------------------------------------------------- */
193 print_to_widget (WEdit
* edit
, long row
, int start_col
, int start_col_real
,
194 long end_col
, struct line_s line
[], char *status
, int bookmarked
)
198 int x
= start_col_real
;
199 int x1
= start_col
+ EDIT_TEXT_HORIZONTAL_OFFSET
+ option_line_state_width
;
200 int y
= row
+ EDIT_TEXT_VERTICAL_OFFSET
;
201 int cols_to_skip
= abs (x
);
206 tty_setcolor (EDITOR_NORMAL_COLOR
);
208 tty_setcolor (bookmarked
);
210 len
= end_col
+ 1 - start_col
;
211 wrap_start
= option_word_wrap_line_length
+ edit
->start_col
;
213 if (len
> 0 && edit
->widget
.y
+ y
>= 0)
215 if (!show_right_margin
|| wrap_start
> end_col
)
216 tty_draw_hline (edit
->widget
.y
+ y
, edit
->widget
.x
+ x1
, ' ', len
);
217 else if (wrap_start
< 0)
219 tty_setcolor (EDITOR_RIGHT_MARGIN_COLOR
);
220 tty_draw_hline (edit
->widget
.y
+ y
, edit
->widget
.x
+ x1
, ' ', len
);
225 tty_draw_hline (edit
->widget
.y
+ y
, edit
->widget
.x
+ x1
, ' ', wrap_start
);
230 tty_setcolor (EDITOR_RIGHT_MARGIN_COLOR
);
231 tty_draw_hline (edit
->widget
.y
+ y
, edit
->widget
.x
+ x1
+ wrap_start
, ' ', len
);
236 if (option_line_state
)
238 tty_setcolor (LINE_STATE_COLOR
);
239 for (i
= 0; i
< LINE_STATE_WIDTH
; i
++)
241 edit_move (x1
+ i
- option_line_state_width
, y
);
242 if (status
[i
] == '\0')
244 tty_print_char (status
[i
]);
254 unsigned int textchar
;
264 style
= p
->style
& 0xFF00;
266 color
= p
->style
>> 16;
268 if (style
& MOD_ABNORMAL
)
270 /* Non-printable - use black background */
274 if (style
& MOD_WHITESPACE
)
276 if (style
& MOD_MARKED
)
279 tty_setcolor (EDITOR_MARKED_COLOR
);
284 if (color
!= EDITOR_NORMAL_COLOR
)
287 tty_lowlevel_setcolor (color
);
291 tty_setcolor (EDITOR_WHITESPACE_COLOR
);
296 if (style
& MOD_BOLD
)
298 tty_setcolor (EDITOR_BOLD_COLOR
);
300 else if (style
& MOD_MARKED
)
302 tty_setcolor (EDITOR_MARKED_COLOR
);
306 tty_lowlevel_setcolor (color
);
309 if (show_right_margin
)
311 if (i
> option_word_wrap_line_length
+ edit
->start_col
)
312 tty_setcolor (EDITOR_RIGHT_MARGIN_COLOR
);
315 tty_print_anychar (textchar
);
320 /* --------------------------------------------------------------------------------------------- */
321 /** b is a pointer to the beginning of the line */
324 edit_draw_this_line (WEdit
* edit
, long b
, long row
, long start_col
, long end_col
)
326 struct line_s line
[MAX_LINE_LEN
];
327 struct line_s
*p
= line
;
329 long m1
= 0, m2
= 0, q
, c1
, c2
;
330 int col
, start_col_real
;
336 unsigned int cur_line
= 0;
338 char line_stat
[LINE_STATE_WIDTH
+ 1] = "\0";
340 if (row
> edit
->widget
.lines
- 1 - EDIT_TEXT_VERTICAL_OFFSET
)
343 if (book_mark_query_color (edit
, edit
->start_line
+ row
, BOOK_MARK_COLOR
))
344 book_mark
= BOOK_MARK_COLOR
;
345 else if (book_mark_query_color (edit
, edit
->start_line
+ row
, BOOK_MARK_FOUND_COLOR
))
346 book_mark
= BOOK_MARK_FOUND_COLOR
;
349 abn_style
= book_mark
<< 16;
351 abn_style
= MOD_ABNORMAL
;
353 end_col
-= EDIT_TEXT_HORIZONTAL_OFFSET
+ option_line_state_width
;
355 edit_get_syntax_color (edit
, b
- 1, &color
);
356 q
= edit_move_forward3 (edit
, b
, start_col
- edit
->start_col
, 0);
357 start_col_real
= (col
= (int) edit_move_forward3 (edit
, b
, 0, q
)) + edit
->start_col
;
358 if (option_line_state
)
360 cur_line
= edit
->start_line
+ row
;
361 if (cur_line
<= (unsigned int) edit
->total_lines
)
363 g_snprintf (line_stat
, LINE_STATE_WIDTH
+ 1, "%7i ", cur_line
+ 1);
367 memset (line_stat
, ' ', LINE_STATE_WIDTH
);
368 line_stat
[LINE_STATE_WIDTH
] = '\0';
370 if (book_mark_query_color (edit
, cur_line
, BOOK_MARK_COLOR
))
372 g_snprintf (line_stat
, 2, "*");
376 if (col
+ 16 > -edit
->start_col
)
378 eval_marks (edit
, &m1
, &m2
);
380 if (row
<= edit
->total_lines
- edit
->start_line
)
383 if (tty_use_colors () && visible_tws
)
385 tws
= edit_eol (edit
, b
);
386 while (tws
> b
&& ((c
= edit_get_byte (edit
, tws
- 1)) == ' ' || c
== '\t'))
390 while (col
<= end_col
- edit
->start_col
)
396 if (q
== edit
->curs1
)
397 p
->style
|= MOD_CURSOR
;
398 if (q
>= m1
&& q
< m2
)
400 if (edit
->column_highlight
)
403 x
= edit_move_forward3 (edit
, b
, 0, q
);
404 c1
= min (edit
->column1
, edit
->column2
);
405 c2
= max (edit
->column1
, edit
->column2
);
406 if (x
>= c1
&& x
< c2
)
407 p
->style
|= MOD_MARKED
;
410 p
->style
|= MOD_MARKED
;
412 if (q
== edit
->bracket
)
413 p
->style
|= MOD_BOLD
;
414 if (q
>= edit
->found_start
&& q
< edit
->found_start
+ edit
->found_len
)
415 p
->style
|= MOD_BOLD
;
419 c
= edit_get_byte (edit
, q
);
423 c
= edit_get_utf (edit
, q
, &cw
);
425 /* we don't use bg for mc - fg contains both */
428 p
->style
|= book_mark
<< 16;
432 edit_get_syntax_color (edit
, q
, &color
);
433 p
->style
|= color
<< 16;
438 col
= (end_col
+ utf8lag
) - edit
->start_col
+ 1; /* quit */
441 i
= TAB_SIZE
- ((int) col
% TAB_SIZE
);
443 if (tty_use_colors () &&
444 ((visible_tabs
|| (visible_tws
&& q
>= tws
)) && enable_show_tabs_tws
))
446 if (p
->style
& MOD_MARKED
)
449 c
|= book_mark
<< 16;
451 c
= p
->style
| MOD_WHITESPACE
;
483 else if (tty_use_colors () && visible_tws
&& q
>= tws
&& enable_show_tabs_tws
)
486 p
->style
|= MOD_WHITESPACE
;
487 c
= p
->style
& ~MOD_CURSOR
;
499 c
= p
->style
& ~MOD_CURSOR
;
510 if (tty_use_colors () && visible_tws
&& q
>= tws
&& enable_show_tabs_tws
)
513 p
->style
|= MOD_WHITESPACE
;
521 if (mc_global
.utf8_display
)
525 c
= convert_from_8bit_to_utf_c ((unsigned char) c
, edit
->converter
);
529 c
= convert_from_utf_to_current_c (c
, edit
->converter
);
531 c
= convert_to_display_c (c
);
534 /* Caret notation for control characters */
538 p
->style
= abn_style
;
541 p
->style
= abn_style
;
549 p
->style
= abn_style
;
552 p
->style
= abn_style
;
559 if ((mc_global
.utf8_display
&& g_unichar_isprint (c
)) ||
560 (!mc_global
.utf8_display
&& is_printable (c
)))
568 p
->style
= abn_style
;
574 if (g_unichar_isprint (c
))
582 p
->style
= abn_style
;
600 start_col_real
= start_col
= 0;
605 print_to_widget (edit
, row
, start_col
, start_col_real
, end_col
, line
, line_stat
, book_mark
);
608 /* --------------------------------------------------------------------------------------------- */
611 edit_draw_this_char (WEdit
* edit
, long curs
, long row
, long start_column
, long end_column
)
613 int b
= edit_bol (edit
, curs
);
614 edit_draw_this_line (edit
, b
, row
, start_column
, end_column
);
617 /* --------------------------------------------------------------------------------------------- */
618 /** cursor must be in screen for other than REDRAW_PAGE passed in force */
621 render_edit_text (WEdit
* edit
, long start_row
, long start_column
, long end_row
, long end_column
)
623 static long prev_curs_row
= 0;
624 static long prev_curs
= 0;
626 Widget
*w
= (Widget
*) edit
;
627 Dlg_head
*h
= w
->owner
;
629 long row
= 0, curs_row
;
630 int force
= edit
->force
;
637 /* draw only visible region */
639 last_line
= h
->y
+ h
->lines
- 1;
642 if (y1
> last_line
- 1 /* buttonbar */ )
645 last_column
= h
->x
+ h
->cols
- 1;
648 if (x1
> last_column
)
651 y2
= w
->y
+ w
->lines
- 1;
652 if (y2
< h
->y
+ 1 /* menubar */ )
655 x2
= w
->x
+ w
->cols
- 1;
659 if ((force
& REDRAW_IN_BOUNDS
) == 0)
661 /* !REDRAW_IN_BOUNDS means to ignore bounds and redraw whole rows */
662 /* draw only visible region */
664 if (y2
<= last_line
- 1 /* buttonbar */ )
665 end_row
= w
->lines
- 1;
666 else if (y1
>= h
->y
+ 1 /* menubar */ )
667 end_row
= h
->lines
- 1 - y1
- 1;
669 end_row
= start_row
+ h
->lines
- 1 - 1;
671 if (x2
<= last_column
)
672 end_column
= w
->cols
- 1;
674 end_column
= h
->cols
- 1 - x1
;
676 end_column
= start_column
+ h
->cols
- 1;
680 * If the position of the page has not moved then we can draw the cursor
681 * character only. This will prevent line flicker when using arrow keys.
683 if ((force
& REDRAW_CHAR_ONLY
) == 0 || (force
& REDRAW_PAGE
) != 0)
685 if ((force
& REDRAW_PAGE
) != 0)
688 b
= edit_move_forward (edit
, edit
->start_display
, start_row
, 0);
689 while (row
<= end_row
)
691 if (key_pending (edit
))
693 edit_draw_this_line (edit
, b
, row
, start_column
, end_column
);
694 b
= edit_move_forward (edit
, b
, 1, 0);
700 curs_row
= edit
->curs_row
;
702 if ((force
& REDRAW_BEFORE_CURSOR
) != 0 && start_row
< curs_row
)
704 long upto
= curs_row
- 1 <= end_row
? curs_row
- 1 : end_row
;
707 b
= edit
->start_display
;
710 if (key_pending (edit
))
712 edit_draw_this_line (edit
, b
, row
, start_column
, end_column
);
713 b
= edit_move_forward (edit
, b
, 1, 0);
717 /* if (force & REDRAW_LINE) ---> default */
718 b
= edit_bol (edit
, edit
->curs1
);
719 if (curs_row
>= start_row
&& curs_row
<= end_row
)
721 if (key_pending (edit
))
723 edit_draw_this_line (edit
, b
, curs_row
, start_column
, end_column
);
726 if ((force
& REDRAW_AFTER_CURSOR
) != 0 && end_row
> curs_row
)
728 row
= curs_row
+ 1 < start_row
? start_row
: curs_row
+ 1;
729 b
= edit_move_forward (edit
, b
, 1, 0);
730 while (row
<= end_row
)
732 if (key_pending (edit
))
734 edit_draw_this_line (edit
, b
, row
, start_column
, end_column
);
735 b
= edit_move_forward (edit
, b
, 1, 0);
740 if ((force
& REDRAW_LINE_ABOVE
) != 0 && curs_row
>= 1)
743 b
= edit_move_backward (edit
, edit_bol (edit
, edit
->curs1
), 1);
744 if (row
>= start_row
&& row
<= end_row
)
746 if (key_pending (edit
))
748 edit_draw_this_line (edit
, b
, row
, start_column
, end_column
);
752 if ((force
& REDRAW_LINE_BELOW
) != 0 && row
< edit
->widget
.lines
- 1)
755 b
= edit_bol (edit
, edit
->curs1
);
756 b
= edit_move_forward (edit
, b
, 1, 0);
757 if (row
>= start_row
&& row
<= end_row
)
759 if (key_pending (edit
))
761 edit_draw_this_line (edit
, b
, row
, start_column
, end_column
);
766 else if (prev_curs_row
< edit
->curs_row
)
768 /* with the new text highlighting, we must draw from the top down */
769 edit_draw_this_char (edit
, prev_curs
, prev_curs_row
, start_column
, end_column
);
770 edit_draw_this_char (edit
, edit
->curs1
, edit
->curs_row
, start_column
, end_column
);
774 edit_draw_this_char (edit
, edit
->curs1
, edit
->curs_row
, start_column
, end_column
);
775 edit_draw_this_char (edit
, prev_curs
, prev_curs_row
, start_column
, end_column
);
780 prev_curs_row
= edit
->curs_row
;
781 prev_curs
= edit
->curs1
;
784 /* --------------------------------------------------------------------------------------------- */
787 edit_render (WEdit
* edit
, int page
, int row_start
, int col_start
, int row_end
, int col_end
)
789 if (page
) /* if it was an expose event, 'page' would be set */
790 edit
->force
|= REDRAW_PAGE
| REDRAW_IN_BOUNDS
;
792 if (edit
->force
& REDRAW_COMPLETELY
)
793 buttonbar_redraw (find_buttonbar (edit
->widget
.owner
));
794 render_edit_text (edit
, row_start
, col_start
, row_end
, col_end
);
796 * edit->force != 0 means a key was pending and the redraw
797 * was halted, so next time we must redraw everything in case stuff
798 * was left undrawn from a previous key press.
801 edit
->force
|= REDRAW_PAGE
;
804 /* --------------------------------------------------------------------------------------------- */
805 /*** public functions ****************************************************************************/
806 /* --------------------------------------------------------------------------------------------- */
808 /** Draw the status line at the top of the screen. The size of the filename
809 * field varies depending on the width of the screen and the length of
812 edit_status (WEdit
* edit
)
814 const int w
= edit
->widget
.owner
->cols
;
815 const size_t status_size
= w
+ 1;
816 char *const status
= g_malloc (status_size
);
818 const char *fname
= "";
820 const int gap
= 3; /* between the filename and the status */
821 const int right_gap
= 5; /* at the right end of the screen */
822 const int preferred_fname_len
= 16;
824 status_string (edit
, status
, status_size
);
825 status_len
= (int) str_term_width1 (status
);
827 if (edit
->filename_vpath
!= NULL
)
828 fname
= vfs_path_get_last_path_str (edit
->filename_vpath
);
830 fname_len
= str_term_width1 (fname
);
831 if (fname_len
< preferred_fname_len
)
832 fname_len
= preferred_fname_len
;
834 if (fname_len
+ gap
+ status_len
+ right_gap
>= w
)
836 if (preferred_fname_len
+ gap
+ status_len
+ right_gap
>= w
)
837 fname_len
= preferred_fname_len
;
839 fname_len
= w
- (gap
+ status_len
+ right_gap
);
840 fname
= str_trunc (fname
, fname_len
);
843 dlg_move (edit
->widget
.owner
, 0, 0);
844 tty_setcolor (STATUSBAR_COLOR
);
845 printwstr (fname
, fname_len
+ gap
);
846 printwstr (status
, w
- (fname_len
+ gap
));
848 if (simple_statusbar
&& w
> EDITOR_MINIMUM_TERMINAL_WIDTH
)
850 size_t percent
= 100;
852 if (edit
->total_lines
+ 1 != 0)
853 percent
= (edit
->curs_line
+ 1) * 100 / (edit
->total_lines
+ 1);
854 dlg_move (edit
->widget
.owner
, 0, w
- 5);
855 tty_printf (" %3d%%", percent
);
861 /* --------------------------------------------------------------------------------------------- */
862 /** this scrolls the text so that cursor is on the screen */
864 edit_scroll_screen_over_cursor (WEdit
* edit
)
868 int b_extreme
, t_extreme
, l_extreme
, r_extreme
;
870 if (edit
->widget
.lines
<= 0 || edit
->widget
.cols
<= 0)
873 edit
->widget
.cols
-= EDIT_TEXT_HORIZONTAL_OFFSET
+ option_line_state_width
;
874 edit
->widget
.lines
-= EDIT_TEXT_VERTICAL_OFFSET
;
876 r_extreme
= EDIT_RIGHT_EXTREME
;
877 l_extreme
= EDIT_LEFT_EXTREME
;
878 b_extreme
= EDIT_BOTTOM_EXTREME
;
879 t_extreme
= EDIT_TOP_EXTREME
;
882 b_extreme
= max (edit
->widget
.lines
/ 4, b_extreme
);
883 t_extreme
= max (edit
->widget
.lines
/ 4, t_extreme
);
885 if (b_extreme
+ t_extreme
+ 1 > edit
->widget
.lines
)
889 n
= b_extreme
+ t_extreme
;
892 b_extreme
= (b_extreme
* (edit
->widget
.lines
- 1)) / n
;
893 t_extreme
= (t_extreme
* (edit
->widget
.lines
- 1)) / n
;
895 if (l_extreme
+ r_extreme
+ 1 > edit
->widget
.cols
)
899 n
= l_extreme
+ t_extreme
;
902 l_extreme
= (l_extreme
* (edit
->widget
.cols
- 1)) / n
;
903 r_extreme
= (r_extreme
* (edit
->widget
.cols
- 1)) / n
;
905 p
= edit_get_col (edit
) + edit
->over_col
;
906 edit_update_curs_row (edit
);
907 outby
= p
+ edit
->start_col
- edit
->widget
.cols
+ 1 + (r_extreme
+ edit
->found_len
);
909 edit_scroll_right (edit
, outby
);
910 outby
= l_extreme
- p
- edit
->start_col
;
912 edit_scroll_left (edit
, outby
);
914 outby
= p
- edit
->widget
.lines
+ 1 + b_extreme
;
916 edit_scroll_downward (edit
, outby
);
917 outby
= t_extreme
- p
;
919 edit_scroll_upward (edit
, outby
);
920 edit_update_curs_row (edit
);
922 edit
->widget
.lines
+= EDIT_TEXT_VERTICAL_OFFSET
;
923 edit
->widget
.cols
+= EDIT_TEXT_HORIZONTAL_OFFSET
+ option_line_state_width
;
926 /* --------------------------------------------------------------------------------------------- */
929 edit_render_keypress (WEdit
* edit
)
931 edit_render (edit
, 0, 0, 0, 0, 0);
934 /* --------------------------------------------------------------------------------------------- */