summaryrefslogtreecommitdiff
path: root/starmath/source/mathtype.cxx
blob: b911b5f4a89064bf05af1eba1bfaddc11a6f4df9 (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
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
 */


#include <mathtype.hxx>
#include <osl/diagnose.h>
#include <sfx2/docfile.hxx>

#define APPEND(str,ascii) str.AppendAscii(RTL_CONSTASCII_STRINGPARAM(ascii))

void MathType::Init()
{
    //These are the default MathType sizes
    aSizeTable[0]=12;
    aSizeTable[1]=8;
    aSizeTable[2]=6;
    aSizeTable[3]=24;
    aSizeTable[4]=10;
    aSizeTable[5]=12;
    aSizeTable[6]=12;

    /*
    These are the default MathType italic/bold settings If mathtype is changed
    from its defaults, there is nothing we can do, as this information is not
    stored in the document
    */
    MathTypeFont aFont;
    for(sal_uInt8 i=1;i<=11;i++)
    {
        aFont.nTface = i+128;
        switch (i)
        {
            default:
                aFont.nStyle=0;
                break;
            case 3:
            case 4:
                aFont.nStyle=1;
                break;
            case 7:
                aFont.nStyle=2;
                break;
        }
        aUserStyles.insert(aFont);
    }
}


/*ToDo replace with table rather than switch, returns
 sal_True in the case that the char is just a char, and
 sal_False if the character is an operator which must not be
 placed inside the quote sequence designed to protect
 against being parsed as a keyword

 General solution required to force starmath to handle
 unicode math chars the way it handles its own math
 chars rathar than handle them as text as it will do
 for the default case below, i.e. incorrect spacing
 between math symbols and ordinary text e.g. 1=2 rather
 than 1 = 2
 */
sal_Bool MathType::LookupChar(sal_Unicode nChar,String &rRet,sal_uInt8 nVersion,
    sal_uInt8 nTypeFace)
{
    bool bRet=false;
    const char *pC = NULL;
    switch(nChar)
    {
        case 0x0000:
            pC = " none ";
            break;
        case 0x00ac:
            pC = " neg ";
            break;
        case 0x00b1:
            pC = " +- ";
            break;
        case '(':
            pC = " \\( ";
            break;
        case ')':
            pC = " \\) ";
            break;
        case '[':
            pC = " \\[ ";
            break;
        case ']':
            pC = " \\] ";
            break;
        case '.':
            pC = " \".\" ";
            break;
        case 0xae:
            if ((nVersion < 3) && (nTypeFace == 0x86))
                pC = " rightarrow ";
            else
            {
                rRet.Append(nChar);
                bRet=true;
            }
            break;
        case 0x00fb:
            if ((nVersion < 3) && (nTypeFace == 0x81))
                nChar = 0xDF;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 'a':
            if ((nVersion < 3) && (nTypeFace == 0x84))
                nChar = 0x3b1;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 'b':
            if ((nVersion < 3) && (nTypeFace == 0x84))
                nChar = 0x3b2;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 'l':
            if ((nVersion < 3) && (nTypeFace == 0x84))
                nChar = 0x3bb;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 'n':
            if ((nVersion < 3) && (nTypeFace == 0x84))
                nChar = 0x3bd;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 'r':
            if ((nVersion < 3) && (nTypeFace == 0x84))
                nChar = 0x3c1;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 'D':
            if ((nVersion < 3) && (nTypeFace == 0x84))
                nChar = 0x394;
            rRet.Append(nChar);
            bRet=true;
            break;
        case 0xa9:
            if ((nVersion < 3) && (nTypeFace == 0x82))
                nChar = '\'';
            rRet.Append(nChar);
            bRet=true;
            break;
        case 0x00f1:
            if ((nVersion < 3) && (nTypeFace == 0x86))
                pC = " \\rangle ";
            else
            {
                rRet.Append(nChar);
                bRet=true;
            }
            break;
        case 0x00a3:
            if ((nVersion < 3) && (nTypeFace == 0x86))
                pC = " <= ";
            else
            {
                rRet.Append(nChar);
                bRet=true;
            }
            break;
        case 0x00de:
            if ((nVersion < 3) && (nTypeFace == 0x86))
                pC = " drarrow ";
            else
            {
                rRet.Append(nChar);
                bRet=true;
            }
            break;
        case 0x0057:
            if ((nVersion < 3) && (nTypeFace == 0x85))
                pC = " %OMEGA ";
            else
            {
                rRet.Append(nChar);
                bRet=true;
            }
            break;
        case 0x007b:
            pC = " lbrace ";
            break;
        case 0x007c:
            pC = " \\lline ";
            break;
        case 0x007d:
            pC = " rbrace ";
            break;
        case 0x007e:
            pC = " \"~\" ";
            break;
        case 0x2224:
            pC = " ndivides ";
            break;
        case 0x2225:
            pC = " parallel ";
            break;
        case 0x00d7:
            if (nVersion < 3)
                pC = " cdot ";
            else
                pC = " times ";
            break;
        case 0x00f7:
            pC = " div ";
            break;
        case 0x019b:
            pC = " lambdabar ";
            break;
        case 0x2026:
            pC = " dotslow ";
            break;
        case 0x2022:
            pC = " cdot ";
            break;
        case 0x2102:
            pC = " setC ";
            break;
        case 0x210f:
            pC = " hbar ";
            break;
        case 0x2111:
            pC = " Im ";
            break;
        case 0x2115:
            pC = " setN ";
            break;
        case 0x2118:
            pC = " wp ";
            break;
        case 0x211a:
            pC = " setQ ";
            break;
        case 0x211c:
            pC = " Re ";
            break;
        case 0x211d:
            pC = " setR ";
            break;
        case 0x2124:
            pC = " setZ ";
            break;
        case 0x2135:
            pC = " aleph ";
            break;
        case 0x2190:
            pC = " leftarrow ";
            break;
        case 0x2191:
            pC = " uparrow ";
            break;
        case 0x2192:
            pC = " rightarrow ";
            break;
        case 0x0362:
            pC = " widevec ";
            break;
        case 0x2193:
            pC = " downarrow ";
            break;
        case 0x21d0:
            pC = " dlarrow ";
            break;
        case 0x21d2:
            pC = " drarrow ";
            break;
        case 0x21d4:
            pC = " dlrarrow ";
            break;
        case 0x2200:
            pC = " forall ";
            break;
        case 0x2202:
            pC = " partial ";
            break;
        case 0x2203:
            pC = " exists ";
            break;
        case 0x2204:
            pC = " notexists ";
            break;
        case 0x2205:
            pC = " emptyset ";
            break;
        case 0x2207:
            pC = " nabla ";
            break;
        case 0x2208:
            pC = " in ";
            break;
        case 0x2209:
            pC = " notin ";
            break;
        case 0x220d:
            pC = " owns ";
            break;
        case 0x220f:
            pC = " prod ";
            break;
        case 0x2210:
            pC = " coprod ";
            break;
        case 0x2211:
            pC = " sum ";
            break;
        case 0x2212:
            pC = " - ";
            break;
        case 0x2213:
            pC = " -+ ";
            break;
        case 0x2217:
            pC = " * ";
            break;
        case 0x2218:
            pC = " circ ";
            break;
        case 0x221d:
            pC = " prop ";
            break;
        case 0x221e:
            pC = " infinity ";
            break;
        case 0x2227:
            pC = " and ";
            break;
        case 0x2228:
            pC = " or ";
            break;
        case 0x2229:
            pC = " intersection ";
            break;
        case 0x222a:
            pC = " union ";
            break;
        case 0x222b:
            pC = " int ";
            break;
        case 0x222c:
            pC = " iint ";
            break;
        case 0x222d:
            pC = " iiint ";
            break;
        case 0x222e:
            pC = " lint ";
            break;
        case 0x222f:
            pC = " llint ";
            break;
        case 0x2230:
            pC = " lllint ";
            break;
        case 0x2245:
            pC = " simeq ";
            break;
        case 0x2248:
            pC = " approx ";
            break;
        case 0x2260:
            pC = " <> ";
            break;
        case 0x2261:
            pC = " equiv ";
            break;
        case 0x2264:
            pC = " <= ";
            break;
        case 0x2265:
            pC = " >= ";
            break;

        case 0x227A:
            pC = " prec ";
            break;
        case 0x227B:
            pC = " succ ";
            break;
        case 0x227C:
            pC = " preccurlyeq ";
            break;
        case 0x227D:
            pC = " succcurlyeq ";
            break;
        case 0x227E:
            pC = " precsim ";
            break;
        case 0x227F:
            pC = " succsim ";
            break;
        case 0x2280:
            pC = " nprec ";
            break;
        case 0x2281:
            pC = " nsucc ";
            break;

        case 0x2282:
            pC = " subset ";
            break;
        case 0x2283:
            pC = " supset ";
            break;
        case 0x2284:
            pC = " nsubset ";
            break;
        case 0x2285:
            pC = " nsupset ";
            break;
        case 0x2286:
            pC = " subseteq ";
            break;
        case 0x2287:
            pC = " supseteq ";
            break;
        case 0x2288:
            pC = " nsubseteq ";
            break;
        case 0x2289:
            pC = " nsupseteq ";
            break;
        case 0x22b2:
        case 0x22b3:
            rRet += ' ';
            rRet.Append(nChar);
            rRet += ' ';
            break;
        case 0x22a5:
            pC = " ortho ";
            break;
        case 0x22c5:
            pC = " cdot ";
            break;
        case 0x22ee:
            pC = " dotsvert ";
            break;
        case 0x22ef:
            pC = " dotsaxis ";
            break;
        case 0x22f0:
            pC = " dotsup ";
            break;
        case 0x22f1:
            pC = " dotsdown ";
            break;
        case 0x2329:
            pC = " langle ";
            break;
        case 0x232a:
            pC = " rangle ";
            break;
        case 0x301a:
            pC = " ldbracket ";
            break;
        case 0x301b:
            pC = " rdbracket ";
            break;
        case 0xe083:
            rRet.Append('+');
            bRet=true;
            break;
        case '^':
        case 0xe091:
            pC = " widehat ";
            break;
        case 0xe096:
            pC = " widetilde ";
            break;
        case 0xe098:
            pC = " widevec ";
            break;
        case 0xE421:
            pC = " geslant ";
            break;
        case 0xE425:
            pC = " leslant ";
            break;
        case 0xeb01:    //no space
        case 0xeb08:    //normal space
            bRet=true;
            break;
        case 0xef04:    //tiny space
        case 0xef05:    //tiny space
        case 0xeb02:    //small space
        case 0xeb04:    //medium space
            rRet.Append('`');
            break;
        case 0xeb05:    //large space
            rRet.Append('~');
            break;
        case 0x3a9:
            pC = " %OMEGA ";
            break;
        default:
            rRet.Append(nChar);
            bRet=true;
            break;
    }
    if (pC)
        rRet.AppendAscii(pC);
    return bRet;
}

void MathTypeFont::AppendStyleToText(String &rRet)
{
    const char *pC = NULL;
    switch (nStyle)
    {
        default:
        case 0:
            break;
        case 1:
            pC = " ital ";
            break;
        case 2:
            pC = " bold ";
            break;
        case 3:
            pC = " bold italic";
            break;
    }
    if (pC)
        rRet.AppendAscii(pC);
}

void MathType::TypeFaceToString(String &rTxt,sal_uInt8 nFace)
{
    MathTypeFont aFont(nFace);
    MathTypeFontSet::iterator aItr = aUserStyles.find(aFont);
    if (aItr != aUserStyles.end())
        aFont.nStyle = aItr->nStyle;
    aFont.AppendStyleToText(rTxt);
}

int MathType::Parse(SotStorage *pStor)
{
    SvStorageStreamRef xSrc = pStor->OpenSotStream(
        rtl::OUString("Equation Native"),
        STREAM_STD_READ | STREAM_NOCREATE);
    if ( (!xSrc.Is()) || (SVSTREAM_OK != xSrc->GetError()))
        return 0;
    pS = &xSrc;
    pS->SetNumberFormatInt( NUMBERFORMAT_INT_LITTLEENDIAN );

    EQNOLEFILEHDR aHdr;
    aHdr.Read(pS);
    *pS >> nVersion;
    *pS >> nPlatform;
    *pS >> nProduct;
    *pS >> nProdVersion;
    *pS >> nProdSubVersion;

    if (nVersion > 3)   // allow only supported versions of MathType to be parsed
        return 0;

#ifdef STANDALONE
    *pOut << "Format Version is " << int(nVersion) << endl;
    *pOut << "Generating Platform is " << (nPlatform ? "Windows"
        : "Mac") << endl;
    *pOut << "Generating Product is " << (nPlatform ? "Equation Editor"
        : "Equation Editor") << endl;
    *pOut << "Prod Version is " << int(nProdVersion) << "." <<
        int(nProdSubVersion) << endl << endl;
#endif

    int nRet = HandleRecords();
    //little crude hack to close ocassionally open expressions
    //a sophisticated system to determine what expressions are
    //opened is required, but this is as much work as rewriting
    //starmaths internals.
    APPEND(rRet,"{}");

#if OSL_DEBUG_LEVEL > 1
#   ifdef CAOLAN
    //sanity check

    //sigh, theres no point! MathType (in some bizarre subvarient) pads
    //the end of the formula with ENDs (0)'s
    sal_uLong nEnd = pS->Tell();
    OSL_ENSURE(nEnd == pS->Seek(STREAM_SEEK_TO_END),
        "Possibly unfully parsed formula");
#   endif
#endif
    return nRet;
}

static void lcl_PrependDummyTerm(String &rRet, xub_StrLen &rTextStart)
{
    if ((rRet.GetChar(rTextStart) == '=') &&
        ((rTextStart == 0) ||
        (rRet.GetChar(rTextStart-1) == '{'))
       )
    {
        rRet.InsertAscii(" {}",rTextStart);
        rTextStart+=3;
    }
}

static void lcl_AppendDummyTerm(String &rRet)
{
    bool bOk=false;
    for(int nI=rRet.Len()-1;nI >= 0; nI--)
    {
        xub_StrLen nIdx = sal::static_int_cast< xub_StrLen >(nI);
        sal_Unicode nChar = rRet.GetChar(nIdx);
        if (nChar == ' ')
            continue;
        if (rRet.GetChar(nIdx) != '{')
            bOk=true;
        break;
    }
    if (!bOk)   //No term, use dummy
        APPEND(rRet," {}");
}

void MathType::HandleNudge()
{
    sal_uInt8 nXNudge;
    *pS >> nXNudge;
    sal_uInt8 nYNudge;
    *pS >> nYNudge;
    if (nXNudge == 128 && nYNudge == 128)
    {
        sal_uInt16 nXLongNudge;
        sal_uInt16 nYLongNudge;
        *pS >> nXLongNudge;
        *pS >> nYLongNudge;
    }
}
/*Fabously complicated as many tokens have to be reordered and generally
 *moved around from mathtypes paradigm to starmaths.*/
int MathType::HandleRecords(int nLevel,sal_uInt8 nSelector,
    sal_uInt8 nVariation, int nMatrixRows,int nMatrixCols)
{
    sal_uInt8 nTag,nRecord;
    sal_uInt8 nTabType,nTabStops;
    sal_uInt16 nTabOffset;
    int i,nRet=1,newline=0;
    bool bSilent=false;
    int nPart=0;
    rtl::OUString sPush,sMainTerm;
    int nSetSize=0,nSetAlign=0;
    int nCurRow=0,nCurCol=0;
    bool bOpenString=false;
    xub_StrLen nTextStart = 0;
    xub_StrLen nSubSupStartPos = 0;
    xub_StrLen nLastTemplateBracket=STRING_NOTFOUND;

    do
    {
        *pS >> nTag;
        nRecord = nTag&0x0F;

        /*MathType strings can of course include words which
         *are StarMath keywords, the simplest solution is
         to escape strings of greater than len 1 with double
         quotes to avoid scanning the TokenTable for matches

         Unfortunately it may turn out that the string gets
         split during the handling of a character emblishment
         so this special case must be handled in the
         character handler case 2:
         */
        if ((nRecord == CHAR) && (!bIsSilent) && (!bOpenString))
        {
            bOpenString=true;
            nTextStart = rRet.Len();
        }
        else if ((nRecord != CHAR) && (bOpenString))
        {
            bOpenString=false;
            if ((rRet.Len() - nTextStart) > 1)
            {
                String aStr;
                TypeFaceToString(aStr,nTypeFace);
                aStr += '\"';
                rRet.Insert(aStr,nTextStart);
                rRet += '\"';
            }
            else if (nRecord == END && rRet.Len() > 0)
            {
                sal_Unicode cChar = 0;
                xub_StrLen nI = rRet.Len()-1;
                while (nI && ((cChar = rRet.GetChar(nI)) == ' '))
                    --nI;
                if ((cChar == '=') || (cChar == '+') || (cChar == '-'))
                    APPEND(rRet,"{}");
            }
        }

        switch(nRecord)
        {
            case LINE:
                {
                    if (xfLMOVE(nTag))
                        HandleNudge();

                    if (newline>0)
                        APPEND(rRet,"\nnewline\n");
                    if (!(xfNULL(nTag)))
                    {
                        switch (nSelector)
                        {
                        case 0x0:
                            if (nVariation==0)
                                APPEND(rRet," langle ");
                            else if (nVariation==1)
                                APPEND(rRet," \\langle ");
                            break;
                        case 0x1:
                            if (nVariation==0)
                                APPEND(rRet," left (");
                            else if (nVariation==1)
                                APPEND(rRet,"\\(");
                            break;
                        case 0x2:
                            if ((nVariation==0) || (nVariation==1))
                                APPEND(rRet," left lbrace ");
                            else
                                APPEND(rRet," left none ");
                            break;
                        case 0x3:
                            if (nVariation==0)
                                APPEND(rRet," left [");
                            else if (nVariation==1)
                                APPEND(rRet,"\\[");
                            break;
                        case 0x8:
                        case 0xb:
                            APPEND(rRet," \\[");
                            break;
                        case 0x4:
                            if (nVariation==0)
                                APPEND(rRet," lline ");
                            else if (nVariation==1)
                                APPEND(rRet," \\lline ");
                            break;
                        case 0x5:
                            if (nVariation==0)
                                APPEND(rRet," ldline ");
                            else if (nVariation==1)
                                APPEND(rRet," \\ldline ");
                            break;
                        case 0x6:
                            if (nVariation == 0 || nVariation == 1)
                                APPEND(rRet," left lfloor ");
                            else if (nVariation==1)
                                APPEND(rRet," left none ");
                            break;
                        case 0x7:
                            if (nVariation==0)
                                APPEND(rRet," lceil ");
                            else if (nVariation==1)
                                APPEND(rRet," \\lceil ");
                            break;
                        case 0x9:
                        case 0xa:
                            APPEND(rRet," \\]");
                            break;
                        case 0xc:
                            APPEND(rRet," \\(");
                            break;
                        case 0xd:
                            if (nPart == 0)
                            {
                                if (nVariation == 0)
                                    APPEND(rRet," sqrt");
                                else
                                {
                                    APPEND(rRet," nroot");
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            APPEND(rRet," {");
                            break;
                        case 0xe:
                            if (nPart == 0)
                                APPEND(rRet," { ");


                            if (nPart == 1)
                                APPEND(rRet," over ");
                            APPEND(rRet," {");
                            break;
                        case 0xf:
                            nSubSupStartPos = rRet.Len();
                            if ((nVariation == 0) ||
                                    ((nVariation == 2) && (nPart==1)))
                            {
                                lcl_AppendDummyTerm(rRet);
                                APPEND(rRet," rSup");
                            }
                            else if ((nVariation == 1) ||
                                    ((nVariation == 2) && (nPart==0)))
                            {
                                lcl_AppendDummyTerm(rRet);
                                APPEND(rRet," rSub");
                            }
                            APPEND(rRet," {");
                            break;
                        case 0x10:
                            if (nVariation == 0)
                                APPEND(rRet," {underline ");
                            else if (nVariation == 1)
                                APPEND(rRet," {underline underline ");
                            APPEND(rRet," {");
                            break;
                        case 0x11:
                            if (nVariation == 0)
                                APPEND(rRet," {overline ");
                            else if (nVariation == 1)
                                APPEND(rRet," {overline overline ");
                            APPEND(rRet," {");
                            break;
                        case 0x12:
                            if (nPart == 0)
                            {
                                if (nVariation == 0)
                                    APPEND(rRet," widevec ");//left arrow above
                                else if (nVariation == 1)
                                    APPEND(rRet," widevec ");//left arrow below
                                APPEND(rRet," {");
                            }
                            break;
                        case 0x13:
                            if (nPart == 0)
                            {
                                if (nVariation == 0)
                                    APPEND(rRet," widevec ");//right arrow above
                                else if (nVariation == 1)
                                    APPEND(rRet," widevec ");//right arrow below
                                APPEND(rRet," {");
                            }
                            break;
                        case 0x14:
                            if (nPart == 0)
                            {
                                if (nVariation == 0)
                                    APPEND(rRet," widevec ");//double arrow above
                                else if (nVariation == 1)
                                    APPEND(rRet," widevec ");//double arrow below
                                APPEND(rRet," {");
                            }
                            break;
                        case 0x15:
                            if (nPart == 0)
                            {
                                if ((nVariation == 3) || (nVariation == 4))
                                    APPEND(rRet," lInt");
                                else
                                    APPEND(rRet," Int");
                                if ( (nVariation != 0) && (nVariation != 3))
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if (((nVariation == 1) ||
                                    (nVariation == 4)) && (nPart==1))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 2) && (nPart==2))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 2) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x16:
                            if (nPart == 0)
                            {
                                if ((nVariation == 2) || (nVariation == 3))
                                    APPEND(rRet," llInt");
                                else
                                    APPEND(rRet," iInt");
                                if ( (nVariation != 0) && (nVariation != 2))
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if (((nVariation == 1) ||
                                    (nVariation == 3)) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x17:
                            if (nPart == 0)
                            {
                                if ((nVariation == 2) || (nVariation == 3))
                                    APPEND(rRet," lllInt");
                                else
                                    APPEND(rRet," iiInt");
                                if ( (nVariation != 0) && (nVariation != 2))
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if (((nVariation == 1) ||
                                    (nVariation == 3)) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x18:
                            if (nPart == 0)
                            {
                                if (nVariation == 2)
                                    APPEND(rRet," lInt");
                                else
                                    APPEND(rRet," Int");
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if (((nVariation == 1) ||
                                    (nVariation == 2)) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 0) && (nPart==2))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x19:
                            if (nPart == 0)
                            {
                                if (nVariation == 0)
                                    APPEND(rRet," llInt");
                                else
                                    APPEND(rRet," iInt");
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if (nPart==1)
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x1a:
                            if (nPart == 0)
                            {
                                if (nVariation == 0)
                                    APPEND(rRet," lllInt");
                                else
                                    APPEND(rRet," iiInt");
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if (nPart==1)
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x1b:
                        case 0x1c:
                            APPEND(rRet," {");
                            break;
                        case 0x1d:
                            if (nPart == 0)
                            {
                                APPEND(rRet," Sum");
                                if (nVariation != 2)
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x1e:
                            if (nPart == 0)
                            {
                                APPEND(rRet," Sum");
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x1f:
                            if (nPart == 0)
                            {
                                APPEND(rRet," Prod");
                                if (nVariation != 2)
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x20:
                            if (nPart == 0)
                            {
                                APPEND(rRet," Prod");
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x21:
                            if (nPart == 0)
                            {
                                APPEND(rRet," coProd");
                                if (nVariation != 2)
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x22:
                            if (nPart == 0)
                            {
                                APPEND(rRet," coProd");
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x23:
                            if (nPart == 0)
                            {
                                APPEND(rRet," union"); //union
                                if (nVariation != 2)
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x24:
                            if (nPart == 0)
                            {
                                APPEND(rRet," union"); //union
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x25:
                            if (nPart == 0)
                            {
                                APPEND(rRet," intersect"); //intersect
                                if (nVariation != 2)
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x26:
                            if (nPart == 0)
                            {
                                APPEND(rRet," intersect"); //intersect
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 1) && (nPart==2))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x27:
                            if ((nVariation == 0) && (nPart==1))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 2) && (nPart==1))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 2) && (nPart==2))
                                APPEND(rRet," cSup");
                            APPEND(rRet," {");
                            break;
                        case 0x28:
                            if (nVariation == 0)
                            {
                                if (nPart == 0)
                                {
                                    sPush = rRet;
                                    rRet.Erase();
                                }
                            }
                            APPEND(rRet," {");
                            if (nVariation == 0)
                            {
                                if (nPart == 1)
                                    APPEND(rRet,"alignr ");
                            }
                            if (nPart == 0)
                                APPEND(rRet,"\\lline ");
                            if (nVariation == 1)
                                APPEND(rRet,"overline ");
                            break;
                        case 0x29:
                            APPEND(rRet," {");
                            break;
                        case 0x2a:
                            if (nPart == 0)
                            {
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==0))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 2) && (nPart==1))
                                APPEND(rRet," rSup");
                            else if ((nVariation == 1) && (nPart==0))
                                APPEND(rRet," rSub");
                            else if ((nVariation == 2) && (nPart==0))
                                APPEND(rRet," rSub");
                            APPEND(rRet," {");
                            break;
                        case 0x2b:
                            if (nPart == 0)
                            {
                                sPush = rRet;
                                rRet.Erase();
                            }
                            if ((nVariation == 0) && (nPart==0))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 2) && (nPart==1))
                                APPEND(rRet," cSup");
                            else if ((nVariation == 1) && (nPart==0))
                                APPEND(rRet," cSub");
                            else if ((nVariation == 2) && (nPart==0))
                                APPEND(rRet," cSub");
                            APPEND(rRet," {");
                            break;
                        case 0x2c:
                            if (nPart == 0)
                                APPEND(rRet,"\"\"");
                            if ((nVariation == 0)
                                    || ((nVariation == 2) && (nPart==1)))
                                APPEND(rRet," lSup");
                            else if ((nVariation == 1)
                                    || ((nVariation == 2) && (nPart==0)))
                                APPEND(rRet," lSub");
                            APPEND(rRet," {");
                            break;
                        case 0x2d:
                            if (nVariation==0)
                            {
                                if (nPart == 0)
                                    APPEND(rRet," langle ");
                            }
                            else if (nVariation==1)
                            {
                                APPEND(rRet," \\langle ");
                                newline--;
                            }
                            else if (nVariation==2)
                            {
                                APPEND(rRet," \\lline ");
                                newline--;
                            }
                            break;
                        case 0x2e:
                            if (nVariation == 0)
                                APPEND(rRet," widevec ");//left below
                            else if (nVariation == 1)
                                APPEND(rRet," widevec ");//right below
                            else if (nVariation == 2)
                                APPEND(rRet," widevec ");//double headed below
                            APPEND(rRet," {");
                            break;
                        case 0x2f:
                            if (nVariation == 0)
                                APPEND(rRet," widevec ");//left above
                            else if (nVariation == 1)
                                APPEND(rRet," widevec ");//right above
                            else if (nVariation == 2)
                                APPEND(rRet," widevec ");//double headed above
                            APPEND(rRet," {");
                            break;
                        default:
                            break;
                        }
                        sal_Int16 nOldCurSize=nCurSize;
                        xub_StrLen nSizeStartPos = rRet.Len();
                        HandleSize(nLSize,nDSize,nSetSize);
                        nRet = HandleRecords(nLevel+1);
                        while (nSetSize)
                        {
                            bool bOk=false;
                            xub_StrLen nI = rRet.SearchBackward('{');
                            if (nI != STRING_NOTFOUND)
                            {
                                for(nI=nI+1;nI<rRet.Len();nI++)
                                    if (rRet.GetChar(nI) != ' ')
                                    {
                                        bOk=true;
                                        break;
                                    }
                            }
                            else
                                bOk=true;

                            if (bOk)
                                APPEND(rRet,"} ");
                            else
                                rRet.Erase(nSizeStartPos);
                            nSetSize--;
                            nCurSize=nOldCurSize;
                        }


                        HandleMatrixSeperator(nMatrixRows,nMatrixCols,
                            nCurCol,nCurRow);

                        switch (nSelector)
                        {
                        case 0x0:
                            if (nVariation==0)
                                APPEND(rRet," rangle ");
                            else if (nVariation==2)
                                APPEND(rRet," \\rangle ");
                            break;
                        case 0x1:
                            if (nVariation==0)
                                APPEND(rRet," right )");
                            else if (nVariation==2)
                                APPEND(rRet,"\\)");
                            break;
                        case 0x2:
                            if ((nVariation==0) || (nVariation==2))
                                APPEND(rRet," right rbrace ");
                            else
                                APPEND(rRet," right none ");
                            break;
                        case 0x3:
                            if (nVariation==0)
                                APPEND(rRet," right ]");
                            else if (nVariation==2)
                                APPEND(rRet,"\\]");
                            break;
                        case 0x4:
                            if (nVariation==0)
                                APPEND(rRet," rline ");
                            else if (nVariation==2)
                                APPEND(rRet," \\rline ");
                            break;
                        case 0x5:
                            if (nVariation==0)
                                APPEND(rRet," rdline ");
                            else if (nVariation==2)
                                APPEND(rRet," \\rdline ");
                            break;
                        case 0x6:
                            if (nVariation == 0 || nVariation == 2)
                                APPEND(rRet," right rfloor ");
                            else if (nVariation==2)
                                APPEND(rRet," right none ");
                            break;
                        case 0x7:
                            if (nVariation==0)
                                APPEND(rRet," rceil ");
                            else if (nVariation==2)
                                APPEND(rRet," \\rceil ");
                            break;
                        case 0x8:
                        case 0xa:
                            APPEND(rRet,"\\[");
                            break;
                        case 0x9:
                        case 0xc:
                            APPEND(rRet,"\\]");
                            break;
                        case 0xd:
                            APPEND(rRet,"} ");
                            if (nVariation == 1)
                            {
                                if (nPart == 0)
                                {
                                    newline--;
                                    sMainTerm = rRet;
                                    rRet.Erase();
                                }
                                else
                                {
                                    sPush += rRet;
                                    rRet = sPush;
                                    rRet += sMainTerm;
                                }
                            }
                            else
                            {
                                if (nPart == 0)
                                    newline--;
                            }
                            nPart++;
                            break;
                        case 0xb:
                            APPEND(rRet,"\\)");
                            break;
                        case 0xe:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                                newline--;
                            else
                                APPEND(rRet,"} ");
                            nPart++;
                            break;
                        case 0xf:
                            {
                            if ((nPart == 0) &&
                                    ((nVariation == 2) || (nVariation == 1)))
                                newline--;

                            bool bOk=false;
                            xub_StrLen nI = rRet.SearchBackward('{');
                            if (nI != STRING_NOTFOUND)
                            {
                                for(nI=nI+1;nI<rRet.Len();nI++)
                                    if (rRet.GetChar(nI) != ' ')
                                    {
                                        bOk=true;
                                        break;
                                    }
                            }
                            else
                                bOk=true;

                            if (bOk)
                                APPEND(rRet,"} ");
                            else
                                rRet.Erase(nSubSupStartPos);
                            nPart++;
                            }
                            break;
                        case 0x2c:
                            if ((nPart == 0) &&
                                    ((nVariation == 2) || (nVariation == 1)))
                                newline--;
                            APPEND(rRet,"} ");
                            nPart++;
                            break;
                        case 0x2e:
                        case 0x2f:
                            APPEND(rRet,"} ");
                            break;
                        case 0x10:
                        case 0x11:
                            APPEND(rRet,"}} ");
                            break;
                        case 0x12:
                        case 0x13:
                        case 0x14:
                            if (nPart == 0)
                            {
                                newline--;
                                APPEND(rRet,"} ");
                            }
                            nPart++;
                            break;
                        case 0x1b:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                newline--;
                                APPEND(rRet,"overbrace");
                            }
                            nPart++;
                            break;
                        case 0x1c:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                newline--;
                                APPEND(rRet,"underbrace");
                            }
                            nPart++;
                            break;
                        case 0x27:
                            if (nPart==0)
                                newline--;
                            else if ((nPart==1) &&
                                    ((nVariation == 2) || (nVariation == 1)))
                                newline--;
                            APPEND(rRet,"} ");
                            nPart++;
                            break;
                        case 0x28:
                            APPEND(rRet,"} ");
                            if (nVariation == 0)
                            {
                                if (nPart == 0)
                                {
                                    sMainTerm = rRet;
                                    rRet.Erase();
                                }
                                else
                                {
                                    sPush += rRet;
                                    rRet = sPush;
                                    APPEND(rRet," over ");
                                    rRet += sMainTerm;
                                }
                            }
                            if (nPart == 0)
                                newline--;
                            nPart++;
                            break;
                        case 0x29:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                newline--;
                                switch (nVariation)
                                {
                                case 1:
                                    APPEND(rRet,"slash");
                                    break;
                                default:
                                    APPEND(rRet,"wideslash");
                                    break;
                                }
                            }
                            nPart++;
                            break;
                        case 0x1d:
                        case 0x1e:
                        case 0x1f:
                        case 0x20:
                        case 0x21:
                        case 0x22:
                        case 0x23:
                        case 0x24:
                        case 0x25:
                        case 0x26:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                if (nVariation != 2)
                                {
                                    sMainTerm = rRet;
                                    rRet.Erase();
                                }
                                newline--;
                            }
                            else if ((nPart == 1) && (nVariation == 0))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            else if ((nPart == 1) && (nVariation == 1))
                                newline--;
                            else if ((nPart == 2) && (nVariation == 1))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            nPart++;
                            break;
                        case 0x15:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                if ((nVariation != 0) && (nVariation != 3))
                                {
                                    sMainTerm = rRet;
                                    rRet.Erase();
                                }
                                newline--;
                            }
                            else if ((nPart == 1) &&
                                    ((nVariation == 1) || (nVariation==4)))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            else if ((nPart == 1) && (nVariation == 2))
                                newline--;
                            else if ((nPart == 2) && (nVariation == 2))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            nPart++;
                            break;
                        case 0x16:
                        case 0x17:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                if ((nVariation != 0) && (nVariation != 2))
                                {
                                    sMainTerm = rRet;
                                    rRet.Erase();
                                }
                                newline--;
                            }
                            else if ((nPart == 1) &&
                                    ((nVariation == 1) || (nVariation==3)))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            nPart++;
                            break;
                        case 0x18:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                sMainTerm = rRet;
                                rRet.Erase();
                                newline--;
                            }
                            else if ((nPart == 1) &&
                                    ((nVariation == 1) || (nVariation==2)))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            else if ((nPart == 1) && (nVariation == 0))
                                newline--;
                            else if ((nPart == 2) && (nVariation == 0))
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            nPart++;
                            break;
                        case 0x19:
                        case 0x1a:
                            APPEND(rRet,"} ");
                            if (nPart == 0)
                            {
                                sMainTerm = rRet;
                                rRet.Erase();
                                newline--;
                            }
                            else if (nPart == 1)
                            {
                                sPush += rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                                newline--;
                            }
                            nPart++;
                            break;
                        case 0x2a:
                        case 0x2b:
                            APPEND(rRet,"} ");

                            if ((nPart == 0) &&
                                    ((nVariation == 0) || (nVariation == 1)))
                            {
                                sMainTerm = rRet;
                                rRet.Erase();
                                newline--;
                            }
                            else if ((nPart == 0) && (nVariation == 2))
                                newline--;
                            else if ((nPart == 1) && (nVariation == 2))
                            {
                                sMainTerm = rRet;
                                rRet.Erase();
                                newline--;
                            }
                            else if ((nPart == 2) || ((((nPart == 1) &&
                                    (nVariation == 0)) || (nVariation == 1))))
                            {
                                sPush+=rRet;
                                rRet = sPush;
                                rRet += sMainTerm;
                            }
                            nPart++;
                            break;
                        case 0x2d:
                            if (nVariation==0)
                            {
                                if (nPart == 0)
                                {
                                    newline--; //there is another term to arrive
                                    APPEND(rRet," mline ");
                                }
                                else
                                    APPEND(rRet," rangle ");
                            }
                            else if (nVariation==1)
                                APPEND(rRet," \\lline ");
                            else if (nVariation==2)
                                APPEND(rRet," \\rangle ");
                            nPart++;
                            break;
                        default:
                            break;
                        }
                        bSilent = true; //Skip the optional brackets and/or
                                        //symbols that follow some of these
                                        //records. Foo Data.

                        /*In matrices and piles we cannot seperate equation
                         *lines with the newline keyword*/
                        if (nMatrixCols==0)
                            newline++;
                    }
                }
                break;
            case CHAR:
                if (xfLMOVE(nTag))
                    HandleNudge();
                nRet = HandleChar(nTextStart,nSetSize,nLevel,nTag,nSelector,
                    nVariation,bSilent);
                 break;
            case TMPL:
                if (xfLMOVE(nTag))
                    HandleNudge();
                nRet = HandleTemplate(nLevel,nSelector,nVariation,
                    nLastTemplateBracket);
                break;
            case PILE:
                if (xfLMOVE(nTag))
                    HandleNudge();
                nRet = HandlePile(nSetAlign,nLevel,nSelector,nVariation);
                HandleMatrixSeperator(nMatrixRows,nMatrixCols,nCurCol,nCurRow);
                break;
            case MATRIX:
                if (xfLMOVE(nTag))
                    HandleNudge();
                nRet = HandleMatrix(nLevel,nSelector,nVariation);
                HandleMatrixSeperator(nMatrixRows,nMatrixCols,nCurCol,nCurRow);
                break;
            case EMBEL:
                if (xfLMOVE(nTag))
                    HandleNudge();
                HandleEmblishments();
                break;
            case RULER:
                *pS >> nTabStops;
                for (i=0;i<nTabStops;i++)
                {
                    *pS >> nTabType;
                    *pS >> nTabOffset;
                }
                OSL_FAIL("Not seen in the wild Equation Ruler Field");
                break;
            case FONT:
                {
                    MathTypeFont aFont;
                    *pS >> aFont.nTface;
                    /*
                    The typeface number is the negative (which makes it
                    positive) of the typeface value (unbiased) that appears in
                    CHAR records that might follow a given FONT record
                    */
                    aFont.nTface = 128-aFont.nTface;
                    *pS >> aFont.nStyle;
                    aUserStyles.insert(aFont);
                    std::vector<sal_Char> aSeq;
                    while(1)
                    {
                        sal_Char nChar8(0);
                        *pS >> nChar8;
                        if (nChar8 == 0)
                            break;
                        aSeq.push_back(nChar8);
                    }
                    // Do nothing to the font name now in aSeq!?
                }
                break;
            case SIZE:
                HandleSetSize();
                break;
            case 10:
            case 11:
            case 12:
            case 13:
            case 14:
                nLSize=nRecord-10;
                break;
            case END:
            default:
                break;
        }
    }
    while (nRecord != END && !pS->IsEof());
    while (nSetSize)
    {
        rRet += '}';
        nSetSize--;
    }
    return nRet;
}

