summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par3.cxx
blob: 1f72acc69dfd0be80fe56b400ac16f95608cea17 (plain)
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
/*************************************************************************
 *
 *  $RCSfile: ww8par3.cxx,v $
 *
 *  $Revision: 1.5 $
 *
 *  last change: $Author: cmc $ $Date: 2001-02-06 11:10:53 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifdef PCH
#include "filt_pch.hxx"
#endif


#pragma hdrstop

#ifndef _HINTIDS_HXX
#include <hintids.hxx>
#endif

#ifndef _COM_SUN_STAR_FORM_XFORMSSUPPLIER_HPP_
#include <com/sun/star/form/XFormsSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_FORM_XFORM_HPP_
#include <com/sun/star/form/XForm.hpp>
#endif
#ifndef _COM_SUN_STAR_FORM_XIMAGEPRODUCERSUPPLIER_HPP_
#include <com/sun/star/form/XImageProducerSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_FORM_XFORMCONTROLLER_HPP_
#include <com/sun/star/form/XFormController.hpp>
#endif
#ifndef _COM_SUN_STAR_FORM_XFORMCOMPONENT_HPP_
#include <com/sun/star/form/XFormComponent.hpp>
#endif
#ifndef _COM_SUN_STAR_FORM_XFORMCONTROLLERLISTENER_HPP_
#include <com/sun/star/form/XFormControllerListener.hpp>
#endif
#ifndef _COM_SUN_STAR_FRAME_XSTORABLE_HPP_
#include <com/sun/star/frame/XStorable.hpp>
#endif
#ifndef _COM_SUN_STAR_FRAME_XMODEL_HPP_
#include <com/sun/star/frame/XModel.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XCONNECTABLESHAPE_HPP_
#include <com/sun/star/drawing/XConnectableShape.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XCONNECTORSHAPE_HPP_
#include <com/sun/star/drawing/XConnectorShape.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPE_HPP_
#include <com/sun/star/drawing/XShape.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XCONTROLSHAPE_HPP_
#include <com/sun/star/drawing/XControlShape.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPEALIGNER_HPP_
#include <com/sun/star/drawing/XShapeAligner.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPEGROUP_HPP_
#include <com/sun/star/drawing/XShapeGroup.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPEDESCRIPTOR_HPP_
#include <com/sun/star/drawing/XShapeDescriptor.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XUNIVERSALSHAPEDESCRIPTOR_HPP_
#include <com/sun/star/drawing/XUniversalShapeDescriptor.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPEMIRROR_HPP_
#include <com/sun/star/drawing/XShapeMirror.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPEARRANGER_HPP_
#include <com/sun/star/drawing/XShapeArranger.hpp>
#endif
#ifndef _COM_SUN_STAR_DRAWING_XDRAWPAGE_HPP_
#include <com/sun/star/drawing/XDrawPage.hpp>
#endif
//#ifndef _COM_SUN_STAR_DRAWING_XSHAPEBINDER_HPP_
//#include <com/sun/star/drawing/XShapeBinder.hpp>
//#endif
#ifndef _COM_SUN_STAR_DRAWING_XSHAPES_HPP_
#include <com/sun/star/drawing/XShapes.hpp>
#endif
//#ifndef _COM_SUN_STAR_DRAWING_XSHAPEGROUPER_HPP_
//#include <com/sun/star/drawing/XShapeGrouper.hpp>
//#endif
//#ifndef _COM_SUN_STAR_DRAWING_XSHAPECOMBINER_HPP_
//#include <com/sun/star/drawing/XShapeCombiner.hpp>
//#endif
#ifndef _COM_SUN_STAR_DRAWING_XDRAWPAGESUPPLIER_HPP_
#include <com/sun/star/drawing/XDrawPageSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XSINGLESERVICEFACTORY_HPP_
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#endif
//#ifndef _COM_SUN_STAR_LOADER_XIMPLEMENTATIONLOADER_HPP_
//#include <com/sun/star/loader/XImplementationLoader.hpp>
//#endif
//#ifndef _COM_SUN_STAR_LOADER_CANNOTACTIVATEFACTORYEXCEPTION_HPP_
//#include <com/sun/star/loader/CannotActivateFactoryException.hpp>
//#endif
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXCONTAINER_HPP_
#include <com/sun/star/container/XIndexContainer.hpp>
#endif
#ifndef _COM_SUN_STAR_TEXT_VERTORIENTATION_HPP_
#include <com/sun/star/text/VertOrientation.hpp>
#endif
#ifndef _COM_SUN_STAR_TEXT_TEXTCONTENTANCHORTYPE_HPP_
#include <com/sun/star/text/TextContentAnchorType.hpp>
#endif

#ifndef _SFXITEMITER_HXX //autogen
#include <svtools/itemiter.hxx>
#endif

#ifndef _SVX_FONTITEM_HXX
#include <svx/fontitem.hxx>
#endif
#ifndef _SVX_LRSPITEM_HXX //autogen
#include <svx/lrspitem.hxx>
#endif


#ifndef _SVX_FHGTITEM_HXX
#include <svx/fhgtitem.hxx>
#endif
#ifndef _SVX_COLRITEM_HXX
#include <svx/colritem.hxx>
#endif
#ifndef _SVX_WGHTITEM_HXX
#include <svx/wghtitem.hxx>
#endif
#ifndef _SVX_CRSDITEM_HXX
#include <svx/crsditem.hxx>
#endif
#ifndef _SVX_UDLNITEM_HXX
#include <svx/udlnitem.hxx>
#endif
#ifndef _SVX_POSTITEM_HXX
#include <svx/postitem.hxx>
#endif

#ifndef _SV_SVAPP_HXX
#include <vcl/svapp.hxx>
#endif
#ifndef _SV_WRKWIN_HXX
#include <vcl/wrkwin.hxx>
#endif
#ifndef _SV_OUTDEV_HXX
#include <vcl/outdev.hxx>
#endif

/*
#ifndef _TOOLKIT_UNOIFACE_HXX
#include <toolkit/unoiface.hxx>
#endif
*/

#ifndef _TOOLKIT_UNOHLP_HXX
#include <toolkit/helper/vclunohelper.hxx>
#endif

#ifndef _ERRHDL_HXX //autogen
#include <errhdl.hxx>
#endif
#ifndef _UNOOBJ_HXX //autogen
#include <unoobj.hxx>
#endif
#ifndef _DOC_HXX //autogen
#include <doc.hxx>
#endif
#ifndef _DOCARY_HXX
#include <docary.hxx>
#endif
#ifndef _SWDOCSH_HXX //autogen
#include <docsh.hxx>
#endif
#ifndef _NUMRULE_HXX //autogen
#include <numrule.hxx>
#endif
#ifndef _PARATR_HXX //autogen
#include <paratr.hxx>
#endif
#ifndef _CHARATR_HXX //autogen
#include <charatr.hxx>
#endif
#ifndef _CHARFMT_HXX //autogen
#include <charfmt.hxx>
#endif
#ifndef _NDTXT_HXX //autogen
#include <ndtxt.hxx>
#endif

#ifndef _WW8PAR_HXX
#include <ww8par.hxx>
#endif
#ifndef _WW8PAR2_HXX
#include <ww8par2.hxx>  // wg. Listen-Attributen in Styles
#endif

#ifndef _MSOCXIMEX_HXX
#include <svx/msocximex.hxx>
#endif

#ifdef __WW8_NEEDS_COPY
void WW8PicShadowToReal(  WW8_PIC_SHADOW*  pPicS,  WW8_PIC*  pPic );
#endif // defined __WW8_NEEDS_COPY

using namespace ::com::sun::star;


//-----------------------------------------
//            UNO-Controls
//-----------------------------------------

#define WW8_DFLT_EDIT_WIDTH 2750
#define WW8_DFLT_EDIT_HEIGHT 500
#define WW8_DFLT_CHECKBOX_WIDTH 320
#define WW8_DFLT_CHECKBOX_HEIGHT 320

static sal_Char sWW8_form[] = "WW-Standard";
static sal_Char sWW8_edit[] = "TextBox";
static sal_Char sWW8_checkbox[] = "CheckBox";



BOOL SwWW8ImplReader::InsertControl(
    const uno::Reference< form::XFormComponent > & rFComp,
    const awt::Size& rSize,
    uno::Reference< drawing::XShape > *pShape,
    BOOL bFloatingCtrl )
{
    return pFormImpl->InsertControl(rFComp, rSize, pShape,bFloatingCtrl);
}


void SwWW8ImplReader::BuildInputField( sal_uInt16 nType, const String& rParam )
{
    if( nIniFlags & WW8FL_NO_VCCONTROLS )
    {
#ifdef DEBUG
        rDoc.Insert( *pPaM, sal_Unicode ('#') );
        static long l;
        l++;
#endif
        return;
    }

    if( !pDrawModel )               // MIB: Braucht man das?
        GrafikCtor();
    if( !pFormImpl )
        pFormImpl = new SwMSConvertControls(rDoc.GetDocShell(),pPaM);

    const uno::Reference< lang::XMultiServiceFactory > & rServiceFactory =
        pFormImpl->GetServiceFactory();
    if(!rServiceFactory.is())
        return;

    String sType;
    switch( (SwWw8ControlType)nType )
    {
    case WW8_CT_CHECKBOX:
        sType.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "CheckBox" ));
        break;
//  case WW8_CT_EDIT:
    default:
        sType.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "TextField" ));
                                // see change in ../html/htmlform.cxx
        break;                  // as of 1999/11/25 11:20:16 made by O.Specht
    }

    String sServiceName( WW8_ASCII2STR( "com.sun.star.form.component." ));
    sServiceName.Append( sType );
    uno::Reference< uno::XInterface >  xCreate = rServiceFactory->createInstance( sServiceName );
    if( !xCreate.is() )
        return;

    uno::Reference< form::XFormComponent > xFComp( xCreate, uno::UNO_QUERY );
    if( !xFComp.is() )
        return;

    com::sun::star::awt::Size aSz;
    String sName;
    sal_uInt16 nControl;
    switch( (SwWw8ControlType)nType )
    {
    case WW8_CT_EDIT:
        aSz.Width = WW8_DFLT_EDIT_WIDTH; // etwas 20 Zeichen
        aSz.Height = WW8_DFLT_EDIT_HEIGHT;
        sName.AssignAscii( sWW8_edit );
        nControl = pFormImpl->GetEditNum();
        break;

    case WW8_CT_CHECKBOX:
        aSz.Width = WW8_DFLT_CHECKBOX_WIDTH;
        aSz.Height = WW8_DFLT_CHECKBOX_HEIGHT;
        sName.AssignAscii( sWW8_checkbox );
        nControl = pFormImpl->GetCheckboxNum();
        break;
    }

    uno::Reference< beans::XPropertySet >  xPropSet( xCreate, uno::UNO_QUERY );

    String sTmp( nControl );
    UniString sWTmp( sTmp );
    sName += sWTmp;
    uno::Any aTmp;
    rtl::OUString uTmp(sName);
    aTmp <<= uTmp;
    xPropSet->setPropertyValue( WW8_ASCII2STR( "Name" ), aTmp );

    InsertControl( xFComp, aSz );
}

//cmc, OCX i.e. word 97 form controls
eF_ResT SwWW8ImplReader::Read_F_OCX( WW8FieldDesc*, String& rStr )
{
    if( bObj && nPicLocFc )
        nObjLocFc = nPicLocFc;
    bEmbeddObj = TRUE;
    return F_TEXT;
}

