File: docListUtil.c

package info (click to toggle)
ted 2.16-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 13,944 kB
  • ctags: 20,273
  • sloc: ansic: 167,980; makefile: 12,518; sh: 263
file content (370 lines) | stat: -rw-r--r-- 9,444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
/************************************************************************/
/*									*/
/*  Manage the numbers in bulleted and numbered lists.			*/
/*									*/
/*  Levels in the tree correspond to the ilvl value of the paragraphs.	*/
/*									*/
/************************************************************************/

#   include	"tedConfig.h"

#   include	<stdlib.h>
#   include	<string.h>
#   include	<stdio.h>

#   include	<appDebugon.h>

#   include	"docBuf.h"

/************************************************************************/
/*									*/
/*  Determine the path of number styles and formatting instructions	*/
/*  to a certain level.							*/
/*									*/
/************************************************************************/

int docListGetFormatPath(	int *				startPath,
				int *				formatPath,
				const DocumentListLevel **	pDll,
				int				ilvl,
				const DocumentList *		dl,
				const ListOverride *		lo )
    {
    int				level= 0;
    const DocumentListLevel *	dllFound= (const DocumentListLevel *)0;

    if  ( dl->dlLevelCount < 1			||
	  dl->dlLevelCount > DLmaxLEVELS	)
	{ LLDEB(dl->dlLevelCount,DLmaxLEVELS); return -1; }

    while( level < dl->dlLevelCount )
	{
	const DocumentListLevel *	dll= (const DocumentListLevel *)0;
	const ListOverrideLevel *	lol= (const ListOverrideLevel *)0;

	int				startAt= 0;

	if  ( level < lo->loLevelCount )
	    { lol= &(lo->loLevels[level]);	}
	if  ( level < dl->dlLevelCount )
	    { dll= &(dl->dlLevels[level]);	}

	if  ( dll )
	    { startAt= dll->dllStartAt;	}
	if  ( lol && lol->lolOverrideStartAt )
	    { startAt= lol->lolListLevel.dllStartAt;	}

	if  ( lol && lol->lolOverrideFormat )
	    { dll= &(lol->lolListLevel);	}

	startPath[level]= startAt;
	formatPath[level]= dll->dllNumberStyle;

	if  ( level == ilvl )
	    { dllFound= dll;	}

	level++;
	}

    if  ( ! dllFound )
	{ XDEB(dllFound); return -1; }

    *pDll= dllFound;
    return 0;
    }

/************************************************************************/
/*									*/
/*  Collect list related information for a paragraph.			*/
/*									*/
/*  1)  Paranoia: check list number.					*/
/*  2)  Get override and number tree.					*/
/*  3)  Link override to list if nexessary.				*/
/*  4)  Paranoia again: Is it an existing list?				*/
/*									*/
/************************************************************************/

int docGetListOfOverride(	ListOverride *			lo,
				const DocumentListTable *	dlt )
    {
    int				li;
    const DocumentList *	dl;

    if  ( lo->loListIndex >= 0 )
	{ return lo->loListIndex;	}

    dl= dlt->dltLists;
    for ( li= 0; li < dlt->dltListCount; dl++, li++ )
	{
	if  ( dl->dlListID == lo->loListID )
	    { lo->loListIndex= li; return li; }
	}

    LDEB(lo->loListID);
    return -1;
    }

int docGetListOfParagraph(	ListOverride **			pLo,
				ListNumberTreeNode **		pRoot,
				DocumentList **			pDl,
				int				ls,
				BufferDocument *		bd )
    {
    DocumentProperties *	dp= &(bd->bdProperties);
    ListOverrideTable *		lot= &(dp->dpListOverrideTable);
    DocumentListTable *		dlt= &(dp->dpListTable);

    ListOverride *		lo;
    DocumentList *		dl= (DocumentList *)0;
    ListNumberTreeNode *	root;

    /*  1  */
    if  ( ls < 0				||
	  ls >= lot->lotOverrideCount		||
	  ls >= bd->bdListNumberTreeCount	)
	{
	LLLDEB(ls,lot->lotOverrideCount,bd->bdListNumberTreeCount);
	return -1;
	}

    /*  2  */
    lo= lot->lotOverrides+ ls;
    root= bd->bdListNumberTrees+ ls;

    /*  3,4  */
    if  ( lo->loListIndex < 0 && docGetListOfOverride( lo, dlt ) < 0 )
	{ LLDEB(lo->loListIndex,dlt->dltListCount); return -1; }

    dl= dlt->dltLists+ lo->loListIndex;

    *pLo= lo; *pRoot= root; *pDl= dl;

    return 0;
    }

/************************************************************************/
/*									*/
/*  Set the list number field at the head of a fresh paragraph.		*/
/*									*/
/************************************************************************/

int docInsertListtextField(		BufferItem *		paraBi,
					BufferDocument *	bd )
    {
    TextParticule *		tp= paraBi->biParaParticules;

    ListNumberTreeNode *	root;
    int				paraNr= docNumberOfParagraph( paraBi );

    if  ( docInsertParaHeadField( paraBi, bd,
				    DOCfkLISTTEXT, tp->tpTextAttributeNumber ) )
	{ LDEB(1); return -1;	}

    if  ( paraBi->biParaListOverride >= bd->bdListNumberTreeCount )
	{
	LLLDEB(paraNr,paraBi->biParaListOverride,bd->bdListNumberTreeCount);
	return -1;
	}

    root= &(bd->bdListNumberTrees[paraBi->biParaListOverride]);

    if  ( docListNumberTreeInsertParagraph( root,
					paraBi->biParaListLevel, paraNr ) )
	{ LDEB(paraNr); return -1;	}

    return 0;
    }