/*Simply determine if we are at the end of a record or the end of a line,
 *with fiddley logic to see if we are in a matrix or a pile or neither

 Note we cannot tell until after the event that this is the last entry
 of a pile, so we must strip the last seperator of a pile after this
 is detected in the PILE handler
 */
void MathType::HandleMatrixSeperator(int nMatrixRows,int nMatrixCols,
    int &rCurCol,int &rCurRow)
{
    if (nMatrixRows!=0)
    {
        if (rCurCol == nMatrixCols-1)
        {
            if (rCurRow != nMatrixRows-1)
                APPEND(rRet," {} ##\n");
            if (nMatrixRows!=-1)
            {
                rCurCol=0;
                rCurRow++;
            }
        }
        else
        {
            APPEND(rRet," {} # ");
            if (nMatrixRows!=-1)
                rCurCol++;
            else
                rRet += '\n';
        }
    }
}

/* set the alignment of the following term, but starmath currently
 * cannot handle vertical alignment */
void MathType::HandleAlign(sal_uInt8 nHorAlign, sal_uInt8 /*nVAlign*/, int &rSetAlign)
{
    switch(nHorAlign)
    {
    case 1:
    default:
        APPEND(rRet,"alignl {");
        break;
    case 2:
        APPEND(rRet,"alignc {");
        break;
    case 3:
        APPEND(rRet,"alignr {");
        break;
    }
    rSetAlign++;
}