eF_ResT SwWW8ImplReader::Read_F_FormTextBox( WW8FieldDesc* pF, String& rStr )
{
    if (0x01 == rStr.GetChar( pF->nLCode-1 ))
    {
        WW8FormulaEditBox aFormula(*this);
        if (ImportFormulaControl(aFormula,pF->nSCode+pF->nLCode-1, WW8_CT_EDIT))
        {
            if( !pFormImpl )
                pFormImpl = new SwMSConvertControls(rDoc.GetDocShell(),pPaM);
            /* #80205#
            Here we have a small complication. This formula control contains
            the default text that is displayed if you edit the form field in
            the "default text" area. But MSOffice does not display that
            information, instead it display the result of the field,
            MSOffice just uses the default text of the control as its
            initial value for the displayed default text. So we will swap in
            the field result into the formula here in place of the default
            text.
            */
            aFormula.sDefault = GetFieldResult(pF);

            /* #80205#
            And also a blank TextBox is indicated by 5 of these
            placeholder chars, convert a field result of this stuff
            into an empty string.
            */
            static sal_Unicode __READONLY_DATA aFormTextBoxBlank[] =
            {
                0x2002,0x2002,0x2002,0x2002,0x2002
            };
            if (aFormula.sDefault == aFormTextBoxBlank)
                aFormula.sDefault.Erase();

            if (pFormImpl->InsertFormula(aFormula))
                return F_OK;
        }
    }
    ASSERT(0,"New Formula Code Failed!\n");
    BuildInputField( WW8_CT_EDIT, rStr );
    return F_OK;

}

eF_ResT SwWW8ImplReader::Read_F_FormCheckBox( WW8FieldDesc* pF, String& rStr )
{
    if (0x01 == rStr.GetChar( pF->nLCode-1 ))
    {
        WW8FormulaCheckBox aFormula(*this);
        if (ImportFormulaControl(aFormula,pF->nSCode+pF->nLCode-1,
            WW8_CT_CHECKBOX))
        {
            if( !pFormImpl )
                pFormImpl = new SwMSConvertControls(rDoc.GetDocShell(),pPaM);
            if (pFormImpl->InsertFormula(aFormula))
                return F_OK;
        }
    }
    ASSERT(!this,"New Formula Code Failed!\n");
    BuildInputField( WW8_CT_CHECKBOX, rStr );
    return F_OK;
}

eF_ResT SwWW8ImplReader::Read_F_FormListBox( WW8FieldDesc*, String& rStr )
{
    return F_TAGIGN;
}


void SwWW8ImplReader::DeleteFormImpl()
{
    delete pFormImpl;
    pFormImpl = 0;
}

//----------------------------------------------------------------------------
//          WW8ListManager          oeffentliche Methoden stehen ganz am Ende
//------------------------- ============ --------------- ============ --------



// Hilfs-Deklarationen ///////////////////////////////////////////////////////
//
// Style Id's for each level
typedef sal_uInt16 WW8aIdSty[    nWW8MaxListLevel];
// Zeichenattribute aus GrpprlChpx
typedef SfxItemSet* WW8aISet[nWW8MaxListLevel];
// Zeichen Style Pointer
typedef SwCharFmt* WW8aCFmt[ nWW8MaxListLevel];

struct WW8LST   // nur DIE Eintraege, die WIR benoetigen!
{
    WW8aIdSty   aIdSty;     // Style Id's for each level,
                            //   nIStDNil if no style linked
    sal_uInt32      nIdLst;     // Unique List ID
    sal_uInt32      nTplC;      // Unique template code - Was ist das bloss?
    sal_Bool        bSimpleList:1;  // Flag: Liste hat nur EINEN Level
    sal_Bool        bRestartHdn:1;  // WW6-Kompatibilitaets-Flag:
                                                        //   true if the list should start numbering over
};                                                      //   at the beginning of each section

struct WW8LFO   // nur DIE Eintraege, die WIR benoetigen!
{
    SwNumRule*  pNumRule;   // Parent NumRule
    sal_uInt32      nIdLst;     // Unique List ID
    sal_uInt8       nLfoLvl;    // count of levels whose format is overridden
    sal_Bool        bSimpleList;
};

#define nIStDNil 0x0FFF // d.h. KEIN Style ist an den Level gelinkt
#define nSizeOfLST 0x1C

struct WW8LVL   // nur DIE Eintraege, die WIR benoetigen!
{
    long    nStartAt;       // start at value for this value
    long    nV6DxaSpace;// Ver6-Compatible: min Space between Num anf ::com::sun::star::text::Paragraph
    long    nV6Indent;  // Ver6-Compatible: Breite des Prefix Textes; ggfs. zur
                        // Definition d. Erstzl.einzug nutzen!
    // Absatzattribute aus GrpprlPapx
    sal_uInt16  nDxaLeft;               // linker Einzug
    short   nDxaLeft1;          // Erstzeilen-Einzug

    sal_uInt8   nNFC;               // number format code
    sal_uInt8   aOfsNumsXCH[nWW8MaxListLevel];// Offset der Feldkodes im Num-X-String
    sal_uInt8   nLenGrpprlChpx; // length, in bytes, of the LVL's grpprlChpx
    sal_uInt8   nLenGrpprlPapx; // length, in bytes, of the LVL's grpprlPapx
    sal_uInt8   nAlign: 2;  // alignment (left, right, centered) of the number
    sal_Bool    bLegal: 1;  // egal
    sal_Bool    bNoRest:1;  // egal
    sal_Bool    bV6Prev:1;  // Ver6-Compatible: number will include previous levels
    sal_Bool    bV6PrSp:1;  // Ver6-Compatible: egal
    sal_Bool    bV6:        1;  // falls sal_True, beachte die V6-Compatible Eintraege!
    sal_uInt8   bDummy: 1;  // (macht das Byte voll)

};

struct WW8LFOLVL
{
    long nStartAt;          // start-at value if bFormat==false and bStartAt == true
                                            // (if bFormat==true, the start-at is stored in the LVL)
    sal_uInt8 nLevel;               // the level to be overridden
    // dieses Byte ist _absichtlich_ nicht in das folgende Byte hineingepackt   !!
    // (siehe Kommentar unten bei struct WW8LFOInfo)

    sal_Bool bStartAt :1;       // true if the start-at value is overridden
    sal_Bool bFormat    :1;     // true if the formatting is overriden
};



// in den ListenInfos zu speichernde Daten ///////////////////////////////////
//
struct WW8LSTInfo   // sortiert nach nIdLst (in WW8 verwendete Listen-Id)
{
    WW8aIdSty   aIdSty;          // Style Id's for each level
    WW8aISet    aItemSet;        // Zeichenattribute aus GrpprlChpx
    WW8aCFmt    aCharFmt;        // Zeichen Style Pointer

    SwNumRule*  pNumRule;        // Zeiger auf entsprechende Listenvorlage im Writer
    sal_uInt32      nIdLst;          // WW8Id dieser Liste
    sal_uInt16      nStreamPos;  // Reihenfolge des Auftretens des LST im PLCF LST
                                                     // siehe auch "WW8ListManager::GetLSTByStreamPos()"
    sal_Bool        bSimpleList:1;// Flag, ob diese NumRule nur einen Level verwendet
    sal_Bool        bUsedInDoc :1;// Flag, ob diese NumRule im Doc verwendet wird,
                                                     //   oder beim Reader-Ende geloescht werden sollte

    // Hilfs Ctor, benoetigt innerhalb von WW8ListManager::GetLSTByListId()
    WW8LSTInfo(sal_uInt32 nIdLst_): nIdLst( nIdLst_){}

    // normaler Ctor
    WW8LSTInfo(SwNumRule* pNumRule_, WW8LST& aLST, sal_uInt16 nStreamPos_):
        nIdLst(         aLST.nIdLst         ),
        nStreamPos( nStreamPos_         ),
        pNumRule(       pNumRule_               ),
        bSimpleList(aLST.bSimpleList),
        bUsedInDoc( 0 )
    {
        memcpy( aIdSty, aLST.aIdSty, sizeof( aIdSty   ));
        memset(&aItemSet, 0,  sizeof( aItemSet ));
        memset(&aCharFmt, 0,  sizeof( aCharFmt ));
    }

    sal_Bool operator==( const WW8LSTInfo& rEntry ) const
    {   return nIdLst == rEntry.nIdLst; }
    sal_Bool operator<( const WW8LSTInfo& rEntry ) const
    {   return nIdLst < rEntry.nIdLst;  }
};

SV_IMPL_OP_PTRARR_SORT(WW8LSTInfos, WW8LSTInfo_Ptr)


// in den ListenFormatOverrideInfos zu speichernde Daten /////////////////////
//
struct WW8LFOInfo   // unsortiert, d.h. Reihenfolge genau wie im WW8 Stream
{
    SwNumRule* pNumRule;         // Zeiger auf entsprechende Listenvorlage im Writer
                                                     // entweder: Liste in LSTInfos oder eigene Liste
                                                     // (im Ctor erstmal die aus den LSTInfos merken)

    sal_uInt32  nIdLst;          // WW8-Id der betreffenden Liste
    sal_uInt8   nLfoLvl;             // count of levels whose format is overridden
    // Ja, ich natuerlich koennten wir nLfoLvl (mittels :4) noch in das folgende
    // Byte mit hineinpacken, doch waere das eine ziemliche Fehlerquelle,
    // an dem Tag, wo MS ihr Listenformat auf mehr als 15 Level aufbohren.

    sal_Bool    bOverride   :1;// Flag, ob die NumRule nicht in pLSTInfos steht,
                                                     //   sondern fuer pLFOInfos NEU angelegt wurde
    sal_Bool    bSimpleList:1;// Flag, ob diese NumRule nur einen Level verwendet
    sal_Bool    bUsedInDoc  :1;// Flag, ob diese NumRule im Doc verwendet wird,
                                                     //   oder beim Reader-Ende geloescht werden sollte
    sal_Bool    bLSTbUIDSet :1;// Flag, ob bUsedInDoc in pLSTInfos gesetzt wurde,
                                                     //   und nicht nochmals gesetzt zu werden braucht
    WW8LFOInfo( const WW8LFO& rLFO ):
        nIdLst(         rLFO.nIdLst             ),
        pNumRule(       rLFO.pNumRule           ),// hier bloss die Parent NumRule
        nLfoLvl(        rLFO.nLfoLvl            ),
        bOverride(  rLFO.nLfoLvl ? sal_True : sal_False ),
        bSimpleList(rLFO.bSimpleList            ),
        bUsedInDoc(             0               ),
        bLSTbUIDSet(            0               ){}
};

SV_IMPL_PTRARR( WW8LFOInfos, WW8LFOInfo_Ptr );


// Hilfs-Methoden ////////////////////////////////////////////////////////////
//

// finden der Sprm-Parameter-Daten, falls Sprm im Grpprl enthalten
sal_uInt8* WW8ListManager::GrpprlHasSprm(sal_uInt16 nId, sal_uInt8& rSprms, sal_uInt8 nLen)
{
    sal_uInt8* pSprms = &rSprms;
    for(sal_uInt8 i=0; i<nLen; )
    {
        sal_uInt8 nDelta;
        sal_uInt16 nAktId = WW8GetSprmId(rFib.nVersion, pSprms, &nDelta );
        if( nAktId == nId ) // Sprm gefunden
            return pSprms + 1 + nDelta + WW8SprmDataOfs( nId );
                                                // gib Zeiger auf Daten
        short x = WW8GetSprmSizeBrutto(rFib.nVersion, pSprms, &nAktId );
        i += x;
        pSprms += x;
    }
    return 0;                           // Sprm nicht gefunden
}

