2 Internal file viewer for the Midnight Commander
3 Function for plain view
5 Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
6 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
8 Written by: 1994, 1995, 1998 Miguel de Icaza
9 1994, 1995 Janne Kukonlehto
14 2004 Roland Illig <roland.illig@gmx.de>
15 2005 Roland Illig <roland.illig@gmx.de>
16 2009 Slava Zanko <slavazanko@google.com>
17 2009 Andrew Borodin <aborodin@vmail.ru>
18 2009 Ilia Maslakov <il.smind@gmail.com>
19 2010 Andrew Borodin <aborodin@vmail.ru>
21 This file is part of the Midnight Commander.
23 The Midnight Commander is free software; you can redistribute it
24 and/or modify it under the terms of the GNU General Public License as
25 published by the Free Software Foundation; either version 2 of the
26 License, or (at your option) any later version.
28 The Midnight Commander is distributed in the hope that it will be
29 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
30 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31 General Public License for more details.
33 You should have received a copy of the GNU General Public License
34 along with this program; if not, write to the Free Software
35 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
41 #include "lib/tty/tty.h"
45 #include "lib/global.h"
47 #include "src/charsets.h"
48 #include "mcviewer.h" /* mcview_show_eof */
52 /*** global variables ****************************************************************************/
54 /*** file scope macro definitions ****************************************************************/
56 /*** file scope type declarations ****************************************************************/
58 /*** file scope variables ************************************************************************/
60 /*** file scope functions ************************************************************************/
62 /*** public functions ****************************************************************************/
64 /* --------------------------------------------------------------------------------------------- */
67 mcview_display_text (mcview_t
* view
)
69 const screen_dimen left
= view
->data_area
.left
;
70 const screen_dimen top
= view
->data_area
.top
;
71 const screen_dimen width
= view
->data_area
.width
;
72 const screen_dimen height
= view
->data_area
.height
;
73 screen_dimen row
= 0, col
= 0;
77 gboolean last_row
= TRUE
;
78 struct hexedit_change_node
*curr
= view
->change_list
;
80 mcview_display_clean (view
);
81 mcview_display_ruler (view
);
83 /* Find the first displayable changed byte */
84 from
= view
->dpy_start
;
85 while ((curr
!= NULL
) && (curr
->offset
< from
))
90 tty_setcolor (NORMAL_COLOR
);
98 gboolean read_res
= TRUE
;
100 c
= mcview_get_utf (view
, from
, &cw
, &read_res
);
106 if (!mcview_get_byte (view
, from
, &c
))
114 if (c
!= '\n' && prev_ch
== '\r')
120 /* tty_print_anychar ('\n'); */
134 if (col
>= width
&& view
->text_wrap_mode
)
143 col
+= (option_tab_spacing
- col
% option_tab_spacing
);
144 if (view
->text_wrap_mode
&& col
>= width
&& width
!= 0)
152 if (view
->search_start
<= from
&& from
< view
->search_end
)
153 tty_setcolor (SELECTED_COLOR
);
155 if ((col
>= view
->dpy_text_column
) && (col
- view
->dpy_text_column
< width
))
157 widget_move (view
, top
+ row
, left
+ (col
- view
->dpy_text_column
));
162 c
= convert_from_8bit_to_utf_c ((unsigned char) c
, view
->converter
);
163 if (!g_unichar_isprint (c
))
167 c
= convert_from_utf_to_current_c (c
, view
->converter
);
171 c
= convert_to_display_c (c
);
173 if (!is_printable (c
))
177 tty_print_anychar (c
);
185 if (g_unichar_iswide (c
))
187 else if (g_unichar_iszerowidth (c
))
193 view
->dpy_end
= from
;
194 if (mcview_show_eof
!= NULL
&& mcview_show_eof
[0] != '\0')
196 if (last_row
&& mcview_get_byte (view
, from
- 1, &c
))
199 while (++row
< height
)
201 widget_move (view
, top
+ row
, left
);
202 tty_print_string (mcview_show_eof
);
207 /* --------------------------------------------------------------------------------------------- */