/* set size of text, complexity due to overuse of signedness as a flag
 * indicator by mathtype file format*/
sal_Bool MathType::HandleSize(sal_Int16 nLstSize,sal_Int16 nDefSize, int &rSetSize)
{
    bool bRet=false;
    if (nLstSize < 0)
    {
        if ((-nLstSize/32 != nDefaultSize) && (-nLstSize/32 != nCurSize))
        {
            if (rSetSize)
            {
                rSetSize--;
                rRet += '}';
                bRet=true;
            }
            if (-nLstSize/32 != nLastSize)
            {
                nLastSize = nCurSize;
                APPEND(rRet," size ");
                rRet += String::CreateFromInt32(-nLstSize/32);
                rRet += '{';
                bRet=true;
                rSetSize++;
            }
            nCurSize = -nLstSize/32;
        }
    }
    else
    {
        /*sizetable should theoreticaly be filled with the default sizes
         *of the various font groupings matching starmaths equivalents
         in aTypeFaces, and a test would be done to see if the new font
         size would be the same as what starmath would have chosen for
         itself anyway in which case the size setting could be ignored*/
        nLstSize = aSizeTable[nLstSize];
        nLstSize = nLstSize + nDefSize;
        if (nLstSize != nCurSize)
        {
            if (rSetSize)
            {
                rSetSize--;
                rRet += '}';
                bRet=true;
            }
            if (nLstSize != nLastSize)
            {
                nLastSize = nCurSize;
                APPEND(rRet," size ");
                rRet += String::CreateFromInt32(nLstSize);
                rRet += '{';
                bRet=true;
                rSetSize++;
            }
            nCurSize = nLstSize;
        }
    }
    return bRet;
}