// Zugriff ueber die List-Id des LST Eintrags
WW8LSTInfo* WW8ListManager::GetLSTByListId( sal_uInt32 nIdLst ) const
{
    WW8LSTInfo aEntry( nIdLst );
    sal_uInt16 nPos;
    if( !pLSTInfos->Seek_Entry( &aEntry, &nPos ) ) return 0;
    return pLSTInfos->GetObject( nPos );
}

// Zugriff ueber Reihenfolge der LST Eintraege im PLCF LST (Null basiert)
WW8LSTInfo* WW8ListManager::GetLSTByStreamPos( sal_uInt16 nStreamPos ) const
{
    if( !pLSTInfos ) return 0;
    WW8LSTInfo* pEntry;
    for(sal_uInt16 nPos = nLSTInfos; nPos; )
    {
        pEntry = pLSTInfos->GetObject( --nPos );
        if( pEntry && ( pEntry->nStreamPos == nStreamPos )) return pEntry;
    }
    return 0;
}

sal_Bool WW8ListManager::ReadLVL( sal_uInt8 nLevel,
                              SwNumFmt& rNumFmt,
                              SfxItemSet*& rpItemSet,
                              sal_uInt16 nLevelStyle,
                              sal_Bool bSetStartNo )
{
    sal_uInt8           aBits1;
    sal_uInt8           nUpperLevel = 0;    // akt. Anzeigetiefe fuer den Writer
    sal_uInt16          nStartNo    = 0;    // Start-Nr. fuer den Writer
    SvxExtNumType   eType;              // Writer-Num-Typ
    SvxAdjust       eAdj;               // Ausrichtung (Links/rechts/zent.)
    sal_Unicode     cBullet;
    String          aPrefix;
    String          aPostfix;
    WW8LVL          aLVL;
    //
    // 1. LVLF einlesen
    //
    memset(&aLVL, 0, sizeof( aLVL ));
    rSt >> aLVL.nStartAt;
    rSt >> aLVL.nNFC;
    rSt >> aBits1;
    if( 0 != rSt.GetError() ) return sal_False;
    aLVL.nAlign = (aBits1 & 0x03);
    if( aBits1 & 0x10 ) aLVL.bV6Prev    = sal_True;
    if( aBits1 & 0x20 ) aLVL.bV6PrSp    = sal_True;
    if( aBits1 & 0x40 ) aLVL.bV6        = sal_True;
    sal_Bool bLVLOkB = sal_True;
    for(sal_uInt8 nLevelB = 0; nLevelB < nWW8MaxListLevel; nLevelB++)
    {
        rSt >> aLVL.aOfsNumsXCH[ nLevelB ];
        if( 0 != rSt.GetError() )
        {
            bLVLOkB = sal_False;
            break;
        }
        if( !nUpperLevel && !aLVL.aOfsNumsXCH[ nLevelB ] )
        {
            nUpperLevel = nLevelB;
        }
    }
    if( !bLVLOkB ) return sal_False;

    // falls kein NULL als Terminierungs-Char kam,
    // ist die Liste voller Indices, d.h. alle Plaetze sind besetzt,
    // also sind alle Level anzuzeigen
    if( !nUpperLevel )
        nUpperLevel = nWW8MaxListLevel;


    rSt.SeekRel( 1 );
    rSt >> aLVL.nV6DxaSpace;
    rSt >> aLVL.nV6Indent;
    rSt >> aLVL.nLenGrpprlChpx;
    rSt >> aLVL.nLenGrpprlPapx;
    rSt.SeekRel( 2 );
    if( 0 != rSt.GetError()) return sal_False;

    //
    // 2. ggfs. PAPx einlesen und nach Einzug-Werten suchen
    //
    if( aLVL.nLenGrpprlPapx )
    {
        sal_uInt8 aGrpprlPapx[ 255 ];
        if(aLVL.nLenGrpprlPapx != rSt.Read(&aGrpprlPapx,
                                            aLVL.nLenGrpprlPapx )) return sal_False;
        // "sprmPDxaLeft"  pap.dxaLeft;dxa;word;
        sal_uInt8* pSprm;
        if( (pSprm = GrpprlHasSprm(0x840F,aGrpprlPapx[0],
                                    aLVL.nLenGrpprlPapx)) )
        {
            short nDxaLeft = SVBT16ToShort( pSprm );
            aLVL.nDxaLeft =   (0 < nDxaLeft)
                            ? (sal_uInt16)nDxaLeft
                            : (sal_uInt16)(-nDxaLeft);
        }
        // "sprmPDxaLeft1" pap.dxaLeft1;dxa;word;
        if( (pSprm = GrpprlHasSprm(0x8411,aGrpprlPapx[0],
                                    aLVL.nLenGrpprlPapx)) )
            aLVL.nDxaLeft1 = SVBT16ToShort(  pSprm );
    }
    //
    // 3. ggfs. CHPx einlesen und
    //
    if( aLVL.nLenGrpprlChpx )
    {
        sal_uInt8 aGrpprlChpx[ 255 ];
        memset(&aGrpprlChpx, 0, sizeof( aGrpprlChpx ));
        if(aLVL.nLenGrpprlChpx != rSt.Read(&aGrpprlChpx,
                                            aLVL.nLenGrpprlChpx)) return sal_False;
        // neues ItemSet fuer die Zeichenattribute anlegen
        rpItemSet = new SfxItemSet( rDoc.GetAttrPool(), RES_CHRATR_BEGIN,
                                                        RES_CHRATR_END - 1 );
        // Reader-ItemSet-Pointer darauf zeigen lassen
        rReader.SetAktItemSet( rpItemSet );
        // Reader-Style auf den Style dieses Levels setzen
        sal_uInt16 nOldColl = rReader.GetNAktColl();
        sal_uInt16 nNewColl = nLevelStyle;
        if( nIStDNil == nNewColl )
            nNewColl = 0;
        rReader.SetNAktColl( nNewColl );

        // Nun den GrpprlChpx einfach durchnudeln: die Read_xy() Methoden
        // in WW8PAR6.CXX rufen ganz normal ihr NewAttr() oder GetFmtAttr()
        // und diese merken am besetzten Reader-ItemSet-Pointer, dass dieser
        // spezielle ItemSet relevant ist - und nicht ein Stack oder Style!
        short nLen      = aLVL.nLenGrpprlChpx;
        sal_uInt8* pSprms1  = &aGrpprlChpx[0];
        while( 0 < nLen )
        {
            sal_uInt16 nL1 = rReader.ImportSprm( pSprms1, nLen );
            nLen      -= nL1;
            pSprms1   += nL1;
        }
        // Reader-ItemSet-Pointer und Reader-Style zuruecksetzen
        rReader.SetAktItemSet( 0 );
        rReader.SetNAktColl( nOldColl );
    }
    //
    // 4. den Nummerierungsstring einlesen: ergibt Prefix und Postfix
    //
    String sNumString( WW8Read_xstz(rSt, 0, FALSE) );

    //
    // 5. gelesene Werte in Writer Syntax umwandeln
    //
    if( 0 <= aLVL.nStartAt )
        nStartNo = (sal_uInt16)aLVL.nStartAt;

    switch( aLVL.nNFC )
    {
    case   0: eType = SVX_NUM_ARABIC;               break;
    case   1: eType = SVX_NUM_ROMAN_UPPER;          break;
    case   2: eType = SVX_NUM_ROMAN_LOWER;          break;
    case   3: eType = SVX_NUM_CHARS_UPPER_LETTER_N; break;
    case   4: eType = SVX_NUM_CHARS_LOWER_LETTER_N; break;
    case   5: eType = SVX_NUM_ARABIC;               break;  // eigentlich: ORDINAL
    case  23: eType = SVX_NUM_CHAR_SPECIAL;         break;
    case 255: eType = SVX_NUM_NUMBER_NONE;          break;
     default: // nimm default
                eType = SVX_NUM_ARABIC;             break;
    }

    if( SVX_NUM_CHAR_SPECIAL == eType )
    {
        cBullet = sNumString.Len() ? sNumString.GetChar( 0 ) : 0xF0B7;

        if( !cBullet )  // unsave control code?
            cBullet = 0xF0B7;

        aPrefix  = aEmptyStr;
        aPostfix = aEmptyStr;
    }
    else
    {
#if 0
        if(aLVL.aOfsNumsXCH[0] <= 1)
            aPrefix = aEmptyStr;
        else
            aPrefix = sNumString.Copy( 1, aLVL.aOfsNumsXCH[ 0 ]-1 );
#else
        /*
        #83154#, #82192#, ##173##
        Our aOfsNumsXCH seems generally to be an array that contains the
        offset into sNumString of locations where the numbers should be
        filled in, so if the first "fill in a number" slot is greater than
        1 there is a "prefix" before the number
        */
        if(aLVL.aOfsNumsXCH[0] <= 1)
            aPrefix = aEmptyStr;
        else
            aPrefix = sNumString.Copy(0,aLVL.aOfsNumsXCH[0]-1);
#endif

        if( nUpperLevel && ( sNumString.Len() > aLVL.aOfsNumsXCH[ nUpperLevel-1 ] ) )
        {
#if 0
            sNumString += String::CreateFromInt32(
                                    aLVL.aOfsNumsXCH[ nUpperLevel-1 ] );
            aPostfix = sNumString.Copy( 1 );
#else

        /*
        #83154#, #82192#, ##173##
        Bit of madness here when there was a change from a pointer to a
        String class during the rush to OOo initial release. This wasn't meant
        to be "append a number" at all it was originally an "increment a
        pointer"
        */
            aPostfix = sNumString.Copy(aLVL.aOfsNumsXCH[nUpperLevel-1]);
#endif
        }
        else
            aPostfix.Erase();
    }

    switch( aLVL.nAlign )
    {
    case 0: eAdj = SVX_ADJUST_LEFT;     break;
    case 1: eAdj = SVX_ADJUST_CENTER;   break;
    case 2: eAdj = SVX_ADJUST_RIGHT;    break;
    case 3: eAdj = SVX_ADJUST_LEFT;     break;// Writer kann hier kein Block
     default:// undefinierter Wert
                        ASSERT( !this, "Value of aLVL.nAlign is not supported" );
                        // nimm default
                        eAdj = SVX_ADJUST_LEFT;
                        break;
    }
    //
    // 6. entsprechendes NumFmt konfigurieren
    //
    if( bSetStartNo )
        rNumFmt.SetStartValue( nStartNo );
    rNumFmt.eType = eType;
    rNumFmt.SetAdjust( eAdj );

    if( SVX_NUM_CHAR_SPECIAL == eType )
    {
        // erstes Zeichen des Prefix-Textes ist das Bullet
        rNumFmt.SetBulletChar( cBullet );
        // nicht vergessen: unten, nach dem Bauen eventueller Styles
        //                  auch noch SetBulletFont() rufen !!!
    }
    else
    {
        if( aPrefix.Len() )
        // erinnern: Garnix ist default Prefix
            rNumFmt.SetPrefix( aPrefix );
        // erinnern: Punkt ist default  Postfix
        rNumFmt.SetPostfix( aPostfix );
        rNumFmt.SetUpperLevel( nUpperLevel );
    }

    rNumFmt.SetAbsLSpace( aLVL.nDxaLeft );

    if( 0 < aLVL.nDxaLeft1 )
        aLVL.nDxaLeft1 = aLVL.nDxaLeft1 * -1;
    rNumFmt.SetFirstLineOffset( aLVL.nDxaLeft1 );

    return sal_True;
}



