2 Internal file viewer for the Midnight Commander
3 Function for nroff-like 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>
20 This file is part of the Midnight Commander.
22 The Midnight Commander is free software; you can redistribute it
23 and/or modify it under the terms of the GNU General Public License as
24 published by the Free Software Foundation; either version 2 of the
25 License, or (at your option) any later version.
27 The Midnight Commander is distributed in the hope that it will be
28 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
29 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30 General Public License for more details.
32 You should have received a copy of the GNU General Public License
33 along with this program; if not, write to the Free Software
34 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
40 #include "lib/global.h"
42 #include "src/charsets.h"
43 #include "lib/tty/tty.h"
48 /*** global variables ****************************************************************************/
50 /*** file scope macro definitions ****************************************************************/
52 /*** file scope type declarations ****************************************************************/
54 /*** file scope variables ************************************************************************/
56 /*** file scope functions ************************************************************************/
58 /*** public functions ****************************************************************************/
60 /* --------------------------------------------------------------------------------------------- */
63 mcview_display_nroff (mcview_t
* view
)
65 const screen_dimen left
= view
->data_area
.left
;
66 const screen_dimen top
= view
->data_area
.top
;
67 const screen_dimen width
= view
->data_area
.width
;
68 const screen_dimen height
= view
->data_area
.height
;
69 screen_dimen row
, col
;
75 struct hexedit_change_node
*curr
= view
->change_list
;
77 mcview_display_clean (view
);
78 mcview_display_ruler (view
);
80 /* Find the first displayable changed byte */
81 from
= view
->dpy_start
;
82 while (curr
&& (curr
->offset
< from
))
87 tty_setcolor (NORMAL_COLOR
);
88 for (row
= 0, col
= 0; row
< height
;)
93 gboolean read_res
= TRUE
;
94 c
= mcview_get_utf (view
, from
, &cw
, &read_res
);
101 if (!mcview_get_byte (view
, from
, &c
))
112 mcview_get_byte (view
, from
- 2, &c_prev
);
113 mcview_get_byte (view
, from
, &c_next
);
115 if (g_ascii_isprint (c_prev
) && g_ascii_isprint (c_prev
)
116 && (c_prev
== c_next
|| c_prev
== '_' || (c_prev
== '+' && c_next
== 'o')))
122 /* We're inside an nroff character sequence at the
123 * beginning of the screen -- just skip the
124 * backspace and continue with the next character. */
132 && (c_next
!= '_' || mcview_count_backspaces (view
, from
+ 1) == 1))
133 tty_setcolor (VIEW_UNDERLINED_COLOR
);
135 tty_setcolor (MARKED_COLOR
);
140 if ((c
== '\n') || (col
>= width
&& view
->text_wrap_mode
))
144 if (c
== '\n' || row
>= height
)
150 mcview_get_byte_indexed (view
, from
, 1, &c
);
151 if (c
== '\r' || c
== '\n')
161 mcview_offset_to_coord (view
, &line
, &column
, from
);
162 col
+= (option_tab_spacing
- col
% option_tab_spacing
);
163 if (view
->text_wrap_mode
&& col
>= width
&& width
!= 0)
171 if (view
->search_start
<= from
&& from
< view
->search_end
)
173 tty_setcolor (SELECTED_COLOR
);
176 if (col
>= view
->dpy_text_column
&& col
- view
->dpy_text_column
< width
)
178 widget_move (view
, top
+ row
, left
+ (col
- view
->dpy_text_column
));
184 c
= convert_from_8bit_to_utf_c ((unsigned char) c
, view
->converter
);
186 if (!g_unichar_isprint (c
))
193 c
= convert_from_utf_to_current_c (c
, view
->converter
);
198 c
= convert_to_display_c (c
);
203 tty_print_anychar (c
);
209 if (g_unichar_iswide (c
))
211 else if (g_unichar_iszerowidth (c
))
215 tty_setcolor (NORMAL_COLOR
);
217 view
->dpy_end
= from
;
220 /* --------------------------------------------------------------------------------------------- */
223 mcview__get_nroff_real_len (mcview_t
* view
, off_t start
, off_t length
)
225 mcview_nroff_t
*nroff
;
229 nroff
= mcview_nroff_seq_new_num (view
, start
);
235 if (nroff
->type
!= NROFF_TYPE_NONE
)
240 mcview_nroff_seq_next (nroff
);
243 mcview_nroff_seq_free (&nroff
);
247 /* --------------------------------------------------------------------------------------------- */
250 mcview_nroff_seq_new_num (mcview_t
* view
, off_t lc_index
)
252 mcview_nroff_t
*nroff
;
254 nroff
= g_try_malloc0 (sizeof (mcview_nroff_t
));
257 nroff
->index
= lc_index
;
259 mcview_nroff_seq_info (nroff
);
264 /* --------------------------------------------------------------------------------------------- */
267 mcview_nroff_seq_new (mcview_t
* view
)
269 return mcview_nroff_seq_new_num (view
, (off_t
) 0);
273 /* --------------------------------------------------------------------------------------------- */
276 mcview_nroff_seq_free (mcview_nroff_t
** nroff
)
278 if (nroff
== NULL
|| *nroff
== NULL
)
284 /* --------------------------------------------------------------------------------------------- */
287 mcview_nroff_seq_info (mcview_nroff_t
* nroff
)
292 return NROFF_TYPE_NONE
;
293 nroff
->type
= NROFF_TYPE_NONE
;
295 if (!mcview_get_byte (nroff
->view
, nroff
->index
, &nroff
->current_char
) || !g_ascii_isprint (nroff
->current_char
)) /* FIXME: utf-8 and g_ascii_isprint */
298 nroff
->char_width
= 1;
300 if (!mcview_get_byte (nroff
->view
, nroff
->index
+ 1, &next
) || next
!= '\b')
303 if (!mcview_get_byte (nroff
->view
, nroff
->index
+ 2, &next2
) || !g_ascii_isprint (next2
)) /* FIXME: utf-8 and g_ascii_isprint */
306 if (nroff
->current_char
== '_' && next2
== '_')
308 nroff
->type
= (nroff
->prev_type
== NROFF_TYPE_BOLD
)
309 ? NROFF_TYPE_BOLD
: NROFF_TYPE_UNDERLINE
;
312 else if (nroff
->current_char
== next2
)
314 nroff
->type
= NROFF_TYPE_BOLD
;
316 else if (nroff
->current_char
== '_')
318 nroff
->current_char
= next2
;
319 nroff
->type
= NROFF_TYPE_UNDERLINE
;
321 else if (nroff
->current_char
== '+' && next2
== 'o')
329 /* --------------------------------------------------------------------------------------------- */
332 mcview_nroff_seq_next (mcview_nroff_t
* nroff
)
337 nroff
->prev_type
= nroff
->type
;
339 nroff
->index
+= nroff
->char_width
;
341 if (nroff
->prev_type
!= NROFF_TYPE_NONE
)
343 mcview_nroff_seq_info (nroff
);
344 return nroff
->current_char
;
347 /* --------------------------------------------------------------------------------------------- */