int MathType::ConvertFromStarMath( SfxMedium& rMedium )
{
    if (!pTree)
        return 0;

    SvStream *pStream = rMedium.GetOutStream();
    if ( pStream )
    {
        SvStorageRef pStor = new SotStorage( pStream, false );

        SvGlobalName aGName(0x0002ce02L, 0x0000, 0x0000,0xc0,0x00,
            0x00,0x00,0x00,0x00,0x00,0x46 );
        pStor->SetClass( aGName, 0, rtl::OUString("Microsoft Equation 3.0"));

        static sal_uInt8 const aCompObj[] = {
            0x01, 0x00, 0xFE, 0xFF, 0x03, 0x0A, 0x00, 0x00,
            0xFF, 0xFF, 0xFF, 0xFF, 0x02, 0xCE, 0x02, 0x00,
            0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00,
            0x00, 0x00, 0x00, 0x46, 0x17, 0x00, 0x00, 0x00,
            0x4D, 0x69, 0x63, 0x72, 0x6F, 0x73, 0x6F, 0x66,
            0x74, 0x20, 0x45, 0x71, 0x75, 0x61, 0x74, 0x69,
            0x6F, 0x6E, 0x20, 0x33, 0x2E, 0x30, 0x00, 0x0C,
            0x00, 0x00, 0x00, 0x44, 0x53, 0x20, 0x45, 0x71,
            0x75, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x0B,
            0x00, 0x00, 0x00, 0x45, 0x71, 0x75, 0x61, 0x74,
            0x69, 0x6F, 0x6E, 0x2E, 0x33, 0x00, 0xF4, 0x39,
            0xB2, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
            0x00, 0x00, 0x00, 0x00, 0x00, 0x00
        };
        SvStorageStreamRef xStor( pStor->OpenSotStream(rtl::OUString("\1CompObj")));
        xStor->Write(aCompObj,sizeof(aCompObj));

        static sal_uInt8 const aOle[] = {
            0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
            0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
            0x00, 0x00, 0x00, 0x00
            };
        SvStorageStreamRef xStor2( pStor->OpenSotStream(rtl::OUString("\1Ole")));
        xStor2->Write(aOle,sizeof(aOle));
        xStor.Clear();
        xStor2.Clear();

        SvStorageStreamRef xSrc = pStor->OpenSotStream(rtl::OUString("Equation Native"));
        if ( (!xSrc.Is()) || (SVSTREAM_OK != xSrc->GetError()))
            return 0;

        pS = &xSrc;
        pS->SetNumberFormatInt( NUMBERFORMAT_INT_LITTLEENDIAN );

        pS->SeekRel(EQNOLEFILEHDR_SIZE); //Skip 28byte Header and fill it in later
        *pS << sal_uInt8(0x03);
        *pS << sal_uInt8(0x01);
        *pS << sal_uInt8(0x01);
        *pS << sal_uInt8(0x03);
        *pS << sal_uInt8(0x00);
        sal_uInt32 nSize = pS->Tell();
        nPendingAttributes=0;

        HandleNodes(pTree);
        *pS << sal_uInt8(END);

        nSize = pS->Tell()-nSize;
        pS->Seek(0);
        EQNOLEFILEHDR aHdr(nSize+4+1);
        aHdr.Write(pS);

        pStor->Commit();
    }

    return 1;
}