void WW8ListManager::AdjustLVL( sal_uInt8       nLevel,
                                SwNumRule& rNumRule,
                                WW8aISet&  rListItemSet,
                                WW8aCFmt&  rCharFmt,
                                sal_Bool&      bNewCharFmtCreated,
                                String     aPrefix )
{
    bNewCharFmtCreated = sal_False;
    SfxItemSet* pThisLevelItemSet;
    SfxItemSet* pLowerLevelItemSet;
    sal_uInt8        nIdenticalItemSetLevel;
    const SfxPoolItem* pItem;

    SwNumFmt aNumFmt  = rNumRule.Get( nLevel );

    pThisLevelItemSet = rListItemSet[ nLevel ];

    if( pThisLevelItemSet && pThisLevelItemSet->Count())
    {
        nIdenticalItemSetLevel = nWW8MaxListLevel;
        SfxItemIter aIter( *pThisLevelItemSet );
        for( sal_uInt8 nLowerLevel = 0; nLowerLevel < nLevel; nLowerLevel++)
        {
            pLowerLevelItemSet = rListItemSet[ nLowerLevel ];
            if(     pLowerLevelItemSet
                && (pLowerLevelItemSet->Count() == pThisLevelItemSet->Count()) )
            {
                nIdenticalItemSetLevel = nLowerLevel;
                sal_uInt16 nWhich = aIter.GetCurItem()->Which();
                while( sal_True )
                {
                    if(  // ggfs. passenden pItem im pLowerLevelItemSet finden
                         (SFX_ITEM_SET != pLowerLevelItemSet->GetItemState(
                                            nWhich, sal_False, &pItem ) )
                        || // virtuellen "!=" Operator anwenden
                         (*pItem != *aIter.GetCurItem() ) )
                    // falls kein Item mit gleicher nWhich gefunden oder Werte
                    // der Items ungleich, Ungleichheit merken und abbrechen!
                    {
                        nIdenticalItemSetLevel = nWW8MaxListLevel;
                        break;
                    }
                    if( aIter.IsAtEnd() )
                        break;
                    nWhich = aIter.NextItem()->Which();
                }

                if( nIdenticalItemSetLevel != nWW8MaxListLevel )
                    break;
            }
        }

        SwCharFmt* pFmt;
        if( nWW8MaxListLevel == nIdenticalItemSetLevel )
        {
            // Style definieren
            String aName( aPrefix.Len() ? aPrefix : rNumRule.GetName() );
            (aName += 'z') += String::CreateFromInt32( nLevel );

            pFmt = rDoc.MakeCharFmt( aName,
                            (SwCharFmt*)rDoc.GetDfltCharFmt() ); // const Wegcasten
            bNewCharFmtCreated = sal_True;
            // Attribute reinsetzen
            pFmt->SetAttr( *pThisLevelItemSet );
        }
        else
        {
            // passenden Style hier anhaengen
            pFmt = rCharFmt[ nIdenticalItemSetLevel ];
        }

        // merken
        rCharFmt[ nLevel ] = pFmt;

        //
        // Style an das NumFormat haengen
        //
        aNumFmt.SetCharFmt( pFmt );
    }
    //
    // ggfs. Bullet Font an das NumFormat haengen
    //
    if( SVX_NUM_CHAR_SPECIAL == aNumFmt.eType )
    {
        SwCharFmt* pFmt = aNumFmt.GetCharFmt();
        Font aFont;
        if( !pFmt )
            aFont = SwNumRule::GetDefBulletFont();
        else
        {
            const SvxFontItem& rFontItem = pFmt->GetFont();
            aFont.SetFamily(    rFontItem.GetFamily()     );
            aFont.SetName(      rFontItem.GetFamilyName() );
            aFont.SetStyleName( rFontItem.GetStyleName()  );
            aFont.SetPitch(     rFontItem.GetPitch()      );
            aFont.SetCharSet(   rFontItem.GetCharSet()    );
        }
        aNumFmt.SetBulletFont( &aFont );
    }
    //
    // und wieder rein in die NumRule
    //
    rNumRule.Set(nLevel, aNumFmt);
}


sal_Bool WW8ListManager::LFOequaltoLST(WW8LFOInfo& rLFOInfo)
{
    sal_Bool bRes = sal_False;
    WW8LSTInfo* pLSTInfo = GetLSTByListId( rLFOInfo.nIdLst );
    if(    pLSTInfo
        && pLSTInfo->pNumRule
        && rLFOInfo.pNumRule
        && (rLFOInfo.nLfoLvl <= (pLSTInfo->bSimpleList ? 1 : nWW8MaxListLevel)))
    {
        const SwNumRule& rLSTRule = *pLSTInfo->pNumRule;
        const SwNumRule& rLFORule = *rLFOInfo.pNumRule;
        bRes = sal_True;
        for(sal_uInt16 nLevel = 0; bRes && (nLevel < rLFOInfo.nLfoLvl); ++nLevel)
        {
            const SwNumFmt& rLSTNumFmt = rLSTRule.Get( nLevel );
            const SwNumFmt& rLFONumFmt = rLFORule.Get( nLevel );
            const SwCharFmt* pLSTCharFmt = rLSTNumFmt.GetCharFmt();
            const SwCharFmt* pLFOCharFmt = rLFONumFmt.GetCharFmt();
            if( pLSTCharFmt && pLFOCharFmt )
            {
                // erst Char-Styles inhaltlich vergleichen,
                // ( siehe: ...\svtools\source\items\itemset.cxx )
                // falls identische Einstellungen, kurz den LFO-Style umhaengen,
                // damit '( rLSTNumFmt == rLFONumFmt )' funktioniert
                if( pLSTCharFmt->GetAttrSet() == pLFOCharFmt->GetAttrSet() )
                    ((SwNumFmt&)rLFONumFmt).SetCharFmt( (SwCharFmt*)pLSTCharFmt );
                else
                {
                    bRes = sal_False;
                    break;
                }
            }
            if(     (    (0 == pLSTCharFmt)
                      != (0 == pLFOCharFmt)
                    )
                ||  !(rLSTNumFmt == rLFONumFmt) )
                bRes = sal_False;
            // vermurksten LFO-Style wieder zuruecksetzen
            if( pLFOCharFmt )
                ((SwNumFmt&)rLFONumFmt).SetCharFmt( (SwCharFmt*)pLFOCharFmt );
        }
    }
    return bRes;
}



