1 /* wordproc.c - word-processor mode for the editor: does dynamic
3 Copyright (C) 1996 Paul Sheer
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 * \brief Source: word-processor mode for the editor: does dynamic paragraph formatting
31 #include <sys/types.h>
40 #include "lib/global.h"
42 #include "edit-impl.h"
43 #include "edit-widget.h"
44 #include "src/main.h" /* option_tab_spacing */
46 #define tab_width option_tab_spacing
48 #define NO_FORMAT_CHARS_START "-+*\\,.;:&>"
49 #define FONT_MEAN_WIDTH 1
52 line_start (WEdit
*edit
, long line
)
60 p
= edit_move_backward (edit
, p
, l
- line
);
62 p
= edit_move_forward (edit
, p
, line
- l
, 0);
64 p
= edit_bol (edit
, p
);
65 while (strchr ("\t ", edit_get_byte (edit
, p
)))
70 static int bad_line_start (WEdit
* edit
, long p
)
73 c
= edit_get_byte (edit
, p
);
74 if (c
== '.') { /* `...' is acceptable */
75 if (edit_get_byte (edit
, p
+ 1) == '.')
76 if (edit_get_byte (edit
, p
+ 2) == '.')
81 if (edit_get_byte (edit
, p
+ 1) == '-')
82 if (edit_get_byte (edit
, p
+ 2) == '-')
83 return 0; /* `---' is acceptable */
86 if (strchr (NO_FORMAT_CHARS_START
, c
))
92 * Find the start of the current paragraph for the purpose of formatting.
93 * Return position in the file.
96 begin_paragraph (WEdit
*edit
, int force
)
99 for (i
= edit
->curs_line
- 1; i
>= 0; i
--) {
100 if (line_is_blank (edit
, i
)) {
105 if (bad_line_start (edit
, line_start (edit
, i
))) {
111 return edit_move_backward (edit
, edit_bol (edit
, edit
->curs1
),
112 edit
->curs_line
- i
);
116 * Find the end of the current paragraph for the purpose of formatting.
117 * Return position in the file.
120 end_paragraph (WEdit
*edit
, int force
)
123 for (i
= edit
->curs_line
+ 1; i
<= edit
->total_lines
; i
++) {
124 if (line_is_blank (edit
, i
)) {
129 if (bad_line_start (edit
, line_start (edit
, i
))) {
134 return edit_eol (edit
,
135 edit_move_forward (edit
, edit_bol (edit
, edit
->curs1
),
136 i
- edit
->curs_line
, 0));
139 static unsigned char *
140 get_paragraph (WEdit
*edit
, long p
, long q
, int indent
, int *size
)
142 unsigned char *s
, *t
;
144 t
= g_try_malloc ((q
- p
) + 2 * (q
- p
) / option_word_wrap_line_length
+
147 t
= g_try_malloc (2 * (q
- p
) + 100);
151 for (s
= t
; p
< q
; p
++, s
++) {
153 if (edit_get_byte (edit
, p
- 1) == '\n')
154 while (strchr ("\t ", edit_get_byte (edit
, p
)))
156 *s
= edit_get_byte (edit
, p
);
158 *size
= (unsigned long) s
- (unsigned long) t
;
164 strip_newlines (unsigned char *t
, int size
)
166 unsigned char *p
= t
;
167 while (size
-- != 0) {
175 This function calculates the number of chars in a line specified to length l in pixels
180 return x
+= tab_width
- x
% tab_width
;
184 line_pixel_length (unsigned char *t
, long b
, int l
)
186 int x
= 0, c
, xn
= 0;
193 xn
= next_tab_pos (x
);
208 next_word_start (unsigned char *t
, int q
, int size
)
213 for (i
= q
; i
< size
; i
++) {
230 /* find the start of a word */
232 word_start (unsigned char *t
, int q
, int size
)
235 if (t
[q
] == ' ' || t
[q
] == '\t')
236 return next_word_start (t
, q
, size
);
244 if (c
== ' ' || c
== '\t')
250 /* replaces ' ' with '\n' to properly format a paragraph */
252 format_this (unsigned char *t
, int size
, int indent
)
255 strip_newlines (t
, size
);
256 ww
= option_word_wrap_line_length
* FONT_MEAN_WIDTH
- indent
;
257 if (ww
< FONT_MEAN_WIDTH
* 2)
258 ww
= FONT_MEAN_WIDTH
* 2;
261 q
= line_pixel_length (t
, q
, ww
);
266 p
= word_start (t
, q
, size
);
268 q
= next_word_start (t
, q
, size
); /* Return the end of the word if the beginning
269 of the word is at the beginning of a line
270 (i.e. a very long word) */
273 if (q
== -1) /* end of paragraph */
281 replace_at (WEdit
* edit
, long q
, int c
)
283 edit_cursor_move (edit
, q
- edit
->curs1
);
284 edit_delete (edit
, 1);
285 edit_insert_ahead (edit
, c
);
288 /* replaces a block of text */
290 put_paragraph (WEdit
* edit
, unsigned char *t
, long p
, int indent
, int size
)
294 cursor
= edit
->curs1
;
296 while (strchr ("\t ", edit_get_byte (edit
, p
)))
298 for (i
= 0; i
< size
; i
++, p
++) {
300 if (t
[i
- 1] == '\n' && c
== '\n') {
301 while (strchr ("\t ", edit_get_byte (edit
, p
)))
303 } else if (t
[i
- 1] == '\n') {
305 edit_cursor_move (edit
, p
- edit
->curs1
);
307 edit_insert_indent (edit
, indent
);
309 cursor
+= edit
->curs1
- p
;
311 } else if (c
== '\n') {
312 edit_cursor_move (edit
, p
- edit
->curs1
);
313 while (strchr ("\t ", edit_get_byte (edit
, p
))) {
314 edit_delete (edit
, 1);
315 if (cursor
> edit
->curs1
)
321 c
= edit_get_byte (edit
, p
);
323 replace_at (edit
, p
, t
[i
]);
325 edit_cursor_move (edit
, cursor
- edit
->curs1
); /* restore cursor position */
329 test_indent (WEdit
* edit
, long p
, long q
)
332 indent
= edit_indent_width (edit
, p
++);
336 if (edit_get_byte (edit
, p
- 1) == '\n')
337 if (indent
!= edit_indent_width (edit
, p
))
343 format_paragraph (WEdit
*edit
, int force
)
349 if (option_word_wrap_line_length
< 2)
351 if (line_is_blank (edit
, edit
->curs_line
))
353 p
= begin_paragraph (edit
, force
);
354 q
= end_paragraph (edit
, force
);
355 indent
= test_indent (edit
, p
, q
);
356 t
= get_paragraph (edit
, p
, q
, indent
, &size
);
361 if (strchr (NO_FORMAT_CHARS_START
, *t
)) {
365 for (i
= 0; i
< size
- 1; i
++) {
367 if (strchr (NO_FORMAT_CHARS_START
"\t ", t
[i
+ 1])) {
374 format_this (t
, q
- p
, indent
);
375 put_paragraph (edit
, t
, p
, indent
, size
);
378 /* Scroll left as much as possible to show the formatted paragraph */
379 edit_scroll_left (edit
, -edit
->start_col
);