sal_uInt8 MathType::HandleNodes(SmNode *pNode,int nLevel)
{
    bool bRet=false;
    switch(pNode->GetType())
    {
        case NATTRIBUT:
            HandleAttributes(pNode,nLevel);
            break;
        case NTEXT:
            HandleText(pNode,nLevel);
            break;
        case NVERTICAL_BRACE:
            HandleVerticalBrace(pNode,nLevel);
            break;
        case NBRACE:
            HandleBrace(pNode,nLevel);
            break;
        case NOPER:
            HandleOperator(pNode,nLevel);
            break;
        case NBINVER:
            HandleFractions(pNode,nLevel);
            break;
        case NROOT:
            HandleRoot(pNode,nLevel);
            break;
        case NSPECIAL:
            {
            SmTextNode *pText=(SmTextNode *)pNode;
            //if the token str and the result text are the same then this
            //is to be seen as text, else assume its a mathchar
            if (pText->GetText() == OUString(pText->GetToken().aText))
                HandleText(pText,nLevel);
            else
                HandleMath(pText,nLevel);
            }
            break;
        case NMATH:
            HandleMath(pNode,nLevel);
            break;
        case NSUBSUP:
            HandleSubSupScript(pNode,nLevel);
            break;
        case NEXPRESSION:
            {
            sal_uInt16  nSize = pNode->GetNumSubNodes();
            for (sal_uInt16 i = 0; i < nSize; i++)
                if (SmNode *pTemp = pNode->GetSubNode(i))
                    HandleNodes(pTemp,nLevel+1);
            }
            break;
        case NTABLE:
            //Root Node, PILE equivalent, i.e. vertical stack
            HandleTable(pNode,nLevel);
            break;
        case NMATRIX:
            HandleSmMatrix((SmMatrixNode *)pNode,nLevel);
            break;
        case NLINE:
            {
            *pS << sal_uInt8(0x0a);
            *pS << sal_uInt8(LINE);
            sal_uInt16  nSize = pNode->GetNumSubNodes();
            for (sal_uInt16 i = 0; i < nSize; i++)
                if (SmNode *pTemp = pNode->GetSubNode(i))
                    HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END);
            }
            break;
        case NALIGN:
            HandleMAlign(pNode,nLevel);
            break;
        case NBLANK:
            *pS << sal_uInt8(CHAR);
            *pS << sal_uInt8(0x98);
            if (pNode->GetToken().eType == TSBLANK)
                *pS << sal_uInt16(0xEB04);
            else
                *pS << sal_uInt16(0xEB05);
            break;
        default:
            {
            sal_uInt16  nSize = pNode->GetNumSubNodes();
            for (sal_uInt16 i = 0; i < nSize; i++)
                if (SmNode *pTemp = pNode->GetSubNode(i))
                    HandleNodes(pTemp,nLevel+1);
            }
            break;
    }
    return bRet;
}


int MathType::StartTemplate(sal_uInt16 nSelector,sal_uInt16 nVariation)
{
    int nOldPending=nPendingAttributes;
    *pS << sal_uInt8(TMPL); //Template
    *pS << sal_uInt8(nSelector); //selector
    *pS << sal_uInt8(nVariation); //variation
    *pS << sal_uInt8(0x00); //options
    *pS << sal_uInt8(LINE);
    //theres just no way we can now handle any character
    //attributes (from mathtypes perspective) centered
    //over an expression but above template attribute
    //such as widevec and similiar constructs
    //we have to drop them
    nPendingAttributes=0;
    return nOldPending;
}

void MathType::EndTemplate(int nOldPendingAttributes)
{
    *pS << sal_uInt8(END); //end line
    *pS << sal_uInt8(END); //end template
    nPendingAttributes=nOldPendingAttributes;
}


void MathType::HandleSmMatrix(SmMatrixNode *pMatrix,int nLevel)
{
    *pS << sal_uInt8(MATRIX);
    *pS << sal_uInt8(0x00); //vAlign ?
    *pS << sal_uInt8(0x00); //h_just
    *pS << sal_uInt8(0x00); //v_just
    *pS << sal_uInt8(pMatrix->GetNumRows()); //v_just
    *pS << sal_uInt8(pMatrix->GetNumCols()); //v_just
    int nBytes=(pMatrix->GetNumRows()+1)*2/8;
    if (((pMatrix->GetNumRows()+1)*2)%8)
        nBytes++;
    for (sal_uInt16 j = 0; j < nBytes; j++)
        *pS << sal_uInt8(0x00); //row_parts
    nBytes=(pMatrix->GetNumCols()+1)*2/8;
    if (((pMatrix->GetNumCols()+1)*2)%8)
        nBytes++;
    for (sal_uInt16 k = 0; k < nBytes; k++)
        *pS << sal_uInt8(0x00); //col_parts
    sal_uInt16  nSize = pMatrix->GetNumSubNodes();
    for (sal_uInt16 i = 0; i < nSize; i++)
        if (SmNode *pTemp = pMatrix->GetSubNode(i))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //end line
        }
    *pS << sal_uInt8(END);
}


//Root Node, PILE equivalent, i.e. vertical stack
void MathType::HandleTable(SmNode *pNode,int nLevel)
{
    sal_uInt16  nSize = pNode->GetNumSubNodes();
    //The root of the starmath is a table, if
    //we convert this them each iteration of
    //conversion from starmath to mathtype will
    //add an extra unnecessary level to the
    //mathtype output stack which would grow
    //without bound in a multi step conversion

    if (nLevel == 0)
        *pS << sal_uInt8(0x0A); //initial size

    if ( nLevel || (nSize >1))
    {
        *pS << sal_uInt8(PILE);
        *pS << sal_uInt8(nHAlign); //vAlign ?
        *pS << sal_uInt8(0x01); //hAlign
    }

    for (sal_uInt16 i = 0; i < nSize; i++)
        if (SmNode *pTemp = pNode->GetSubNode(i))
        {
            *pS << sal_uInt8(LINE);
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END);
        }
    if (nLevel || (nSize>1))
        *pS << sal_uInt8(END);
}


void MathType::HandleRoot(SmNode *pNode,int nLevel)
{
    SmNode *pTemp;
    *pS << sal_uInt8(TMPL); //Template
    *pS << sal_uInt8(0x0D); //selector
    if (pNode->GetSubNode(0))
        *pS << sal_uInt8(0x01); //variation
    else
        *pS << sal_uInt8(0x00); //variation
    *pS << sal_uInt8(0x00); //options

    if (NULL != (pTemp = pNode->GetSubNode(2)))
    {
        *pS << sal_uInt8(LINE); //line
        HandleNodes(pTemp,nLevel+1);
        *pS << sal_uInt8(END);
    }

    if (NULL != (pTemp = pNode->GetSubNode(0)))
    {
        *pS << sal_uInt8(LINE); //line
        HandleNodes(pTemp,nLevel+1);
        *pS << sal_uInt8(END);
    }
    else
        *pS << sal_uInt8(LINE|0x10); //dummy line



    *pS << sal_uInt8(END);
}

sal_uInt8 MathType::HandleCScript(SmNode *pNode,SmNode *pContent,int nLevel,
    sal_uLong *pPos,sal_Bool bTest)
{
    sal_uInt8 nVariation2=0xff;

    if (bTest && pNode->GetSubNode(CSUP+1))
    {
        nVariation2=0;
        if (pNode->GetSubNode(CSUB+1))
            nVariation2=2;
    }
    else if (pNode->GetSubNode(CSUB+1))
        nVariation2=1;

    if (nVariation2!=0xff)
    {
        if (pPos)
            *pPos = pS->Tell();
        *pS << sal_uInt8(TMPL); //Template
        *pS << sal_uInt8(0x2B); //selector
        *pS << nVariation2;
        *pS << sal_uInt8(0x00); //options

        if (pContent)
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pContent,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);

        *pS << sal_uInt8(0x0B);

        SmNode *pTemp;
        if (NULL != (pTemp = pNode->GetSubNode(CSUB+1)))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);
        if (bTest && NULL != (pTemp = pNode->GetSubNode(CSUP+1)))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);
    }
    return nVariation2;
}



/*
 Sub and Sup scripts and another problem area, StarMath
 can have all possible options used at the same time, whereas
 Mathtype cannot. The ordering of the nodes for each system
 is quite different as well leading to some complexity
 */