// oeffentliche Methoden /////////////////////////////////////////////////////
//
WW8ListManager::WW8ListManager(SvStream& rSt_, SwWW8ImplReader& rReader_)
: pLSTInfos( 0 ),
    pLFOInfos( 0 ),
    nLSTInfos( 0 ), nLFOInfos( 0 ), rSt( rSt_ ),
    rReader( rReader_ ),
    rDoc( rReader.GetDoc() ),
    rFib( rReader.GetFib() )
{
    if(    ( 8 > rFib.nVersion )                    // LST und LFO gibts erst ab WW8
            || ( rFib.fcPlcfLst == rFib.fcPlfLfo )
            || ( !rFib.lcbPlcfLst )
            || ( !rFib.lcbPlfLfo ) ) return;    // offensichtlich keine Listen da

    // Arrays anlegen
    pLSTInfos = new WW8LSTInfos;
    pLFOInfos = new WW8LFOInfos;
    sal_uInt16 nList;
    sal_uInt16 nLfo;
    sal_Bool   bLVLOk;
    sal_uInt8   aBits1;
    String aPrefix;     // wird erstmal zur Bildung des Style Namens genommen
    String aPostfix;

    long nOriginalPos = rSt.Tell();
    //
    // 1. PLCF LST auslesen und die Listen Vorlagen im Writer anlegen
    //
    rSt.Seek( rFib.fcPlcfLst );
    sal_uInt16 nListCount;
    rSt >> nListCount;
    sal_Bool bOk = 0 < nListCount;
    if( bOk )
    {
        WW8LST aLST;
        //
        // 1.1 alle LST einlesen
        //
        for(nList = 0; nList < nListCount; nList++)
        {
            bOk = sal_False;
            memset(&aLST, 0, sizeof( aLST ));
            sal_uInt16 nLevel;
            //
            // 1.1.1 Daten einlesen
            //
            rSt >> aLST.nIdLst;
            rSt >> aLST.nTplC;
            for(nLevel = 0; nLevel < nWW8MaxListLevel; nLevel++)
            {
                rSt >> aLST.aIdSty[ nLevel ];
            }

            rSt >> aBits1;
            rSt.SeekRel( 1 );

            if( 0 != rSt.GetError() ) break;

            if( aBits1 & 0x01 ) aLST.bSimpleList = sal_True;
            if( aBits1 & 0x02 ) aLST.bRestartHdn = sal_True;
            //
            // 1.1.2 neue NumRule ins Doc einsetzen und WW8LSTInfo vermerken
            //
            aPrefix  = WW8_ASCII2STR( "WW8Num" );
            aPrefix += String::CreateFromInt32( nList+1 );
            sal_uInt16 nRul =
                rDoc.MakeNumRule(rDoc.GetUniqueNumRuleName( &aPrefix ));
            SwNumRule* pMyNumRule =
                rDoc.GetNumRuleTbl()[nRul];
            pMyNumRule->SetAutoRule( sal_False );

            WW8LSTInfo* pLSTInfo = new WW8LSTInfo(pMyNumRule, aLST, nList);
            pLSTInfos->Insert( pLSTInfo );
            nLSTInfos++;
            bOk = sal_True;
        }
    }

    if( bOk )
    {
        //
        // 1.2 alle LVL aller aLST einlesen
        //
        sal_uInt8 nLevel;
        for(nList = 0; nList < nLSTInfos; nList++)
        {
            bOk = sal_False;
            WW8LSTInfo* pListInfo = GetLSTByStreamPos( nList );
            if( !pListInfo || !pListInfo->pNumRule ) break;
            SwNumRule& rMyNumRule = *pListInfo->pNumRule;
            //
            // 1.2.1 betreffende(n) LVL(s) fuer diese aLST einlesen
            //
            sal_uInt16 nLvlCount = pListInfo->bSimpleList ? 1 : nWW8MaxListLevel;
            for(nLevel = 0; nLevel < nLvlCount; nLevel++)
            {
                SwNumFmt aNumFmt( rMyNumRule.Get( nLevel ) );
                // LVLF einlesen
                bLVLOk = ReadLVL(   nLevel,
                                    aNumFmt,
                                    pListInfo->aItemSet[ nLevel ],
                                    pListInfo->aIdSty[   nLevel ],
                                    sal_True );
                if( !bLVLOk ) break;
                // und in die rMyNumRule aufnehmen
                rMyNumRule.Set( nLevel, aNumFmt );
            }
            if( !bLVLOk ) break;
            //
            // 1.2.2 die ItemPools mit den CHPx Einstellungen der verschiedenen
            //       Level miteinander vergleichen und ggfs. Style(s) erzeugen
            //
            sal_Bool bDummy;
            for(nLevel = 0; nLevel < nLvlCount; nLevel++)
                AdjustLVL( nLevel, rMyNumRule, pListInfo->aItemSet,
                                               pListInfo->aCharFmt, bDummy );
            //
            // 1.2.3 ItemPools leeren und loeschen
            //
            for(nLevel = 0; nLevel < nLvlCount; nLevel++)
                delete pListInfo->aItemSet[ nLevel ];
            bOk = sal_True;
        }
    }
    if( !bOk )
    {
        // Fehler aufgetreten - LSTInfos abraeumen !!!

        ;
    }
    //
    // 2. PLF LFO auslesen und speichern
    //
    long nLfoCount;
    if( bOk )
    {
        nLfoCount = 0;
        rSt.Seek( rFib.fcPlfLfo );
        rSt >> nLfoCount;
        if( 0 >= nLfoCount ) bOk = sal_False;
    }
    sal_uInt16 nTotalLfoLevels = 0;
    if( bOk )
    {
        WW8LFO aLFO;
        //
        // 2.1 alle LFO einlesen
        //
        for(nLfo = 0; nLfo < nLfoCount; nLfo++)
        {
            bOk = sal_False;
            memset(&aLFO, 0, sizeof( aLFO ));
            rSt >> aLFO.nIdLst;
            rSt.SeekRel( 8 );
            rSt >> aLFO.nLfoLvl;
            rSt.SeekRel( 3 );
            if(    (nWW8MaxListLevel < aLFO.nLfoLvl) // soviele Overrides existieren
                && ( 0 != rSt.GetError() )
              ) break;

            // die Parent NumRule der entsprechenden Liste ermitteln
            WW8LSTInfo* pParentListInfo = GetLSTByListId( aLFO.nIdLst );
            if( !pParentListInfo ) break;
            // hier, im ersten Schritt, erst mal diese NumRule festhalten
            aLFO.pNumRule = pParentListInfo->pNumRule;
            if( !aLFO.pNumRule ) break;
            // hat die Liste mehrere Level ?
            aLFO.bSimpleList = pParentListInfo->bSimpleList;
            // und rein ins Merk-Array mit dem Teil
            WW8LFOInfo* pLFOInfo = new WW8LFOInfo( aLFO );
            pLFOInfos->Insert(pLFOInfo, pLFOInfos->Count());
            nLFOInfos++;
            bOk = sal_True;
        }
    }
    if( bOk )
    {
        //
        // 2.2 fuer alle LFO die zugehoerigen LFOLVL einlesen
        //
        WW8LFOLVL aLFOLVL;
        for(nLfo = 0; nLfo < nLFOInfos; nLfo++)
        {
            bOk = sal_False;
            WW8LFOInfo* pLFOInfo = pLFOInfos->GetObject( nLfo );
            if( !pLFOInfo ) break;
            if( pLFOInfo->bOverride )   // stehen hierfuer ueberhaupt LFOLVL an ?
            {
                WW8LSTInfo* pParentListInfo = GetLSTByListId( pLFOInfo->nIdLst );
                if( !pParentListInfo ) break;
                //
                // 2.2.1 eine neue NumRule fuer diese Liste anlegen
                //
                SwNumRule* pParentNumRule = pLFOInfo->pNumRule;
                if( !pParentNumRule )
                    break;
                // Nauemsprefix aufbauen: fuer NumRule-Name (eventuell)
                // und (falls vorhanden) fuer Style-Name (dann auf jeden Fall)
                aPrefix.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "WW8NumSt" ));
                aPrefix += String::CreateFromInt32( nLfo + 1 );
                // jetzt dem pNumRule seinen RICHTIGEN Wert zuweisen !!!
                // (bis dahin war hier die Parent NumRule vermerkt )
                //
                // Dazu erst mal nachsehen, ob ein Style diesen LFO referenziert:
                if( USHRT_MAX > rReader.StyleUsingLFO( nLfo ) )
                {
                    sal_uInt16 nRul =
                        rDoc.MakeNumRule(rDoc.GetUniqueNumRuleName( &aPrefix ), pParentNumRule);
                    pLFOInfo->pNumRule = rDoc.GetNumRuleTbl()[ nRul ];
                    pLFOInfo->pNumRule->SetAutoRule( sal_False );
                }
                else
                {
                    sal_uInt16 nRul = rDoc.MakeNumRule(
                        rDoc.GetUniqueNumRuleName(), pParentNumRule);
                    pLFOInfo->pNumRule = rDoc.GetNumRuleTbl()[ nRul ];
                    pLFOInfo->pNumRule->SetAutoRule( sal_True );    // = default
                }
                //
                // 2.2.2 alle LFOLVL (und ggfs. LVL) fuer die neue NumRule einlesen
                //
                WW8aISet aItemSet;       // Zeichenattribute aus GrpprlChpx
                WW8aCFmt aCharFmt;       // Zeichen Style Pointer
                memset(&aItemSet, 0,  sizeof( aItemSet ));
                memset(&aCharFmt, 0,  sizeof( aCharFmt ));

                for(sal_uInt8 nLevel = 0; nLevel < pLFOInfo->nLfoLvl; nLevel++)
                {
                    bLVLOk = sal_False;
                    memset(&aLFOLVL, 0, sizeof( aLFOLVL ));

                    //
                    // 2.2.2.0 fuehrende 0xFF ueberspringen
                    //
                    sal_uInt8 n1;
                    do{
                        rSt >> n1;
                        if( 0 != rSt.GetError() ) break;
                    }
                    while( 0xFF == n1 );
                    rSt.SeekRel( -1 );

                    //
                    // 2.2.2.1 den LFOLVL einlesen
                    //
                    rSt >> aLFOLVL.nStartAt;
                    rSt >> aBits1;
                    rSt.SeekRel( 3 );
                    if( 0 != rSt.GetError() ) break;

                    // beachte: Die Witzbolde bei MS quetschen die Override-Level-Nummer
                    //          in vier Bits hinein, damit sie wieder einen Grund haben,
                    //          ihr Dateiformat zu aendern, falls ihnen einfaellt, dass
                    //          sie eigentlich doch gerne bis zu 16 Listen-Level haetten.
                    // Wir tun das *nicht* (siehe Kommentar oben bei "struct WW8LFOInfo")
                    aLFOLVL.nLevel = aBits1 & 0x0F;
                    if(    (0xFF > aBits1)
                        && (0    <= aLFOLVL.nLevel)
                        && (nWW8MaxListLevel > aLFOLVL.nLevel) )
                    {
//                      aLFOLVL.nLevel--;
                        if( aBits1 & 0x10 )
                            aLFOLVL.bStartAt = sal_True;
                        //
                        // 2.2.2.2 eventuell auch den zugehoerigen LVL einlesen
                        //
                        SwNumFmt aNumFmt( pLFOInfo->pNumRule->Get( aLFOLVL.nLevel ) );
                        if( aBits1 & 0x20 )
                        {
                            aLFOLVL.bFormat = sal_True;
                            // falls bStartup sal_True, hier den Startup-Level durch
                            // den im LVL vermerkten ersetzen
                            // LVLF einlesen
                            bLVLOk= ReadLVL(aLFOLVL.nLevel,
                                            aNumFmt,
                                            aItemSet[ nLevel ],
                                            pParentListInfo->aIdSty[   nLevel ],
                                            aLFOLVL.bStartAt );
                            if( !bLVLOk ) break;
                        }
                        else
                        if( aLFOLVL.bStartAt )
                            aNumFmt.SetStartValue( (sal_uInt16)aLFOLVL.nStartAt );
                        //
                        // 2.2.2.3 das NumFmt in die NumRule aufnehmen
                        //
                        pLFOInfo->pNumRule->Set( nLevel, aNumFmt );
                    }
                    bLVLOk = sal_True;
                }
                if( !bLVLOk ) break;
                //
                // 2.2.3 die LVL der neuen NumRule anpassen
                //
                sal_uInt16 aFlagsNewCharFmt = 0;
                sal_Bool bNewCharFmtCreated = sal_False;
                for(nLevel = 0; nLevel < pLFOInfo->nLfoLvl; nLevel++)
                {
                    AdjustLVL( nLevel, *pLFOInfo->pNumRule,
                                        aItemSet,
                                        aCharFmt,
                                        bNewCharFmtCreated,
                                        aPrefix );
                    if( bNewCharFmtCreated )
                        aFlagsNewCharFmt += (1 << nLevel);
                }
                //
                // 2.2.4 ItemPools leeren und loeschen
                //
                for(nLevel = 0; nLevel < pLFOInfo->nLfoLvl; nLevel++)
                    delete aItemSet[ nLevel ];
                //
                // 2.2.5 falls diese NumRule identische Einstellungen und
                //       Formatierungen hat wie ihre Parent-Rule, loeschen
                //       wir sie wieder und nehmen stattdessen die alte.
                //
                if( LFOequaltoLST( *pLFOInfo ) )
                {
                    // 2.2.5.1 ggfs die an den einzelnen Leveln haengenden
                    //         Char-Formate freigeben und loeschen
                    //
                    for(nLevel = 0; nLevel < pLFOInfo->nLfoLvl; nLevel++)
                        if( aFlagsNewCharFmt & (1 << nLevel) )
                            rDoc.DelCharFmt(
                                pLFOInfo->pNumRule->Get( nLevel ).GetCharFmt() );
                    //
                    // 2.2.5.2 jetzt die NumRule freigeben und die alte nehmen
                    //
                    rDoc.DelNumRule( pLFOInfo->pNumRule->GetName() );
                    pLFOInfo->pNumRule = pParentNumRule;
                }
                bOk = sal_True;
            }
        }
    }
    if( !bOk )
    {
        // Fehler aufgetreten - LSTInfos und LFOInfos abraeumen !!!

        ;
    }
    // und schon sind wir fertig!
    rSt.Seek( nOriginalPos );
}


WW8ListManager::~WW8ListManager()
{
/*
    benannte Liste bleiben im Doc drin !!!

    unbenannte Listen werden bei Nicht-Verwendung geloescht

    pLSTInfos und pLFOInfos werden auf jeden Fall destruiert
*/
    sal_uInt16 nInfo;
    if( pLSTInfos )
    {
        for(nInfo = pLSTInfos->Count(); nInfo; )
        {
            WW8LSTInfo& rActInfo = *pLSTInfos->GetObject( --nInfo );
            if(     rActInfo.pNumRule
                    && !rActInfo.bUsedInDoc
                    &&  rActInfo.pNumRule->IsAutoRule()
                )
                rDoc.DelNumRule( rActInfo.pNumRule->GetName() );
        }
        delete pLSTInfos;
    }
    if( pLFOInfos )
    {
        for(nInfo = pLFOInfos->Count(); nInfo; )
        {
            WW8LFOInfo& rActInfo = *pLFOInfos->GetObject( --nInfo );
            if(     rActInfo.bOverride
                    &&  rActInfo.pNumRule
                    && !rActInfo.bUsedInDoc
                    &&  rActInfo.pNumRule->IsAutoRule()
                )
                rDoc.DelNumRule( rActInfo.pNumRule->GetName() );
        }
        delete pLFOInfos;
    }
}



SwNumRule* WW8ListManager::GetNumRuleForActivation(sal_uInt16 nLFOPosition) const
{
    if( nLFOInfos <= nLFOPosition ) return 0;

    WW8LFOInfo* pLFOInfo = pLFOInfos->GetObject( nLFOPosition );

    if( !pLFOInfo )                 return 0;

    pLFOInfo->bUsedInDoc = sal_True;

    if( !pLFOInfo->pNumRule )       return 0;

    if( (!pLFOInfo->bOverride) && (!pLFOInfo->bLSTbUIDSet) )
    {
        WW8LSTInfo* pParentListInfo = GetLSTByListId( pLFOInfo->nIdLst );
        if( pParentListInfo )
            pParentListInfo->bUsedInDoc = sal_True;
        pLFOInfo->bLSTbUIDSet = sal_True;
    }
                                    return pLFOInfo->pNumRule;
}