/************************************************************************/
/*									*/
/*  Remove a paragraph from its list.					*/
/*									*/
/************************************************************************/

int docRemoveParagraphFromList(		BufferItem *		paraBi,
					BufferDocument *	bd )
    {
    int				rval= 0;
    ListNumberTreeNode *	root;
    int				paraNr= docNumberOfParagraph( paraBi );

    if  ( paraBi->biParaListOverride >= bd->bdListNumberTreeCount )
	{
	LLLDEB(paraNr,paraBi->biParaListOverride,bd->bdListNumberTreeCount);
	paraBi->biParaListOverride= 0;
	paraBi->biParaListLevel= 0;
	return -1;
	}

    root= &(bd->bdListNumberTrees[paraBi->biParaListOverride]);

    if  ( docListNumberTreeDeleteParagraph( root, paraNr ) )
	{ LDEB(paraNr); rval= -1;	}

    paraBi->biParaListOverride= 0;
    paraBi->biParaListLevel= 0;

    return rval;
    }

/************************************************************************/
/*									*/
/*  Find the first list in the selection.				*/
/*									*/
/************************************************************************/

int docFindListOfSelection(	int *				pLs,
				int *				pLevel,
				int *				pMultiList,
				int *				pMultiLevel,
				int *				pParaNr,
				const DocumentSelection *	ds )
    {
    BufferItem *			bi;

    int					ls= -1;
    int					level= -1;
    int					paraNr= -1;
    int					multiList= 0;
    int					multiLevel= 0;

    bi= ds->dsBegin.dpBi;
    while( bi )
	{
	const ParagraphProperties *	pp;

	pp= &(bi->biParaProperties);
	if  ( ls < 0			&&
	      pp->ppListOverride >= 1	)
	    {
	    paraNr= docNumberOfParagraph( bi );
	    ls= pp->ppListOverride;
	    }
	if  ( ls < 0 || pp->ppListOverride != ls )
	    { multiList= 1;	}

	if  ( ls > 0			&&
	      pp->ppListOverride == ls	)
	    {
	    if  ( level < 0 )
		{ level= pp->ppListLevel;	}
	    else{
		if  ( level != pp->ppListLevel )
		    { multiLevel= 1;	}
		}
	    }

	if  ( bi == ds->dsEnd.dpBi )
	    { break;	}

	bi= docNextParagraph( bi );
	if  ( ! bi )
	    { XDEB(bi);	}
	}

    if  ( paraNr < 0 )
	{ return 1;	}

    *pLs= ls;
    *pLevel= level;
    *pMultiList= multiList;
    *pMultiLevel= multiLevel;
    *pParaNr= paraNr;

    return 0;
    }

/************************************************************************/
/*									*/
/*  The ruler of a list was changed: transfer properties to the		*/
/*  paragraphs in the list.						*/
/*									*/
/*  NOTE: The implementation relies on the fact that the root of the	*/
/*	tree is not a paragraph that has to be adjusted.		*/
/*									*/
/************************************************************************/

static int docApplyListRulerLevel(
				const ListNumberTreeNode *	lntn,
				int				level,
				const DocumentList *		dl,
				const ListOverride *		lo,
				BufferItem *			rootBi )
    {
    const DocumentListLevel *	dll= (const DocumentListLevel *)0;
    const ListOverrideLevel *	lol= (const ListOverrideLevel *)0;

    int				rval= 0;

    int				i;
    const ListNumberTreeNode *	child;

    if  ( level < lo->loLevelCount )
	{ lol= &(lo->loLevels[level]);	}
    if  ( level < dl->dlLevelCount )
	{ dll= &(dl->dlLevels[level]);	}

    if  ( lol && lol->lolOverrideFormat )
	{ dll= &(lol->lolListLevel);	}

    child= lntn->lntnChildren;
    for ( i= 0; i < lntn->lntnChildCount; child++, i++ )
	{
	BufferItem *	paraBi;
	int		changed= 0;
	int		tabsChanged= 0;

	const int	pixels= 0;

	if  ( docApplyListRulerLevel( child, level+ 1, dl, lo, rootBi ) )
	    { LLDEB(level,i); rval= -1;	}

	if  ( child->lntnParagraphNumber < 0 )
	    { continue;	}

	paraBi= docGetParagraphByNumber( rootBi, child->lntnParagraphNumber );
	if  ( ! paraBi )
	    { LXDEB(child->lntnParagraphNumber,paraBi); rval= -1; continue; }

	if  ( paraBi->biParaListLevel != level )
	    {
	    LLLDEB(child->lntnParagraphNumber,paraBi->biParaListLevel,level);
	    rval= -1;
	    }

	if  ( ! dll )
	    { XDEB(dll); continue;		}

	if  ( paraBi->biParaFirstIndentTwips != dll->dllFirstIndentTwips )
	    {
	    paraBi->biParaFirstIndentTwips= dll->dllFirstIndentTwips;
	    changed= 1;
	    }

	if  ( paraBi->biParaLeftIndentTwips != dll->dllLeftIndentTwips )
	    {
	    paraBi->biParaLeftIndentTwips= dll->dllLeftIndentTwips;
	    changed= 1;
	    }

	if  ( docCopyTabStopList( &tabsChanged, &(paraBi->biParaTabStopList),
					    &(dll->dllTabStopList), pixels ) )
	    { LDEB(1); return -1;	}

	if  ( tabsChanged )
	    { changed= 1;	}

	if  ( changed )
	    { paraBi->biParaLineCount= 0; }

	}

    return rval;
    }

int docApplyListRuler(	const ListNumberTreeNode *	root,
			const DocumentList *		dl,
			const ListOverride *		lo,
			BufferDocument *		bd )
    { return docApplyListRulerLevel( root, 0, dl, lo, &(bd->bdItem) ); }