void MathType::HandleSubSupScript(SmNode *pNode,int nLevel)
{
    SmNode *pTemp;

    sal_uInt8 nVariation=0xff;
    if (pNode->GetSubNode(LSUP+1))
    {
        nVariation=0;
        if (pNode->GetSubNode(LSUB+1))
            nVariation=2;
    }
    else if (NULL != (pTemp = pNode->GetSubNode(LSUB+1)))
        nVariation=1;

    if (nVariation!=0xff)
    {
        *pS << sal_uInt8(TMPL); //Template
        *pS << sal_uInt8(0x2c); //selector
        *pS << nVariation;
        *pS << sal_uInt8(0x00); //options
        *pS << sal_uInt8(0x0B);

        if (NULL != (pTemp = pNode->GetSubNode(LSUB+1)))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);
        if (NULL != (pTemp = pNode->GetSubNode(LSUP+1)))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);
        *pS << sal_uInt8(END);
        nVariation=0xff;
    }


    sal_uInt8 nVariation2=HandleCScript(pNode,NULL,nLevel);

    if (NULL != (pTemp = pNode->GetSubNode(0)))
    {
        HandleNodes(pTemp,nLevel+1);
    }

    if (nVariation2 != 0xff)
        *pS << sal_uInt8(END);

    if (NULL != (pNode->GetSubNode(RSUP+1)))
    {
        nVariation=0;
        if (pNode->GetSubNode(RSUB+1))
            nVariation=2;
    }
    else if (NULL != (pTemp = pNode->GetSubNode(RSUB+1)))
        nVariation=1;

    if (nVariation!=0xff)
    {
        *pS << sal_uInt8(TMPL); //Template
        *pS << sal_uInt8(0x0F); //selector
        *pS << nVariation;
        *pS << sal_uInt8(0x00); //options
        *pS << sal_uInt8(0x0B);

        if (NULL != (pTemp = pNode->GetSubNode(RSUB+1)))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);
        if (NULL != (pTemp = pNode->GetSubNode(RSUP+1)))
        {
            *pS << sal_uInt8(LINE); //line
            HandleNodes(pTemp,nLevel+1);
            *pS << sal_uInt8(END); //line
        }
        else
            *pS << sal_uInt8(LINE|0x10);
    *pS << sal_uInt8(END); //line
    }

    //After subscript mathtype will keep the size of
    //normal text at the subscript size, sigh.
    *pS << sal_uInt8(0x0A);
}


void MathType::HandleFractions(SmNode *pNode,int nLevel)
{
    SmNode *pTemp;
    *pS << sal_uInt8(TMPL); //Template
    *pS << sal_uInt8(0x0E); //selector
    *pS << sal_uInt8(0x00); //variation
    *pS << sal_uInt8(0x00); //options

    *pS << sal_uInt8(0x0A);
    *pS << sal_uInt8(LINE); //line
    if (NULL != (pTemp = pNode->GetSubNode(0)))
        HandleNodes(pTemp,nLevel+1);
    *pS << sal_uInt8(END);

    *pS << sal_uInt8(0x0A);
    *pS << sal_uInt8(LINE); //line
    if (NULL != (pTemp = pNode->GetSubNode(2)))
        HandleNodes(pTemp,nLevel+1);
    *pS << sal_uInt8(END);

    *pS << sal_uInt8(END);
}


void MathType::HandleBrace(SmNode *pNode,int nLevel)
{
    SmNode *pTemp;
    SmNode *pLeft=pNode->GetSubNode(0);
    SmNode *pRight=pNode->GetSubNode(2);

    *pS << sal_uInt8(TMPL); //Template
    bIsReInterpBrace=0;
    sal_uInt8 nBSpec=0x10;
    sal_uLong nLoc = pS->Tell();
    if (pLeft)
    {
        switch (pLeft->GetToken().eType)
        {
            case TLANGLE:
                *pS << sal_uInt8(tmANGLE); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                break;
            case TLBRACE:
                *pS << sal_uInt8(tmBRACE); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                nBSpec+=3;
                break;
            case TLBRACKET:
                *pS << sal_uInt8(tmBRACK); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                nBSpec+=3;
                break;
            case TLFLOOR:
                *pS << sal_uInt8(tmFLOOR); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                break;
            case TLLINE:
                *pS << sal_uInt8(tmBAR); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                nBSpec+=3;
                break;
            case TLDLINE:
                *pS << sal_uInt8(tmDBAR); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                break;
            default:
                *pS << sal_uInt8(tmPAREN); //selector
                *pS << sal_uInt8(0x00); //variation
                *pS << sal_uInt8(0x00); //options
                nBSpec+=3;
                break;
        }
    }

    if (NULL != (pTemp = pNode->GetSubNode(1)))
    {
        *pS << sal_uInt8(LINE); //line
        HandleNodes(pTemp,nLevel+1);
        *pS << sal_uInt8(END); //options
    }
    nSpec=nBSpec;
    if (pLeft)
        HandleNodes(pLeft,nLevel+1);
    if (bIsReInterpBrace)
    {
        sal_uLong nLoc2 = pS->Tell();
        pS->Seek(nLoc);
        *pS << sal_uInt8(0x2D);
        pS->Seek(nLoc2);
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x96);
        *pS << sal_uInt16(0xEC07);
        bIsReInterpBrace=0;
    }
    if (pRight)
        HandleNodes(pRight,nLevel+1);
    nSpec=0x0;
    *pS << sal_uInt8(END);
}


void MathType::HandleVerticalBrace(SmNode *pNode,int nLevel)
{
    SmNode *pTemp;
    *pS << sal_uInt8(TMPL); //Template
    if (pNode->GetToken().eType == TUNDERBRACE)
        *pS << sal_uInt8(tmLHBRACE); //selector
    else
        *pS << sal_uInt8(tmUHBRACE); //selector
    *pS << sal_uInt8(0x01); //variation
    *pS << sal_uInt8(0x00); //options

    if (NULL != (pTemp = pNode->GetSubNode(0)))
    {
        *pS << sal_uInt8(LINE); //line
        HandleNodes(pTemp,nLevel+1);
        *pS << sal_uInt8(END); //options
    }

    if (NULL != (pTemp = pNode->GetSubNode(2)))
    {
        *pS << sal_uInt8(LINE); //line
        HandleNodes(pTemp,nLevel+1);
        *pS << sal_uInt8(END); //options
    }
    *pS << sal_uInt8(END);
}

void MathType::HandleOperator(SmNode *pNode,int nLevel)
{
    if (HandleLim(pNode,nLevel))
        return;

    sal_uLong nPos;
    sal_uInt8 nVariation;

    switch (pNode->GetToken().eType)
    {
        case TIINT:
        case TIIINT:
        case TLINT:
        case TLLINT:
        case TLLLINT:
            nVariation=HandleCScript(pNode->GetSubNode(0),
                pNode->GetSubNode(1),nLevel,&nPos,0);
            break;
        default:
            nVariation=HandleCScript(pNode->GetSubNode(0),
                pNode->GetSubNode(1),nLevel,&nPos);
            break;
    }

    sal_uInt8 nOldVariation=nVariation;
    sal_uInt8 nIntVariation=nVariation;

    sal_uLong nPos2=0;
    if (nVariation != 0xff)
    {
        nPos2 = pS->Tell();
        pS->Seek(nPos);
        if (nVariation == 2)
        {
            nIntVariation=0;
            nVariation = 1;
        }
        else if (nVariation == 0)
            nVariation = 1;
        else if (nVariation == 1)
            nVariation = 0;
    }
    else
    {
        nVariation = 2;
        nIntVariation=0;
    }
    *pS << sal_uInt8(TMPL);
    switch(pNode->GetToken().eType)
    {
    case TINT:
        if (nOldVariation != 0xff)
            *pS << sal_uInt8(0x18); //selector
        else
            *pS << sal_uInt8(0x15); //selector
        *pS << nIntVariation; //variation
        break;
    case TIINT:
        if (nOldVariation != 0xff)
        {
            *pS << sal_uInt8(0x19);
            *pS << sal_uInt8(0x01);
        }
        else
        {
            *pS << sal_uInt8(0x16);
            *pS << sal_uInt8(0x00);
        }
        break;
    case TIIINT:
        if (nOldVariation != 0xff)
        {
            *pS << sal_uInt8(0x1a);
            *pS << sal_uInt8(0x01);
        }
        else
        {
            *pS << sal_uInt8(0x17);
            *pS << sal_uInt8(0x00);
        }
        break;
    case TLINT:
        if (nOldVariation != 0xff)
        {
            *pS << sal_uInt8(0x18);
            *pS << sal_uInt8(0x02);
        }
        else
        {
            *pS << sal_uInt8(0x15);
            *pS << sal_uInt8(0x03);
        }
        break;
    case TLLINT:
        if (nOldVariation != 0xff)
        {
            *pS << sal_uInt8(0x19);
            *pS << sal_uInt8(0x00);
        }
        else
        {
            *pS << sal_uInt8(0x16);
            *pS << sal_uInt8(0x02);
        }
        break;
    case TLLLINT:
        if (nOldVariation != 0xff)
        {
            *pS << sal_uInt8(0x1a);
            *pS << sal_uInt8(0x00);
        }
        else
        {
            *pS << sal_uInt8(0x17);
            *pS << sal_uInt8(0x02);
        }
        break;
    case TSUM:
    default:
        *pS << sal_uInt8(0x1d);
        *pS << nVariation;
        break;
    case TPROD:
        *pS << sal_uInt8(0x1f);
        *pS << nVariation;
        break;
    case TCOPROD:
        *pS << sal_uInt8(0x21);
        *pS << nVariation;
        break;
    }
    *pS << sal_uInt8(0x00); //options

    if (nPos2)
        pS->Seek(nPos2);
    else
    {
        *pS << sal_uInt8(LINE); //line
        HandleNodes(pNode->GetSubNode(1),nLevel+1);
        *pS << sal_uInt8(END); //line
        *pS << sal_uInt8(LINE|0x10);
        *pS << sal_uInt8(LINE|0x10);
    }


    *pS << sal_uInt8(0x0D);
    switch(pNode->GetToken().eType)
    {
    case TSUM:
    default:
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x86);
        *pS << sal_uInt16(0x2211);
        break;
    case TPROD:
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x86);
        *pS << sal_uInt16(0x220F);
        break;
    case TCOPROD:
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x8B);
        *pS << sal_uInt16(0x2210);
        break;
    case TIIINT:
    case TLLLINT:
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x86);
        *pS << sal_uInt16(0x222B);
    case TIINT:
    case TLLINT:
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x86);
        *pS << sal_uInt16(0x222B);
    case TINT:
    case TLINT:
        *pS << sal_uInt8(CHAR);
        *pS << sal_uInt8(0x86);
        *pS << sal_uInt16(0x222B);
        break;
    }
    *pS << sal_uInt8(END);
    *pS << sal_uInt8(0x0A);
}