sal_Bool WW8ListManager::IsSimpleList(sal_uInt16 nLFOPosition) const
{
    if( nLFOInfos <= nLFOPosition ) return sal_False;

    WW8LFOInfo* pLFOInfo = pLFOInfos->GetObject( nLFOPosition );

    if( !pLFOInfo )                 return sal_False;

                                    return pLFOInfo->bSimpleList;
}




//----------------------------------------------------------------------------
//          SwWW8ImplReader:  anhaengen einer Liste an einen Style oder Absatz
//----------------------------------------------------------------------------


sal_Bool SwWW8ImplReader::SetTxtFmtCollAndListLevel(const SwPaM& rRg,
                                                SwWW8StyInf& rStyleInfo,
                                                sal_Bool         bReset)
{
    sal_Bool bRes = sal_True;
    if( rStyleInfo.pFmt && rStyleInfo.bColl )
    {
        bRes = rDoc.SetTxtFmtColl(rRg, (SwTxtFmtColl*)rStyleInfo.pFmt);

        if( !rStyleInfo.pOutlineNumrule )
        {
            SwTxtNode* pTxtNode = pPaM->GetNode()->GetTxtNode();
            ASSERT( pTxtNode, "Kein Text-Node an PaM-Position" );

            if( !IsInvalidOrToBeMergedTabCell() )
                pTxtNode->SwCntntNode::ResetAttr( RES_PARATR_NUMRULE );

            if(    (USHRT_MAX        > rStyleInfo.nLFOIndex )
                && (nWW8MaxListLevel > rStyleInfo.nListLevel) )
                RegisterNumFmtOnTxtNode( rStyleInfo.nLFOIndex,
                                         rStyleInfo.nListLevel, sal_False);
            else
                pTxtNode->UpdateNum( SwNodeNum(NO_NUMBERING) );

            if( rStyleInfo.bHasStyNumRule && pTxtNode )
            {
                pTxtNode->SetNumLSpace( sal_False );
            }
        }
    }
    return bRes;
}

void SwWW8ImplReader::RegisterNumFmtOnStyle(SwWW8StyInf& rStyleInfo,
                                            sal_uInt16       nActLFO,
                                            sal_uInt8         nActLevel)
{
    if( rStyleInfo.bValid )
    {
        // Phase 1: Nummerierungsattribute beim Einlesen einer StyleDef
        if( pAktColl )
        {
                // jetzt nur die Parameter vermerken: die tatsaechliche Liste wird
                // spaeter drangehaengt, wenn die Listendefinitionen gelesen sind...
            if( (USHRT_MAX > nActLFO) && (nWW8MaxListLevel > nActLevel))
            {
                rStyleInfo.nLFOIndex  = nActLFO;
                rStyleInfo.nListLevel = nActLevel;
            }
        }
        else
        // Phase 2: aktualisieren der StyleDef nach einlesen aller Listen
        {
            sal_uInt16 nLFO;
            sal_uInt8   nLevel;
            if( (USHRT_MAX > nActLFO) && (nWW8MaxListLevel > nActLevel))
            {
                // Plan A: die Werte fuer Listen- und Level-Nummer wurden uebergeben
                nLFO   = nActLFO;
                nLevel = nActLevel;
            }
            else
            {
                // Plan B: die vorhin in Phase 1 gespeicherten Werte sind zu nehmen
                nLFO   = rStyleInfo.nLFOIndex;
                nLevel = rStyleInfo.nListLevel;
            }
            if( (USHRT_MAX > nLFO) && (nWW8MaxListLevel > nLevel))
            {
                SwNumRule* pNumRule = pLstManager->GetNumRuleForActivation( nLFO );
                if( pNumRule )
                {
                    if( MAXLEVEL > rStyleInfo.nOutlineLevel )
                    {
                        rStyleInfo.pOutlineNumrule = pNumRule;
                    }
                    else
                    {
                        rStyleInfo.pFmt->SetAttr( SwNumRuleItem( pNumRule->GetName() ) );
                        rStyleInfo.bHasStyNumRule = sal_True;
                    }
                }
            }
        }
    }
}

void SwWW8ImplReader::RegisterNumFmtOnTxtNode(sal_uInt16 nActLFO,
                                              sal_uInt8   nActLevel,
                                              sal_Bool   bSetAttr)
{
    // beachte: die Methode haengt die NumRule an den Text Node, falls bSetAttr
    //          (dann muessen natuerlich vorher die Listen gelesen sein)
    //                  stellt sie NUR den Level ein, im Vertrauen darauf, dass am STYLE
    //                  eine NumRule haengt - dies wird NICHT ueberprueft !!!

    if( pLstManager ) // sind die Listendeklarationen gelesen?
    {
        const SwNumRule* pNumRule
            = bSetAttr ? pLstManager->GetNumRuleForActivation( nActLFO ) : 0;

        if( pNumRule || !bSetAttr )
        {
            SwTxtNode* pTxtNode = pPaM->GetNode()->GetTxtNode();
            ASSERT( pTxtNode, "Kein Text-Node an PaM-Position" );

            if( bSetAttr )
                pTxtNode->SwCntntNode::SetAttr(SwNumRuleItem( pNumRule->GetName() ));

            SvxLRSpaceItem aLR( *(SvxLRSpaceItem*)GetFmtAttr( RES_LR_SPACE ));
            if( 1 < aLR.GetTxtFirstLineOfst() )
            {
                aLR.SetTxtFirstLineOfst( 1 );
                NewAttr( aLR );
            }

            pTxtNode->SetNumLSpace( bSetAttr );

            pTxtNode->UpdateNum( SwNodeNum( nActLevel ) );
        }
    }
}

void SwWW8ImplReader::RegisterNumFmt(sal_uInt16 nActLFO, sal_uInt8 nActLevel)
{
    // sind wir erst beim Einlesen der StyleDef ?
    if( pAktColl )
        RegisterNumFmtOnStyle(pCollA[ nAktColl ], nActLFO, nActLevel);
    else
        RegisterNumFmtOnTxtNode(nActLFO, nActLevel);
}



void SwWW8ImplReader::Read_ListLevel(sal_uInt16 nId, sal_uInt8* pData, short nLen)
{
    if( nLen < 0 )
    {
        // aktuelle Liste ist hier zu Ende, was ist zu tun ???
        nListLevel = nWW8MaxListLevel;
    }
    else
    {
        // Sicherheitspruefung auf NIL Pointer
        if( !pData ) return;
        // die Streamdaten sind hier Null basiert, so wie wir es brauchen
        nListLevel = *pData;
        if( nWW8MaxListLevel <= nListLevel )
            nListLevel = nWW8MaxListLevel;
        else
        if( (USHRT_MAX > nLFOPosition) && (nWW8MaxListLevel > nListLevel))
        {
            RegisterNumFmt(nLFOPosition, nListLevel);
            nLFOPosition = USHRT_MAX;
            nListLevel   = nWW8MaxListLevel;
        }
    }
}



void SwWW8ImplReader::Read_LFOPosition(sal_uInt16 nId, sal_uInt8* pData, short nLen)
{
    if( nLen < 0 )
    {
        // aktueller Level ist hier zu Ende, was ist zu tun ???
        nLFOPosition = USHRT_MAX;
        nListLevel   = nWW8MaxListLevel;
    }
    else
    {
        // Sicherheitspruefung auf NIL Pointer
        if( !pData ) return;
        short nData = SVBT16ToShort( pData );
        if( 0 >= nData )
        {
            // expliziet die Numerierung abschalten
            // sind wir erst beim Einlesen der StyleDef ?
            if( pAktColl )
                pAktColl->SetAttr( *GetDfltAttr( RES_PARATR_NUMRULE ) );
            else
            {
                SwTxtNode* pTxtNode = pPaM->GetNode()->GetTxtNode();
                if( pTxtNode )
                {
                    pTxtNode->SwCntntNode::SetAttr(
                                *GetDfltAttr( RES_PARATR_NUMRULE ) );
                    pTxtNode->UpdateNum( SwNodeNum( NO_NUMBERING ) );
                }
            }

            nLFOPosition = USHRT_MAX;
        }
        else
        {
            // die Streamdaten sind hier 1 basiert, wir ziehen EINS ab
            nLFOPosition = (sal_uInt16)nData-1;
            if( USHRT_MAX > nLFOPosition)
            {
                /*
                    traurig: WW8 speichert manchmal keine Level-Attribute ab, auch wenn
                                     die Liste *nicht* bSimpleList hat.
                    daher: nach Auftreten von sprmPIlfo sofort die Liste anklemmen, auch
                                 wenn kein sprmPIlvl vorher kam!

                    schoener waere gewesen:
                            if(    (nWW8MaxListLevel == nListLevel)
                                    && pLstManager
                                    && pLstManager->IsSimpleList(   nLFOPosition ) )
                                nListLevel = 0;
                */
                if(nWW8MaxListLevel == nListLevel)
                    nListLevel = 0;
                if(nWW8MaxListLevel > nListLevel)
                {
                    RegisterNumFmt(nLFOPosition, nListLevel);
                    nLFOPosition = USHRT_MAX;
                    nListLevel   = nWW8MaxListLevel;
                }
            }
        }
    }
}

// -------------------------------------------------------------------
// ------------------------- Reading Controls ------------------------
// -------------------------------------------------------------------

BOOL SwWW8ImplReader::ImportFormulaControl(WW8FormulaControl &aFormula,
    WW8_CP nStart, SwWw8ControlType nWhich )
{
    BOOL bRet=FALSE;
    /*
     * Save the reader state and process the sprms for this anchor cp.
     * Doing so will set the nPicLocFc to the offset to find the hypertext
     * data in the data stream.
     */
    WW8_CP nEndCp = nStart+1; //Only interested in the single 0x01 character

    WW8ReaderSave aSave(this,nStart);

    WW8PLCFManResult aRes;
    nStart = pPlcxMan->Where();
    while(nStart <= nEndCp)
    {
        if ( pPlcxMan->Get(&aRes)
            && aRes.pMemPos && aRes.nSprmId )
        {
            //only interested in sprms which would set nPicLocFc
            if ( (68 == aRes.nSprmId) || (0x6A03 == aRes.nSprmId) )
            {
                Read_PicLoc( aRes.nSprmId, aRes.pMemPos+ 1+
                (8 > pWwFib->nVersion ? 0 : 1) + WW8SprmDataOfs(aRes.nSprmId),
                4);
                break;
            }
        }
        (*pPlcxMan)++;
        nStart = pPlcxMan->Where();
    }
    long nOffset = nPicLocFc;
    aSave.Restore(this);

    long nOldPos = pDataStream->Tell();
    WW8_PIC aPic;
    pDataStream->Seek( nOffset);
#ifdef __WW8_NEEDS_COPY
    WW8_PIC_SHADOW aPicS;
    pDataStream->Read( &aPicS, sizeof( aPicS ) );
    WW8PicShadowToReal( &aPicS, &aPic );
#else
    pDataStream->Read( &aPic, sizeof( aPic ) );
#endif

    if((aPic.lcb > 0x3A) && !pDataStream->GetError() )
    {
        pDataStream->Seek( nPicLocFc + aPic.cbHeader );
        aFormula.Read(nWhich,pDataStream);
        bRet=TRUE;
    }

    /*There is a problem with aPic, the WW8_PIC is always used even though it
     *is too big for the WW95 files, it needs to be modified to check the
     version C.*/
    return(bRet);
}

