2 Dynamic paragraph formatting.
4 Copyright (C) 2011-2015
5 Free Software Foundation, Inc.
7 Copyright (C) 1996 Paul Sheer
11 Andrew Borodin <aborodin@vmail.ru>, 2013, 2014
13 This file is part of the Midnight Commander.
15 The Midnight Commander is free software: you can redistribute it
16 and/or modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation, either version 3 of the License,
18 or (at your option) any later version.
20 The Midnight Commander is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program. If not, see <http://www.gnu.org/licenses/>.
30 * \brief Source: Dynamic paragraph formatting
33 * \author Andrew Borodin
41 #include <sys/types.h>
50 #include "lib/global.h"
52 #include "src/setup.h" /* option_tab_spacing */
54 #include "edit-impl.h"
55 #include "editwidget.h"
57 /*** global variables ****************************************************************************/
59 char *option_stop_format_chars
= NULL
;
61 /*** file scope macro definitions ****************************************************************/
63 #define tab_width option_tab_spacing
65 #define FONT_MEAN_WIDTH 1
67 /*** file scope type declarations ****************************************************************/
69 /*** file scope variables ************************************************************************/
71 /*** file scope functions ************************************************************************/
72 /* --------------------------------------------------------------------------------------------- */
75 line_start (const edit_buffer_t
* buf
, long line
)
84 p
= edit_buffer_move_backward (buf
, p
, l
- line
);
86 p
= edit_buffer_move_forward (buf
, p
, line
- l
, 0);
88 p
= edit_buffer_get_bol (buf
, p
);
89 while (strchr ("\t ", edit_buffer_get_byte (buf
, p
)) != NULL
)
94 /* --------------------------------------------------------------------------------------------- */
97 bad_line_start (const edit_buffer_t
* buf
, off_t p
)
101 c
= edit_buffer_get_byte (buf
, p
);
104 /* `...' is acceptable */
105 return !(edit_buffer_get_byte (buf
, p
+ 1) == '.'
106 && edit_buffer_get_byte (buf
, p
+ 2) == '.');
110 /* `---' is acceptable */
111 return !(edit_buffer_get_byte (buf
, p
+ 1) == '-'
112 && edit_buffer_get_byte (buf
, p
+ 2) == '-');
115 return (option_stop_format_chars
!= NULL
&& strchr (option_stop_format_chars
, c
) != NULL
);
118 /* --------------------------------------------------------------------------------------------- */
120 * Find the start of the current paragraph for the purpose of formatting.
121 * Return position in the file.
125 begin_paragraph (WEdit
* edit
, gboolean force
, long *lines
)
129 for (i
= edit
->buffer
.curs_line
- 1; i
>= 0; i
--)
130 if (edit_line_is_blank (edit
, i
) ||
131 (force
&& bad_line_start (&edit
->buffer
, line_start (&edit
->buffer
, i
))))
137 *lines
= edit
->buffer
.curs_line
- i
;
139 return edit_buffer_move_backward (&edit
->buffer
, edit_buffer_get_current_bol (&edit
->buffer
),
143 /* --------------------------------------------------------------------------------------------- */
145 * Find the end of the current paragraph for the purpose of formatting.
146 * Return position in the file.
150 end_paragraph (WEdit
* edit
, gboolean force
)
154 for (i
= edit
->buffer
.curs_line
+ 1; i
<= edit
->buffer
.lines
; i
++)
155 if (edit_line_is_blank (edit
, i
) ||
156 (force
&& bad_line_start (&edit
->buffer
, line_start (&edit
->buffer
, i
))))
162 return edit_buffer_get_eol (&edit
->buffer
,
163 edit_buffer_move_forward (&edit
->buffer
,
164 edit_buffer_get_current_bol
166 i
- edit
->buffer
.curs_line
, 0));
169 /* --------------------------------------------------------------------------------------------- */
172 get_paragraph (const edit_buffer_t
* buf
, off_t p
, off_t q
, gboolean indent
)
176 t
= g_string_sized_new (128);
180 if (indent
&& edit_buffer_get_byte (buf
, p
- 1) == '\n')
181 while (strchr ("\t ", edit_buffer_get_byte (buf
, p
)) != NULL
)
184 g_string_append_c (t
, edit_buffer_get_byte (buf
, p
));
187 g_string_append_c (t
, '\n');
192 /* --------------------------------------------------------------------------------------------- */
195 strip_newlines (unsigned char *t
, off_t size
)
199 for (p
= t
; size
-- != 0; p
++)
204 /* --------------------------------------------------------------------------------------------- */
206 This function calculates the number of chars in a line specified to length l in pixels
210 next_tab_pos (off_t x
)
212 x
+= tab_width
- x
% tab_width
;
216 /* --------------------------------------------------------------------------------------------- */
219 line_pixel_length (unsigned char *t
, off_t b
, off_t l
, gboolean utf8
)
221 off_t xn
, x
; /* position conters */
222 off_t char_length
; /* character length in bytes */
228 for (xn
= 0, x
= 0; xn
<= l
; x
= xn
, b
+= char_length
)
240 xn
= next_tab_pos (x
);
248 ch
= g_utf8_get_char_validated (tb
, -1);
249 if (ch
!= (gunichar
) (-2) && ch
!= (gunichar
) (-1))
253 /* Calculate UTF-8 char length */
254 next_ch
= g_utf8_next_char (tb
);
256 char_length
= next_ch
- tb
;
258 if (g_unichar_iswide (ch
))
272 /* --------------------------------------------------------------------------------------------- */
275 next_word_start (unsigned char *t
, off_t q
, off_t size
)
278 gboolean saw_ws
= FALSE
;
280 for (i
= q
; i
< size
; i
++)
299 /* --------------------------------------------------------------------------------------------- */
300 /** find the start of a word */
303 word_start (unsigned char *t
, off_t q
, off_t size
)
307 if (t
[q
] == ' ' || t
[q
] == '\t')
308 return next_word_start (t
, q
, size
);
319 if (c
== ' ' || c
== '\t')
324 /* --------------------------------------------------------------------------------------------- */
325 /** replaces ' ' with '\n' to properly format a paragraph */
328 format_this (unsigned char *t
, off_t size
, long indent
, gboolean utf8
)
332 strip_newlines (t
, size
);
333 ww
= option_word_wrap_line_length
* FONT_MEAN_WIDTH
- indent
;
334 if (ww
< FONT_MEAN_WIDTH
* 2)
335 ww
= FONT_MEAN_WIDTH
* 2;
341 q
= line_pixel_length (t
, q
, ww
, utf8
);
346 p
= word_start (t
, q
, size
);
348 q
= next_word_start (t
, q
, size
); /* Return the end of the word if the beginning
349 of the word is at the beginning of a line
350 (i.e. a very long word) */
353 if (q
== -1) /* end of paragraph */
360 /* --------------------------------------------------------------------------------------------- */
363 replace_at (WEdit
* edit
, off_t q
, int c
)
365 edit_cursor_move (edit
, q
- edit
->buffer
.curs1
);
366 edit_delete (edit
, TRUE
);
367 edit_insert_ahead (edit
, c
);
370 /* --------------------------------------------------------------------------------------------- */
373 edit_indent_width (const WEdit
* edit
, off_t p
)
377 /* move to the end of the leading whitespace of the line */
378 while (strchr ("\t ", edit_buffer_get_byte (&edit
->buffer
, q
)) != NULL
379 && q
< edit
->buffer
.size
- 1)
381 /* count the number of columns of indentation */
382 return (long) edit_move_forward3 (edit
, p
, 0, q
);
385 /* --------------------------------------------------------------------------------------------- */
388 edit_insert_indent (WEdit
* edit
, long indent
)
390 if (!option_fill_tabs_with_spaces
)
391 while (indent
>= TAB_SIZE
)
393 edit_insert (edit
, '\t');
398 edit_insert (edit
, ' ');
401 /* --------------------------------------------------------------------------------------------- */
402 /** replaces a block of text */
405 put_paragraph (WEdit
* edit
, unsigned char *t
, off_t p
, long indent
, off_t size
)
411 cursor
= edit
->buffer
.curs1
;
413 while (strchr ("\t ", edit_buffer_get_byte (&edit
->buffer
, p
)) != NULL
)
415 for (i
= 0; i
< size
; i
++, p
++)
417 if (i
!= 0 && indent
!= 0)
419 if (t
[i
- 1] == '\n' && c
== '\n')
421 while (strchr ("\t ", edit_buffer_get_byte (&edit
->buffer
, p
)) != NULL
)
424 else if (t
[i
- 1] == '\n')
428 edit_cursor_move (edit
, p
- edit
->buffer
.curs1
);
429 curs
= edit
->buffer
.curs1
;
430 edit_insert_indent (edit
, indent
);
432 cursor
+= edit
->buffer
.curs1
- p
;
433 p
= edit
->buffer
.curs1
;
437 edit_cursor_move (edit
, p
- edit
->buffer
.curs1
);
438 while (strchr ("\t ", edit_buffer_get_byte (&edit
->buffer
, p
)) != NULL
)
440 edit_delete (edit
, TRUE
);
441 if (cursor
> edit
->buffer
.curs1
)
444 p
= edit
->buffer
.curs1
;
448 c
= edit_buffer_get_byte (&edit
->buffer
, p
);
450 replace_at (edit
, p
, t
[i
]);
454 /* --------------------------------------------------------------------------------------------- */
457 test_indent (const WEdit
* edit
, off_t p
, off_t q
)
461 indent
= edit_indent_width (edit
, p
++);
466 if (edit_buffer_get_byte (&edit
->buffer
, p
- 1) == '\n'
467 && indent
!= edit_indent_width (edit
, p
))
472 /* --------------------------------------------------------------------------------------------- */
473 /*** public functions ****************************************************************************/
474 /* --------------------------------------------------------------------------------------------- */
477 format_paragraph (WEdit
* edit
, gboolean force
)
485 gboolean utf8
= FALSE
;
487 if (option_word_wrap_line_length
< 2)
489 if (edit_line_is_blank (edit
, edit
->buffer
.curs_line
))
492 p
= begin_paragraph (edit
, force
, &lines
);
493 q
= end_paragraph (edit
, force
);
494 indent
= test_indent (edit
, p
, q
);
496 t
= get_paragraph (&edit
->buffer
, p
, q
, indent
!= 0);
502 char *stop_format_chars
;
504 if (option_stop_format_chars
!= NULL
505 && strchr (option_stop_format_chars
, t
->str
[0]) != NULL
)
507 g_string_free (t
, TRUE
);
511 if (option_stop_format_chars
== NULL
|| *option_stop_format_chars
== '\0')
512 stop_format_chars
= g_strdup ("\t");
514 stop_format_chars
= g_strconcat (option_stop_format_chars
, "\t", (char *) NULL
);
516 for (i
= 0; i
< size
- 1; i
++)
517 if (t
->str
[i
] == '\n' && strchr (stop_format_chars
, t
->str
[i
+ 1]) != NULL
)
519 g_free (stop_format_chars
);
520 g_string_free (t
, TRUE
);
524 g_free (stop_format_chars
);
527 t2
= (unsigned char *) g_string_free (t
, FALSE
);
531 /* scroll up to show 1st line of paragraph */
532 edit_move_up (edit
, lines
, TRUE
);
533 /* scroll left as much as possible to show the formatted paragraph */
534 edit_scroll_left (edit
, -edit
->start_col
);
536 format_this (t2
, q
- p
, indent
, utf8
);
537 put_paragraph (edit
, t2
, p
, indent
, size
);
538 g_free ((char *) t2
);
540 /* move to the end of paragraph */
541 q
= end_paragraph (edit
, force
);
542 edit_cursor_move (edit
, q
- edit
->buffer
.curs1
);
544 /* try move to the start of next paragraph */
545 if (edit
->buffer
.curs_line
< edit
->buffer
.lines
)
547 edit_execute_cmd (edit
, CK_Home
, -1);
551 edit_execute_cmd (edit
, CK_Down
, -1);
553 while (edit
->buffer
.curs_line
< edit
->buffer
.lines
554 && edit_line_is_blank (edit
, edit
->buffer
.curs_line
));
558 /* --------------------------------------------------------------------------------------------- */