int MathType::HandlePile(int &rSetAlign,int nLevel,sal_uInt8 nSelector,
    sal_uInt8 nVariation)
{
    *pS >> nHAlign;
    *pS >> nVAlign;

    HandleAlign(nHAlign,nVAlign,rSetAlign);

    APPEND(rRet," stack {\n");
    int nRet = HandleRecords(nLevel+1,nSelector,nVariation,-1,-1);
    rRet.Erase(rRet.Len()-3,2);
    APPEND(rRet,"} ");

    while (rSetAlign)
    {
        APPEND(rRet,"} ");
        rSetAlign--;
    }
    return nRet;
}

int MathType::HandleMatrix(int nLevel,sal_uInt8 nSelector,
    sal_uInt8 nVariation)
{
    sal_uInt8 nH_just,nV_just,nRows,nCols;
    *pS >> nVAlign;
    *pS >> nH_just;
    *pS >> nV_just;
    *pS >> nRows;
    *pS >> nCols;
    int nBytes = ((nRows+1)*2)/8;
    if (((nRows+1)*2)%8)
        nBytes++;
    pS->SeekRel(nBytes);
    nBytes = ((nCols+1)*2)/8;
    if (((nCols+1)*2)%8)
        nBytes++;
    pS->SeekRel(nBytes);
    APPEND(rRet," matrix {\n");
    int nRet = HandleRecords(nLevel+1,nSelector,nVariation,nRows,nCols);

    xub_StrLen nI = rRet.SearchBackward('#');
    if ((nI != STRING_NOTFOUND) && (nI > 0))
        if (rRet.GetChar(nI-1) != '#')  //missing column
            APPEND(rRet,"{}");

    APPEND(rRet,"\n} ");
    return nRet;
}

int MathType::HandleTemplate(int nLevel,sal_uInt8 &rSelector,
    sal_uInt8 &rVariation, xub_StrLen &rLastTemplateBracket)
{
    sal_uInt8 nOption; //This appears utterly unused
    *pS >> rSelector;
    *pS >> rVariation;
    *pS >> nOption;
    OSL_ENSURE(rSelector < 48,"Selector out of range");
    if ((rSelector >= 21) && (rSelector <=26))
    {
        OSL_ENSURE(nOption < 2,"Option out of range");
    }
    else if (/*(rSelector >= 0) &&*/ (rSelector <=12))
    {
        OSL_ENSURE(nOption < 3,"Option out of range");
    }

    //For the (broken) case where one subscript template ends, and there is
    //another one after it, mathtype handles it as if the second one was
    //inside the first one and renders it as sub of sub
    bool bRemove=false;
    if ( (rSelector == 0xf) && (rLastTemplateBracket != STRING_NOTFOUND) )
    {
        bRemove=true;
        for (xub_StrLen nI = rLastTemplateBracket+1; nI < rRet.Len(); nI++ )
            if (rRet.GetChar(nI) != ' ')
            {
                bRemove=false;
                break;
            }
    }

    //suborderlist
    int nRet = HandleRecords(nLevel+1,rSelector,rVariation);

    if (bRemove)
    {
        rRet.Erase(rLastTemplateBracket,1);
        APPEND(rRet,"} ");
        rLastTemplateBracket = STRING_NOTFOUND;
    }
    if (rSelector == 0xf)
        rLastTemplateBracket = rRet.SearchBackward('}');
    else
        rLastTemplateBracket = STRING_NOTFOUND;

    rSelector = sal::static_int_cast< sal_uInt8 >(-1);
    return nRet;
}

void MathType::HandleEmblishments()
{
    sal_uInt8 nEmbel;
    do
    {
        *pS >> nEmbel;
        switch (nEmbel)
        {
        case 0x02:
            APPEND(rRet," dot ");
            break;
        case 0x03:
            APPEND(rRet," ddot ");
            break;
        case 0x04:
            APPEND(rRet," dddot ");
            break;
        case 0x05:
            if (nPostSup == 0)
            {
                APPEND(sPost," sup {}");
                nPostSup = sPost.Len();
            }
            sPost.InsertAscii(" ' ",nPostSup-1);
            nPostSup += 3;
            break;
        case 0x06:
            if (nPostSup == 0)
            {
                APPEND(sPost," sup {}");
                nPostSup = sPost.Len();
            }
            sPost.InsertAscii(" '' ",nPostSup-1);
            nPostSup += 4;
            break;
        case 0x07:
            if (nPostlSup == 0)
            {
                APPEND(sPost," lsup {}");
                nPostlSup = sPost.Len();
            }
            sPost.InsertAscii(" ' ",nPostlSup-1);
            nPostlSup += 3;
            break;
        case 0x08:
            APPEND(rRet," tilde ");
            break;
        case 0x09:
            APPEND(rRet," hat ");
            break;
        case 0x0b:
            APPEND(rRet," vec ");
            break;
        case 0x10:
            APPEND(rRet," overstrike ");
            break;
        case 0x11:
            APPEND(rRet," bar ");
            break;
        case 0x12:
            if (nPostSup == 0)
            {
                APPEND(sPost," sup {}");
                nPostSup = sPost.Len();
            }
            sPost.InsertAscii(" ''' ",nPostSup-1);
            nPostSup += 5;
            break;
        case 0x14:
            APPEND(rRet," breve ");
            break;
        default:
            OSL_ENSURE(nEmbel < 21,"Embel out of range");
            break;
        }
        if (nVersion < 3)
            break;
    }while (nEmbel);
}

void MathType::HandleSetSize()
{
    sal_uInt8 nTemp;
    *pS >> nTemp;
    switch (nTemp)
    {
        case 101:
            *pS >> nLSize;
            nLSize = -nLSize;
            break;
        case 100:
            *pS >> nTemp;
            nLSize = nTemp;
            *pS >> nDSize;
            break;
        default:
            nLSize = nTemp;
            *pS >> nTemp;
            nDSize = nTemp-128;
            break;
    }
}

int MathType::HandleChar(xub_StrLen &rTextStart,int &rSetSize,int nLevel,
    sal_uInt8 nTag,sal_uInt8 nSelector,sal_uInt8 nVariation, sal_Bool bSilent)
{
    sal_Unicode nChar;
    int nRet=1;

    if (xfAUTO(nTag))
    {
    //This is a candidate for function recognition, whatever
    //that is!
    }

    sal_uInt8 nOldTypeFace = nTypeFace;
    *pS >> nTypeFace;
    if (nVersion < 3)
    {
        sal_uInt8 nChar8;
        *pS >> nChar8;
        nChar = nChar8;
    }
    else
        *pS >> nChar;

    /*
    bad character, old mathtype < 3 has these
    */
    if (nChar < 0x20)
        return nRet;

    if (xfEMBELL(nTag))
    {
        //A bit tricky, the character emblishments for
        //mathtype can all be listed after eachother, in
        //starmath some must go before the character and some
        //must go after. In addition some of the emblishments
        //may repeated and in starmath some of these groups
        //must be gathered together. sPost is the portion that
        //follows the char and nPostSup and nPostlSup are the
        //indexes at which this class of emblishment is
        //collated together
        sPost.Erase();
        nPostSup = nPostlSup = 0;
        int nOriglen=rRet.Len()-rTextStart;
        APPEND(rRet," {");  // #i24340# make what would be "vec {A}_n" become "{vec {A}}_n"
        if ((!bSilent) && ((nOriglen) > 1))
            rRet += '\"';
        nRet = HandleRecords(nLevel+1,nSelector,nVariation);
        if (!bSilent)
        {
            if (nOriglen > 1)
            {
                String aStr;
                TypeFaceToString(aStr,nOldTypeFace);
                aStr += '\"';
                rRet.Insert(aStr,rTextStart);

                aStr.Erase();
                TypeFaceToString(aStr,nTypeFace);
                rRet.Append(aStr);
                rRet += '{';
            }
            else
                APPEND(rRet," {");
            rTextStart = rRet.Len();
        }
    }

    if (!bSilent)
    {
        xub_StrLen nOldLen = rRet.Len();
        if (
            HandleSize(nLSize,nDSize,rSetSize) ||
            (nOldTypeFace != nTypeFace)
           )
        {
            if ((nOldLen - rTextStart) > 1)
            {
                rRet.InsertAscii("\"",nOldLen);
                String aStr;
                TypeFaceToString(aStr,nOldTypeFace);
                aStr += '\"';
                rRet.Insert(aStr,rTextStart);
            }
            rTextStart = rRet.Len();
        }
        nOldLen = rRet.Len();
        if (!LookupChar(nChar,rRet,nVersion,nTypeFace))
        {
            if (nOldLen - rTextStart > 1)
            {
                rRet.InsertAscii("\"",nOldLen);
                String aStr;
                TypeFaceToString(aStr,nOldTypeFace);
                aStr += '\"';
                rRet.Insert(aStr,rTextStart);
            }
            rTextStart = rRet.Len();
        }
        lcl_PrependDummyTerm(rRet, rTextStart);
    }

    if ((xfEMBELL(nTag)) && (!bSilent))
    {
        rRet += '}';    // #i24340# make what would be "vec {A}_n" become "{vec {A}}_n"
        rRet += '}';
        rRet += sPost;
        rTextStart = rRet.Len();
    }
    return nRet;
}

sal_Bool MathType::HandleLim(SmNode *pNode,int nLevel)
{
    bool bRet=false;
    //Special case for the "lim" option in StarMath
    if ((pNode->GetToken().eType == TLIM)
        || (pNode->GetToken().eType == TLIMSUP)
        || (pNode->GetToken().eType == TLIMINF)
        )
    {
        if (pNode->GetSubNode(1))
        {
            sal_uInt8 nVariation2=HandleCScript(pNode->GetSubNode(0),NULL,
                nLevel);

            *pS << sal_uInt8(0x0A);
            *pS << sal_uInt8(LINE); //line
            *pS << sal_uInt8(CHAR|0x10);
            *pS << sal_uInt8(0x82);
            *pS << sal_uInt16('l');
            *pS << sal_uInt8(CHAR|0x10);
            *pS << sal_uInt8(0x82);
            *pS << sal_uInt16('i');
            *pS << sal_uInt8(CHAR|0x10);
            *pS << sal_uInt8(0x82);
            *pS << sal_uInt16('m');

            if (pNode->GetToken().eType == TLIMSUP)
            {
                *pS << sal_uInt8(CHAR); //some space
                *pS << sal_uInt8(0x98);
                *pS << sal_uInt16(0xEB04);

                *pS << sal_uInt8(CHAR|0x10);
                *pS << sal_uInt8(0x82);
                *pS << sal_uInt16('s');
                *pS << sal_uInt8(CHAR|0x10);
                *pS << sal_uInt8(0x82);
                *pS << sal_uInt16('u');
                *pS << sal_uInt8(CHAR|0x10);
                *pS << sal_uInt8(0x82);
                *pS << sal_uInt16('p');
            }
            else if (pNode->GetToken().eType == TLIMINF)
            {
                *pS << sal_uInt8(CHAR); //some space
                *pS << sal_uInt8(0x98);
                *pS << sal_uInt16(0xEB04);

                *pS << sal_uInt8(CHAR|0x10);
                *pS << sal_uInt8(0x82);
                *pS << sal_uInt16('i');
                *pS << sal_uInt8(CHAR|0x10);
                *pS << sal_uInt8(0x82);
                *pS << sal_uInt16('n');
                *pS << sal_uInt8(CHAR|0x10);
                *pS << sal_uInt8(0x82);
                *pS << sal_uInt16('f');
            }


            *pS << sal_uInt8(CHAR); //some space
            *pS << sal_uInt8(0x98);
            *pS << sal_uInt16(0xEB04);

            if (nVariation2 != 0xff)
            {
                *pS << sal_uInt8(END);
                *pS << sal_uInt8(END);
            }
            HandleNodes(pNode->GetSubNode(1),nLevel+1);
            //*pS << sal_uInt8(END); //options
            bRet = true;
        }
    }
    return bRet;
}