BOOL SwMSConvertControls::InsertFormula(WW8FormulaControl &rFormula,
    uno::Reference <drawing::XShape> *pShapeRef)
{
    BOOL bRet=FALSE;

    awt::Size aSz;
    uno::Reference< form::XFormComponent> xFComp;
    uno::Reference < drawing::XShape> xShape;

    const uno::Reference< lang::XMultiServiceFactory > & rServiceFactory =
        GetServiceFactory();

    //const XMultiServiceFactoryRef& rServiceFactory =
    //  GetServiceFactory();
    if(!rServiceFactory.is())
        return(FALSE);
    if (bRet = rFormula.Import(rServiceFactory, xFComp, aSz))
        bRet = InsertControl( xFComp, aSz, pShapeRef,FALSE );
    return bRet;
}

void WW8FormulaControl::Read(SwWw8ControlType nWhich,SvStream *pDataStream)
{
    UINT8 nField;
    UINT8 nTest;

    int nType=0;
    pDataStream->Read(&nTest, 1);
    if (nTest == 0xFF) //Guesswork time, difference between 97 and 95 ?
    {
        pDataStream->SeekRel(4);
        nType=1;
    }
    *pDataStream >> nField;
    fToolTip = nField & 0x01;
    fNoMark = (nField & 0x02)>>1;
    fUseSize = (nField & 0x04)>>2;
    fNumbersOnly= (nField & 0x08)>>3;
    fDateOnly = (nField & 0x10)>>4;
    fUnused = (nField & 0xE0)>>5;
    *pDataStream >> nSize;

    *pDataStream >> hpsCheckBox;
    if (nType == 0)
        pDataStream->SeekRel(2); //Guess

    rtl_TextEncoding eEnc = rRdr.eStructCharSet;
    sTitle = !nType ? WW8ReadPString( *pDataStream, eEnc, TRUE )
                    : WW8Read_xstz(   *pDataStream, 0,    TRUE );

    if (nWhich == WW8_CT_CHECKBOX)
        *pDataStream >> nChecked;
    else
        sDefault = !nType ? WW8ReadPString( *pDataStream, eEnc, TRUE )
                          : WW8Read_xstz(   *pDataStream, 0,    TRUE );

    sFormatting = !nType ? WW8ReadPString( *pDataStream, eEnc, TRUE )
                           : WW8Read_xstz(   *pDataStream, 0,    TRUE );

    sHelp = !nType ? WW8ReadPString( *pDataStream, eEnc, TRUE )
                     : WW8Read_xstz(   *pDataStream, 0,    TRUE );

    if( fToolTip )
        sToolTip = !nType ? WW8ReadPString( *pDataStream, eEnc, TRUE )
                               : WW8Read_xstz(   *pDataStream, 0,    TRUE );
}

BOOL WW8FormulaCheckBox::Import(const uno::Reference <
    lang::XMultiServiceFactory> &rServiceFactory,
    uno::Reference <form::XFormComponent> &rFComp,awt::Size &rSz )
{
    String sServiceName = WW8_ASCII2STR( "com.sun.star.form.component.CheckBox" );
    uno::Reference< uno::XInterface > xCreate = rServiceFactory->createInstance( sServiceName );
    if( !xCreate.is() )
        return FALSE;

    rFComp = uno::Reference< form::XFormComponent >( xCreate, uno::UNO_QUERY );
    if( !rFComp.is() )
        return FALSE;

    uno::Reference< beans::XPropertySet > xPropSet( xCreate, uno::UNO_QUERY );

    rSz.Width = 16 * hpsCheckBox;
    rSz.Height = 16 * hpsCheckBox;

    uno::Any aTmp;
    if (sTitle.Len())
    {
        //UniString sTmp(pName,RTL_TEXTENCODING_ASCII_US);
        aTmp <<= rtl::OUString(sTitle);
    }
    else
        aTmp <<= rtl::OUString(sName);
    xPropSet->setPropertyValue( WW8_ASCII2STR( "Name" ), aTmp );

    aTmp <<= (sal_Int16)nChecked;
    xPropSet->setPropertyValue( WW8_ASCII2STR( "DefaultState" ), aTmp);

    if( sToolTip.Len() )
    {
        aTmp <<= rtl::OUString( sToolTip );
        xPropSet->setPropertyValue( WW8_ASCII2STR( "HelpText" ), aTmp );
    }

    return TRUE;

}

void WW8FormulaControl::SetOthersFromDoc(uno::Reference< form::XFormComponent >& rFComp, com::sun::star::awt::Size &rSz,
    uno::Reference< beans::XPropertySet >& rPropSet)
{
    const struct CtrlFontMapEntry
    {
        USHORT nWhichId;
        const sal_Char* pPropNm;
    }
    aMapTable [] =
    {
        RES_CHRATR_COLOR,           "TextColor",
        RES_CHRATR_COLOR,           "TextColor",
        RES_CHRATR_FONT,            "FontName",
        RES_CHRATR_FONTSIZE,        "FontHeight",
        RES_CHRATR_WEIGHT,          "FontWeight",
        RES_CHRATR_UNDERLINE,       "FontUnderline",
        RES_CHRATR_CROSSEDOUT,      "FontStrikeout",
        RES_CHRATR_POSTURE,         "FontSlant",
        0,                          0
    };


    USHORT nDefSize;
    Font aFont;
    uno::Reference< beans::XPropertySetInfo > xPropSetInfo = rPropSet->getPropertySetInfo();
    if (nSize)
        nDefSize = nSize;
    else if( sDefault.Len() )
        nDefSize = sDefault.Len();
    else
        nDefSize = 18;           //no chars, ms actually uses
                                //5 0x96 chars (-) as its default, but thats
                                //the default for an empty text area, which
                                //stretchs in size as text is entered so...

    uno::Any aTmp;
    for( const CtrlFontMapEntry* pMap = aMapTable; pMap->nWhichId; ++pMap )
    {
        BOOL bSet = TRUE;
        const SfxPoolItem* pItem = rRdr.GetFmtAttr( pMap->nWhichId );

        switch ( pMap->nWhichId )
        {
        case RES_CHRATR_COLOR:
            aTmp <<= (sal_Int32)((SvxColorItem*)pItem)->GetValue().GetRGBColor();
            aFont.SetColor( ((SvxColorItem*)pItem)->GetValue() );
            break;

        case RES_CHRATR_FONT:
            {
                const SvxFontItem *pFontItem = (SvxFontItem *)pItem;
                String pNm;
                if( xPropSetInfo->hasPropertyByName( pNm = WW8_ASCII2STR( "FontStyleName" ) ) )
                {
                    aTmp <<= rtl::OUString( pFontItem->GetStyleName() );
                    rPropSet->setPropertyValue( pNm, aTmp );
                }
                if( xPropSetInfo->hasPropertyByName( pNm = WW8_ASCII2STR( "FontFamily" ) ) )
                {
                    aTmp <<= (sal_Int16)pFontItem->GetFamily();
                    rPropSet->setPropertyValue( pNm, aTmp );
                }
                if( xPropSetInfo->hasPropertyByName( pNm = WW8_ASCII2STR( "FontCharset" ) ) )
                {
                    aTmp <<= (sal_Int16)pFontItem->GetCharSet();
                    rPropSet->setPropertyValue( pNm, aTmp );
                }
                if( xPropSetInfo->hasPropertyByName( pNm = WW8_ASCII2STR( "FontPitch" ) ) )
                {
                    aTmp <<= (sal_Int16)pFontItem->GetPitch();
                    rPropSet->setPropertyValue( pNm, aTmp );
                }

                aTmp <<= rtl::OUString( pFontItem->GetFamilyName());
                aFont.SetName( pFontItem->GetFamilyName() );
                aFont.SetStyleName( pFontItem->GetStyleName() );
                aFont.SetFamily( pFontItem->GetFamily() );
                aFont.SetCharSet( pFontItem->GetCharSet() );
                aFont.SetPitch( pFontItem->GetPitch() );
            }
            break;

        case RES_CHRATR_FONTSIZE:
            {
                Size aSize( aFont.GetSize().Width(),
                            ((SvxFontHeightItem*)pItem)->GetHeight() );
                aTmp <<= ((float)aSize.Height()) / 20. ;

                aFont.SetSize( OutputDevice::LogicToLogic( aSize,
                                            MAP_TWIP, MAP_100TH_MM ) );
            }
            break;

        case RES_CHRATR_WEIGHT:
                aTmp <<= (float)VCLUnoHelper::ConvertFontWeight(
                                        ((SvxWeightItem*)pItem)->GetWeight() );
            aFont.SetWeight( ((SvxWeightItem*)pItem)->GetWeight() );
            break;

        case RES_CHRATR_UNDERLINE:
                aTmp <<= (sal_Int16)( ((SvxUnderlineItem*)pItem)->GetUnderline() );
            aFont.SetUnderline( ((SvxUnderlineItem*)pItem)->GetUnderline() );
            break;

        case RES_CHRATR_CROSSEDOUT:
            aTmp <<= (sal_Int16)( ((SvxCrossedOutItem*)pItem)->GetStrikeout() );
            aFont.SetStrikeout( ((SvxCrossedOutItem*)pItem)->GetStrikeout() );
            break;

        case RES_CHRATR_POSTURE:
            aTmp <<= (sal_Int16)( ((SvxPostureItem*)pItem)->GetPosture() );
            aFont.SetItalic( ((SvxPostureItem*)pItem)->GetPosture() );
            break;

        default:
            bSet = FALSE;
            break;
        }

        if( bSet && xPropSetInfo->hasPropertyByName(
                        WW8_ASCII2STR( pMap->pPropNm ) ) )
            rPropSet->setPropertyValue( WW8_ASCII2STR( pMap->pPropNm ), aTmp );
    }
    // now calculate the size of the control
    String sExpText;
    sExpText.Fill( nDefSize, 'M' );
    OutputDevice* pOut = Application::GetDefaultDevice();
    pOut->Push( PUSH_FONT | PUSH_MAPMODE );
    pOut->SetMapMode( MapMode( MAP_100TH_MM ));
    pOut->SetFont( aFont );
    rSz.Width  = pOut->GetTextWidth( sExpText );
    rSz.Height = pOut->GetTextHeight();

    pOut->Pop();
}


BOOL WW8FormulaEditBox::Import(const uno::Reference<
    lang::XMultiServiceFactory >& rServiceFactory,
    uno::Reference< form::XFormComponent >& rFComp, awt::Size &rSz)
{
    rtl::OUString sServiceName = WW8_ASCII2STR( "com.sun.star.form.component.TextField" );
    uno::Reference< uno::XInterface >  xCreate = rServiceFactory->createInstance( sServiceName );
    if( !xCreate.is() )
        return FALSE;

    rFComp = uno::Reference< form::XFormComponent >( xCreate, uno::UNO_QUERY );
    if( !rFComp.is() )
        return FALSE;

    uno::Reference< beans::XPropertySet > xPropSet( xCreate, uno::UNO_QUERY );

    uno::Any aTmp;
    if( sTitle.Len() )
    {
        //UniString sTmp(pName,RTL_TEXTENCODING_ASCII_US);
        aTmp <<= rtl::OUString( sTitle );
    }
    else
        aTmp <<= rtl::OUString( sName );
    xPropSet->setPropertyValue( WW8_ASCII2STR( "Name" ), aTmp );

    BOOL bTemp = FALSE;
    aTmp.setValue(&bTemp, ::getBooleanCppuType());
    xPropSet->setPropertyValue( WW8_ASCII2STR( "MultiLine" ), aTmp);

    aTmp <<= (sal_Int16)0;  //No Border
    xPropSet->setPropertyValue( WW8_ASCII2STR( "Border" ), aTmp);

    if( sDefault.Len() )
    {
        aTmp <<= rtl::OUString( sDefault );
        xPropSet->setPropertyValue( WW8_ASCII2STR( "DefaultText" ), aTmp);
    }

    rSz.Width = 300;
    rSz.Height = 200;

    aTmp <<= (sal_Int32)(0x00C0C0C0);
    xPropSet->setPropertyValue( WW8_ASCII2STR( "BackgroundColor" ), aTmp);

    SetOthersFromDoc(rFComp,rSz,xPropSet);

    aTmp <<= (sal_Int16)nSize;
    xPropSet->setPropertyValue( WW8_ASCII2STR( "MaxTextLen" ), aTmp);

    if( sToolTip.Len() )
    {
        aTmp <<= rtl::OUString( sToolTip );
        xPropSet->setPropertyValue( WW8_ASCII2STR( "HelpText" ), aTmp );
    }

    return TRUE;
}


BOOL SwMSConvertControls::InsertControl(
    const uno::Reference< form::XFormComponent > & rFComp,
    const awt::Size& rSize,
    uno::Reference< drawing::XShape > *pShape,
    BOOL bFloatingCtrl)
{
    uno::Reference< drawing::XShape >  xShape;

    const uno::Reference< container::XIndexContainer > & rFormComps =
        GetFormComps();
    uno::Any aTmp( &rFComp, ::getCppuType((const uno::Reference<
        form::XFormComponent >*)0) );
    rFormComps->insertByIndex( rFormComps->getCount(), aTmp );

    const uno::Reference< lang::XMultiServiceFactory > & rServiceFactory =
        GetServiceFactory();
    if( !rServiceFactory.is() )
        return FALSE;

    uno::Reference< uno::XInterface >  xCreate = rServiceFactory
        ->createInstance(WW8_ASCII2STR("com.sun.star.drawing.ControlShape"));
    if( !xCreate.is() )
        return FALSE;

    xShape = uno::Reference< drawing::XShape >(xCreate, uno::UNO_QUERY);

    DBG_ASSERT(xShape.is(), "XShape nicht erhalten")
    xShape->setSize(rSize);

    uno::Reference< beans::XPropertySet >  xShapePropSet(
        xCreate, uno::UNO_QUERY );

    //I lay a small bet that this will change to
    //INT16 nTemp=TextContentAnchorType::AS_CHARACTER;
    INT16 nTemp;
    if (bFloatingCtrl)
        nTemp= text::TextContentAnchorType_AT_PARAGRAPH;
    else
        nTemp= text::TextContentAnchorType_AS_CHARACTER;

    aTmp <<= nTemp;
    xShapePropSet->setPropertyValue( WW8_ASCII2STR("AnchorType"), aTmp );

    nTemp= text::VertOrientation::TOP;
    aTmp <<= nTemp;
    xShapePropSet->setPropertyValue( WW8_ASCII2STR("VertOrient"), aTmp );

    uno::Reference< text::XText >  xDummyTxtRef;
    uno::Reference< text::XTextRange >  xTxtRg =
        new SwXTextRange( *pPaM, xDummyTxtRef );

    aTmp.setValue(&xTxtRg,::getCppuType((
        uno::Reference< text::XTextRange >*)0));
    xShapePropSet->setPropertyValue( WW8_ASCII2STR("TextRange"), aTmp );

    GetShapes()->add( xShape );

    // Das Control-Model am Control-Shape setzen
    uno::Reference< drawing::XControlShape >  xControlShape( xShape,
        uno::UNO_QUERY );
    uno::Reference< awt::XControlModel >  xControlModel( rFComp,
        uno::UNO_QUERY );
    xControlShape->setControl( xControlModel );

    if (pShape)
        *pShape = xShape;

    return TRUE;
}

/*************************************************************************

      Source Code Control System - Header

      $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/ww8/ww8par3.cxx,v 1.5 2001-02-06 11:10:53 cmc Exp $


      Source Code Control System - Update

      $Log: not supported by cvs2svn $
      Revision 1.4  2001/01/30 09:27:25  cmc
      #80205# Keeping comments closely linked to bugids

      Revision 1.3  2001/01/29 10:17:21  cmc
      #80205# Default FormTextField Text import

      Revision 1.2  2000/10/10 16:54:06  cmc
      MSOffice 97/2000 Controls {Im|Ex}port

      Revision 1.1.1.1  2000/09/18 17:14:58  hr
      initial import

      Revision 1.53  2000/09/18 16:05:00  willem.vandorp
      OpenOffice header added.

      Revision 1.52  2000/08/22 17:41:01  cmc
      #77315# 95 Formulas, bad string read

      Revision 1.51  2000/07/20 14:47:21  khz
      #75709# Remove NumRule from Node wit no/invalid LFO

      Revision 1.50  2000/06/26 09:58:42  jp
      must change: GetAppWindow->GetDefaultDevice

      Revision 1.49  2000/06/23 10:29:55  khz
      #71707# Make sure pNdNum is set to zero when no numbering on node

      Revision 1.48  2000/05/25 08:06:52  khz
      Piece Table optimization, Unicode changes, Bugfixes

      Revision 1.47  2000/05/24 08:56:11  jp
      Bugfixes for Unicode

      Revision 1.46  2000/05/18 14:02:21  khz
      UNO3 conversion: use rtl::OUString - not UString

      Revision 1.45  2000/05/16 11:24:13  khz
      Unicode code-conversion

      Revision 1.44  2000/03/27 15:35:59  cmc
      #74329# Ported WW97 Controls to uno codebase

      Revision 1.43  2000/03/24 12:05:52  khz
      Task #74368# IsInvalidOrToBeMergedTabCell() stops duplicate reset of NumRule

      Revision 1.42  2000/03/21 15:04:57  os
      UNOIII

      Revision 1.41  2000/03/02 16:57:48  khz
      Task #70716# Set AbsLSpace and FirstLineOffset *allways* on SwNumFmt

      Revision 1.40  2000/02/23 17:10:46  khz
      Task #71704# multiply negative aLVL.nDxaLeft by -1

      Revision 1.39  2000/02/11 14:40:20  hr
      #70473# changes for unicode ( patched by automated patchtool )

      Revision 1.38  2000/02/09 11:29:46  khz
      Task #70473# char_t --> sal_Unicode

      Revision 1.37  1999/12/21 09:56:55  khz
      Task #71144# ...component.Edit -> ...component.TextField

      Revision 1.36  1999/12/09 14:52:33  khz
      Task #67145# Don't set NumRule if OutlineNumrule is set on Style

      Revision 1.35  1999/12/03 16:52:17  khz
      Task #67145# Don't set NumRule if OutlineNumrule is set on Style

      Revision 1.34  1999/11/29 17:50:28  khz
      Task #70168# rNumFmt.SetFirstLineOffset() must get negative parameter

      Revision 1.33  1999/11/29 11:28:25  jp
      compiler error - missing include

      Revision 1.32  1999/11/22 15:22:33  os
      headers added

      Revision 1.31  1999/11/19 16:40:21  os
      modules renamed

      Revision 1.30  1999/11/19 15:13:16  khz
      Code Review: Replace WW8ReadByte()... by rSt >> nVari and remove rSt.GetError() calls

      Revision 1.29  1999/10/08 09:26:15  khz
      Import Redlining

      Revision 1.28  1999/06/21 13:27:34  JP
      Bug #60448#: Read_LFOPosition - set empty numrule item


      Rev 1.27   21 Jun 1999 15:27:34   JP
   Bug #60448#: Read_LFOPosition - set empty numrule item

      Rev 1.26   21 Jun 1999 09:37:56   JP
   AdjustLVL: break the charfmt search at first equal charfmt and save it at current level

      Rev 1.25   09 Apr 1999 18:01:40   KHZ
   Task #64348# Bei Listen-Overrides nur bei Ungleichheit neue Liste anlegen!

      Rev 1.24   07 Apr 1999 16:31:40   KHZ
   Task #64355# Nummerierungs-Postfix-String jetzt auch bei 1-stuf. Nummerierung

      Rev 1.23   31 Mar 1999 20:19:20   KHZ
   Task #61646# Falls Num. gesetzt, darf 1st-Zl-Einzuege am Abs. nur negativ sein.

      Rev 1.22   30 Mar 1999 07:51:24   MIB
   #62984#: XServiceManager -> XMultiServiceFactory

      Rev 1.21   09 Mar 1999 11:07:56   MIB
   #62980#: TF_ONE51-Umstallungen fuer Controls beendet

      Rev 1.20   05 Mar 1999 20:50:44   KHZ
   WICHTIGE UMBENENNUNG: VertOrientation_TOP (war: VerticalOrientation_TOP)

      Rev 1.19   27 Feb 1999 13:35:02   KHZ
   Task #62367# fuehrende 0xFF vor List-Format-Overrides ueberspringen

      Rev 1.18   24 Feb 1999 14:28:50   KHZ
   Bug #60733#: UpdateAll - vorm erzeugen des Textes die NumRules aktualisieren

      Rev 1.17   17 Feb 1999 15:26:26   TJ
   uno::Reference< XShapeFactory >  raus

      Rev 1.16   09 Feb 1999 17:01:54   HR
   uno::Any: & eingefuegt

      Rev 1.15   27 Jan 1999 09:45:06   OS
   #56371# TF_ONE51

      Rev 1.14   15 Dec 1998 11:08:46   KHZ
   Tasks #59580# #58561# #58961# (Nachzieher aus SRV506) (2)

      Rev 1.13   15 Dec 1998 10:44:18   KHZ
   Tasks #59580# #58561# #58961# (Nachzieher aus SRV506)

      Rev 1.12   03 Dec 1998 14:16:42   JP
   Bug #58961#: Teilfix - Char.._N Format verwenden

      Rev 1.11   02 Dec 1998 13:29:10   KHZ
   Task #59837# ungueltiger Listenbasisstyle 0x0FFF auf Standardstyle gesetzt

      Rev 1.10   17 Nov 1998 10:48:54   OS
   #58263# NumType durch SvxExtNumType ersetzt

      Rev 1.9   30 Oct 1998 10:29:20   KHZ
   Task #57836# GPF, da irrtuemlich 255 gesetzt statt nWW8MaxListLevel

      Rev 1.8   23 Sep 1998 09:52:00   KHZ
   Syntaxfehler fuer OS/2

      Rev 1.7   16 Sep 1998 15:56:42   MIB
   #56513#: VC-Controls -> UNO-Controls

      Rev 1.6   15 Sep 1998 12:58:36   HJS
   '#56161#

      Rev 1.5   05 Aug 1998 09:36:54   KHZ
   Task #54382# hart attributierte L-Einzuege bei Listen

      Rev 1.4   29 Jul 1998 13:55:34   KHZ
   Task #52607# numm. Listen

      Rev 1.3   28 Jul 1998 22:27:14   KHZ
   Task #52607# nummerierte Listen (Teil 3)

      Rev 1.2   28 Jul 1998 13:02:04   KHZ
   Task #52607# nummerierte Listen (Teil 2)

      Rev 1.1   28 Jul 1998 11:06:04   KHZ
   Task #52607# nummerierte Listen (Teil 1)

      Rev 1.0   16 Jun 1998 11:08:02   KHZ
   Initial revision.

*************************************************************************/