void MathType::HandleMAlign(SmNode *pNode,int nLevel)
{
    sal_uInt8 nPushedHAlign=nHAlign;
    switch(pNode->GetToken().eType)
    {
        case TALIGNC:
            nHAlign=2;
            break;
        case TALIGNR:
            nHAlign=3;
            break;
        default:
            nHAlign=1;
            break;
    }
    sal_uInt16  nSize = pNode->GetNumSubNodes();
    for (sal_uInt16 i = 0; i < nSize; i++)
        if (SmNode *pTemp = pNode->GetSubNode(i))
            HandleNodes(pTemp,nLevel+1);
    nHAlign=nPushedHAlign;
}

void MathType::HandleMath(SmNode *pNode, int /*nLevel*/)
{
    if (pNode->GetToken().eType == TMLINE)
    {
        *pS << sal_uInt8(END);
        *pS << sal_uInt8(LINE);
        bIsReInterpBrace=1;
        return;
    }
    SmMathSymbolNode *pTemp=(SmMathSymbolNode *)pNode;
    for(sal_Int32 i=0;i<pTemp->GetText().getLength();i++)
    {
        sal_Unicode nArse = SmTextNode::ConvertSymbolToUnicode(pTemp->GetText()[i]);
        if ((nArse == 0x2224) || (nArse == 0x2288) || (nArse == 0x2285) ||
            (nArse == 0x2289))
        {
            *pS << sal_uInt8(CHAR|0x20);
        }
        else if ((nPendingAttributes) &&
                (i == ((pTemp->GetText().getLength()+1)/2)-1))
            {
                *pS << sal_uInt8(0x22);
            }
        else
            *pS << sal_uInt8(CHAR); //char without formula recognition
        //The typeface seems to be MTEXTRA for unicode characters,
        //though how to determine when mathtype chooses one over
        //the other is unknown. This should do the trick
        //nevertheless.
        sal_uInt8 nBias;
        if ( (nArse == 0x2213) || (nArse == 0x2218) ||
            (nArse == 0x210F) || (
                (nArse >= 0x22EE) && (nArse <= 0x22FF)
            ))
        {
            nBias = 0xB; //typeface
        }
        else if ((nArse > 0x2000) || (nArse == 0x00D7))
            nBias = 0x6; //typeface
        else if (nArse == 0x3d1)
            nBias = 0x4;
        else if ((nArse > 0xFF) && ((nArse < 0x393) || (nArse > 0x3c9)))
            nBias = 0xB; //typeface
        else if ((nArse == 0x2F) || (nArse == 0x2225))
            nBias = 0x2; //typeface
        else
            nBias = 0x3; //typeface

        *pS << sal_uInt8(nSpec+nBias+128); //typeface

        if (nArse == 0x2224)
        {
            *pS << sal_uInt16(0x7C);
            *pS << sal_uInt8(EMBEL);
            *pS << sal_uInt8(0x0A);
            *pS << sal_uInt8(END); //end embel
            *pS << sal_uInt8(END); //end embel
        }
        else if (nArse == 0x2225)
            *pS << sal_uInt16(0xEC09);
        else if (nArse == 0xE421)
            *pS << sal_uInt16(0x2265);
        else if (nArse == 0x230A)
            *pS << sal_uInt16(0xF8F0);
        else if (nArse == 0x230B)
            *pS << sal_uInt16(0xF8FB);
        else if (nArse == 0xE425)
            *pS << sal_uInt16(0x2264);
        else if (nArse == 0x226A)
        {
            *pS << sal_uInt16(0x3C);
            *pS << sal_uInt8(CHAR);
            *pS << sal_uInt8(0x98);
            *pS << sal_uInt16(0xEB01);
            *pS << sal_uInt8(CHAR);
            *pS << sal_uInt8(0x86);
            *pS << sal_uInt16(0x3c);
        }
        else if (nArse == 0x2288)
        {
            *pS << sal_uInt16(0x2286);
            *pS << sal_uInt8(EMBEL);
            *pS << sal_uInt8(0x0A);
            *pS << sal_uInt8(END); //end embel
            *pS << sal_uInt8(END); //end embel
        }
        else if (nArse == 0x2289)
        {
            *pS << sal_uInt16(0x2287);
            *pS << sal_uInt8(EMBEL);
            *pS << sal_uInt8(0x0A);
            *pS << sal_uInt8(END); //end embel
            *pS << sal_uInt8(END); //end embel
        }
        else if (nArse == 0x2285)
        {
            *pS << sal_uInt16(0x2283);
            *pS << sal_uInt8(EMBEL);
            *pS << sal_uInt8(0x0A);
            *pS << sal_uInt8(END); //end embel
            *pS << sal_uInt8(END); //end embel
        }
        else
            *pS << nArse;
    }
    nPendingAttributes = 0;
}

void MathType::HandleAttributes(SmNode *pNode,int nLevel)
{
    int nOldPending = 0;
    SmNode *pTemp       = 0;
    SmTextNode *pIsText = 0;

    if (NULL != (pTemp = pNode->GetSubNode(0)))
    {
        pIsText = (SmTextNode *)pNode->GetSubNode(1);

        switch (pTemp->GetToken().eType)
        {
        case TWIDEVEC:
            //theres just no way we can now handle any character
            //attributes (from mathtypes perspective) centered
            //over an expression but above template attributes
            //such as widevec and similiar constructs
            //we have to drop them
            nOldPending = StartTemplate(0x2f,0x01);
            break;
        case TCHECK: //Not Exportable
        case TACUTE: //Not Exportable
        case TGRAVE: //Not Exportable
        case TCIRCLE: //Not Exportable
        case TWIDETILDE: //Not Exportable
        case TWIDEHAT: //Not Exportable
            break;
        case TUNDERLINE:
            nOldPending = StartTemplate(0x10);
            break;
        case TOVERLINE: //If the next node is not text
                        //or text with more than one char
            if ((pIsText->GetToken().eType != TTEXT) ||
                (pIsText->GetText().getLength() > 1))
                nOldPending = StartTemplate(0x11);
            break;
        default:
            nPendingAttributes++;
            break;
        }
    }

    if (pIsText)
        HandleNodes(pIsText,nLevel+1);

    switch (pTemp->GetToken().eType)
    {
        case TWIDEVEC:
        case TUNDERLINE:
            EndTemplate(nOldPending);
            break;
        case TOVERLINE:
            if ((pIsText->GetToken().eType != TTEXT) ||
                (pIsText->GetText().getLength() > 1))
                EndTemplate(nOldPending);
            break;
        default:
            break;
    }

    //if there was no suitable place to put the attribute,
    //then we have to just give up on it
    if (nPendingAttributes)
        nPendingAttributes--;
    else
    {
        if ((nInsertion != 0) && NULL != (pTemp = pNode->GetSubNode(0)))
        {
            sal_uLong nPos = pS->Tell();
            nInsertion--;
            pS->Seek(nInsertion);
            switch(pTemp->GetToken().eType)
            {
            case TACUTE: //Not Exportable
            case TGRAVE: //Not Exportable
            case TCIRCLE: //Not Exportable
                break;
            case TCDOT:
                *pS << sal_uInt8(2);
                break;
            case TDDOT:
                *pS << sal_uInt8(3);
                break;
            case TDDDOT:
                *pS << sal_uInt8(4);
                break;
            case TTILDE:
                *pS << sal_uInt8(8);
                break;
            case THAT:
                *pS << sal_uInt8(9);
                break;
            case TVEC:
                *pS << sal_uInt8(11);
                break;
            case TOVERSTRIKE:
                *pS << sal_uInt8(16);
                break;
            case TOVERLINE:
                if ((pIsText->GetToken().eType == TTEXT) &&
                    (pIsText->GetText().getLength() == 1))
                    *pS << sal_uInt8(17);
                break;
            case TBREVE:
                *pS << sal_uInt8(20);
                break;
            case TWIDEVEC:
            case TUNDERLINE:
            case TWIDETILDE:
            case TWIDEHAT:
                break;
            case TBAR:
                *pS << sal_uInt8(17);
                break;
            default:
                *pS << sal_uInt8(0x2);
                break;
            }
        pS->Seek(nPos);
        }
    }
}

void MathType::HandleText(SmNode *pNode, int /*nLevel*/)
{
    SmTextNode *pTemp=(SmTextNode *)pNode;
    for(sal_Int32 i=0;i<pTemp->GetText().getLength();i++)
    {
        if ((nPendingAttributes) &&
            (i == ((pTemp->GetText().getLength()+1)/2)-1))
        {
            *pS << sal_uInt8(0x22);     //char, with attributes right
                                //after the character
        }
        else
            *pS << sal_uInt8(CHAR);

        sal_uInt8 nFace = 0x1;
        if (pNode->GetFont().GetItalic() == ITALIC_NORMAL)
            nFace = 0x3;
        else if (pNode->GetFont().GetWeight() == WEIGHT_BOLD)
            nFace = 0x7;
        *pS << sal_uInt8(nFace+128); //typeface
        sal_uInt16 nChar = pTemp->GetText()[i];
        *pS << SmTextNode::ConvertSymbolToUnicode(nChar);

        //Mathtype can only have these sort of character
        //attributes on a single character, starmath can put them
        //anywhere, when the entity involved is a text run this is
        //a large effort to place the character attribute on the
        //central mathtype character so that it does pretty much
        //what the user probably has in mind. The attributes
        //filled in here are dummy ones which are replaced in the
        //ATTRIBUT handler if a suitable location for the
        //attributes was found here. Unfortunately it is
        //possible for starmath to place character attributes on
        //entities which cannot occur in mathtype e.g. a Summation
        //symbol so these attributes may be lost
        if ((nPendingAttributes) &&
            (i == ((pTemp->GetText().getLength()+1)/2)-1))
        {
            *pS << sal_uInt8(EMBEL);
            while (nPendingAttributes)
            {
                *pS << sal_uInt8(2);
                //wedge the attributes in here and clear
                //the pending stack
                nPendingAttributes--;
            }
            nInsertion=pS->Tell();
            *pS << sal_uInt8(END); //end embel
            *pS << sal_uInt8(END); //end embel
        }
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */