summaryrefslogtreecommitdiffstats
path: root/filters/kword/mswrite/structures_private.cpp
blob: 6779e1d737d4877574fc1ec980a15cdcc233baf2 (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
/* This file is part of the LibMSWrite Library
   Copyright (C) 2001-2003 Clarence Dang <clarencedang@users.sourceforge.net>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License Version 2 as published by the Free Software Foundation.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License Version 2 for more details.

   You should have received a copy of the GNU Library General Public License
   Version 2 along with this library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.

   LibMSWrite Project Website:
   http://sourceforge.net/projects/libmswrite/
*/

/*
 * structures_private.cpp - Process Internal Microsoft(r) Write file structures
 *                        - that are hidden/abstracted away from the user
 * This file has ugly reading/writing code that couldn't be generated.
 * It performs some higher-level sanity checks.
 *
 * Don't use any of these classes as it would defeat the purpose of LibMSWrite.
 */

#include "structures_private.h"
#include "structures.h"

namespace MSWrite
{
	Header::Header ()
	{
	}

	Header::~Header ()
	{
	}

	Header &Header::operator= (const Header &rhs)
	{
		if (this == &rhs)
			return *this;

		HeaderGenerated::operator= (rhs);

		m_numCharBytes = rhs.m_numCharBytes;
		m_pageCharInfo = rhs.m_pageCharInfo;

		return *this;
	}

	bool Header::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_HEADER
		m_device->debug ("\n<<<< Header::readFromDevice >>>>\n");
	#endif

		if (!m_device->seekInternal (0, SEEK_SET)) return false;
		if (!HeaderGenerated::readFromDevice ()) return false;

	#ifdef DEBUG_HEADER
		switch (m_magic)
		{
		case 0xBE31:	m_device->debug ("normal write file\n");	break;
		case 0xBE32:	m_device->debug ("write file with OLE\n");	break;
		default:	ErrorAndQuit (Error::InternalError, "magic test passed but failed later?");
		}
	#endif

		m_numCharBytes = m_numCharBytesPlus128 - 128;

	#ifdef DEBUG_HEADER
		m_device->debug ("num bytes of data (text+images+OLE): ", m_numCharBytes);
		m_device->debug ("page # start of parainfo: ", m_pageParaInfo);
		m_device->debug ("page # footnote table: ", m_pageFootnoteTable);
		m_device->debug ("page # pageLayout: ", m_pageSectionProperty);
		m_device->debug ("page # sectionTable: ", m_pageSectionTable);
		m_device->debug ("page # pageTable: ", m_pagePageTable);
		m_device->debug ("page # fontTable: ", m_pageFontTable);
		m_device->debug ("num pages in file: ", m_numPages);
	#endif

		/*
		 * more checks
		 */

		// footnoteTables simply do not exist...
		if (m_pageFootnoteTable != m_pageSectionProperty)
			ErrorAndQuit (Error::InvalidFormat, "document should not have a footnoteTable\n");


		// cannot have a sectionProperty without a sectionTable or vice-versa

		// no sectionProperty?
		if (m_pageSectionProperty == m_pagePageTable)
		{
			// must not have a sectionTable then
			if (m_pageSectionTable != m_pagePageTable)
				ErrorAndQuit (Error::InvalidFormat, "sectionTable without sectionProperty\n");
		}
		// have sectionProperty...
		else
		{
			if (m_pageSectionTable != m_pageSectionProperty + 1)
				ErrorAndQuit (Error::InvalidFormat, "sectionTable not immediately after sectionProperty\n");

			if (m_pageSectionTable == m_pagePageTable)
				ErrorAndQuit (Error::InvalidFormat, "sectionProperty without sectionTable\n");
		}

		// charInfo page comes immediately after the header and text
		m_pageCharInfo = (m_numCharBytesPlus128 + 127) / 128;

	#ifdef DEBUG_HEADER
		m_device->debug ("page # start of charinfo: ", m_pageCharInfo);
	#endif

		// catches a lot of corrupted files
		if (m_pageCharInfo > m_pageParaInfo)
			ErrorAndQuit (Error::InvalidFormat, "charInfo page after paraInfo page\n");

		return true;
	}

	bool Header::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_HEADER
		m_device->debug ("\n<<<< Header::writeToDevice >>>>\n");
	#endif

		m_numCharBytesPlus128 = m_numCharBytes + 128;

		if (!m_device->seekInternal (0, SEEK_SET)) return false;
		if (!HeaderGenerated::writeToDevice ()) return false;

		return true;
	}


	SectionDescriptor::SectionDescriptor ()
	{
	}

	SectionDescriptor::~SectionDescriptor ()
	{
	}

	SectionDescriptor &SectionDescriptor::operator= (const SectionDescriptor &rhs)
	{
		if (this == &rhs)
			return *this;

		SectionDescriptorGenerated::operator= (rhs);

		return *this;
	}


	SectionTable::SectionTable ()
	{
	}

	SectionTable::~SectionTable ()
	{
	}

	SectionTable &SectionTable::operator= (const SectionTable &rhs)
	{
		if (this == &rhs)
			return *this;

		SectionTableGenerated::operator= (rhs);
		NeedsHeader::operator= (rhs);

		return *this;
	}

	// this function really only does some sanity checking
	// in fact, a SectionTable is quite useless in Write...
	// ...so you actually don't have to call it :)
	bool SectionTable::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_PAGELAYOUT
		m_device->debug ("\n<<<< SectionTable::readFromDevice >>>>\n");
	#endif

		int numSectionTablePages = m_header->getNumPageSectionTable ();

	#ifdef DEBUG_PAGELAYOUT
		m_device->debug ("num sectionTablePages=", numSectionTablePages);
	#endif

		// no SectionTable
		if (numSectionTablePages == 0)
			return true;
		else if (numSectionTablePages > 1)
			ErrorAndQuit (Error::InvalidFormat, "invalid #sectionTablePages\n");

		// seek to the SectionTable in the file
		if (!m_device->seekInternal (m_header->getPageSectionTable () * 128, SEEK_SET))
			return false;

		if (!SectionTableGenerated::readFromDevice ()) return false;

	#ifdef DEBUG_PAGELAYOUT
		m_device->debug ("num sectionDescriptors=", m_numSectionDescriptors);
		for (int i = 0; i < 2; i++)
		{
			m_device->debug ("Dumping SED #", i);
				m_device->debug ("\tbyte after section=", m_sed [i]->getAfterEndCharByte ());
				m_device->debug ("\tsectionProperty location=", m_sed [i]->getSectionPropertyLocation ());
		}
	#endif

		if (m_numSectionDescriptors != 2)
			m_device->error (Error::Warn, "#sectionDescriptors != 2, ignoring");

		// check that 1st SectionDescriptor covers all characters
		if (m_sed [0]->getAfterEndCharByte () != m_header->getNumCharBytes ())
			m_device->error (Error::Warn, "sectionDescriptor #1 does not cover entire document\n");

		// check that 1st SectionDescriptor points to the SectionProperty
		if (m_sed [0]->getSectionPropertyLocation () != m_header->getPageSectionProperty () * DWord (128))
			m_device->error (Error::Warn, "sectionDescriptor #1 does not refer to correct sectionProperty, ignoring\n");

		// check that 2nd SectionDescriptor covers after the end of the document
		if (m_sed [1]->getAfterEndCharByte () != m_header->getNumCharBytes () + 1)
			m_device->error (Error::Warn, "sectionDescriptor #2 does not cover post-document\n");

		// check that 2nd SectionDescriptor is indeed a dummy
		if (m_sed [1]->getSectionPropertyLocation () != (DWord) 0xFFFFFFFF)
			m_device->error (Error::Warn, "sectionDescriptor #2 is not a dummy\n");

		return true;
	}

	bool SectionTable::writeToDevice (const bool needed)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_PAGELAYOUT
		m_device->debug ("\n>>>> SectionTable::writeToDevice <<<<\n");
	#endif

		m_header->setPageSectionTable (m_device->tellInternal () / 128);

		// if no sectionProperty, no sectionTable
		if (!needed)
			return true;


		// set that 1st SectionDescriptor covers all characters
		m_sed [0]->setAfterEndCharByte (m_header->getNumCharBytes ());

		// set that 1st SectionDescriptor points to the SectionProperty
		m_sed [0]->setSectionPropertyLocation (m_header->getPageSectionProperty () * 128);

		// set that 2nd SectionDescriptor covers after the end of the document
		m_sed [1]->setAfterEndCharByte (m_header->getNumCharBytes () + 1);

		// set that 2nd SectionDescriptor is indeed a dummy
		m_sed [1]->setSectionPropertyLocation ((DWord) 0xFFFFFFFF);

		if (!SectionTableGenerated::writeToDevice ())
			return false;

		return true;
	}


	FontTable::FontTable ()
	{
	}

	FontTable::~FontTable ()
	{
	}

	FontTable &FontTable::operator= (const FontTable &rhs)
	{
		if (this == &rhs)
			return *this;

		FontTableGenerated::operator= (rhs);
		NeedsHeader::operator= (rhs);

		m_fontList = rhs.m_fontList;

		return *this;
	}

	bool FontTable::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FONT
		m_device->debug ("\n<<<< FontTable::readFromDevice >>>>\n");
	#endif

		int numFontTablePages = m_header->getNumPageFontTable ();

		// no FontTable
		if (numFontTablePages == 0)
			return true;

		// seek to the fontTable in the file
		if (!m_device->seekInternal (m_header->getPageFontTable () * 128, SEEK_SET))
			return false;

		if (!FontTableGenerated::readFromDevice ()) return false;

	#ifdef DEBUG_FONT
		m_device->debug ("num Fonts: ", m_numFonts);
	#endif

		bool dontAddToBack = false;
		for (int i = 0; i < FontTableGenerated::m_numFonts; i++)
		{
		#ifdef DEBUG_FONT
			m_device->debug ("Font: ", i);
		#endif

			if (!dontAddToBack)
			{
				if (!m_fontList.addToBack ())
					ErrorAndQuit (Error::OutOfMemory, "could not add Font to fontList\n");
			}
			else
				dontAddToBack = false;

			List <Font>::Iterator it = m_fontList.begin (false);
			Font &font = *it;

			// read font
			font.setDevice (m_device);
			if (!font.readFromDevice ())
			{
				// a real error...
				if (m_device->bad ())
					return false;

				//
				// ... or Font::readFromDevice() signalled something
				//

				// font is on next page?
				if (font.getNumDataBytes () == 0xFFFF)
				{
				#ifdef DEBUG_FONT
					m_device->debug ("\tcurrent offset=", m_device->tellInternal ());
					m_device->debug ("\tnext page offset=", (m_device->tellInternal () + 127) / 128 * 128);
				#endif

					// seek to next page
					if (!m_device->seekInternal ((m_device->tellInternal () + 127) / 128 * 128, SEEK_SET))
						return false;
					--i;	// still reading the same font
					dontAddToBack = true;	// don't need to add another font, just re-use this sentinel
					continue;
				}

				// no more entries (should _not_ get in here)?
				if (font.getNumDataBytes () == 0)
				{
					if (i != m_numFonts - 1)	// actually, this check isn't required
						m_device->error (Error::Warn, "font marked as last but is not\n");

					// let's not cause problems later with uninitialised Font::m_name's
					m_fontList.erase (it);

					// better quit just in case (it is better to have fewer fonts than risk errors)
					break;
				}
			}
		}	// for (int i = 0; i < m_numFonts; i++) {

		return true;
	}

	bool FontTable::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FONT
		m_device->debug ("\n>>>> FontTable::writeToDevice <<<<\n");
	#endif

		// indicate fontTable page in header
		m_header->setPageFontTable (m_device->tellInternal () / 128);

		FontTableGenerated::m_numFonts = m_fontList.getNumElements ();

		// no fontTable
		if (FontTableGenerated::m_numFonts == 0)
		{
			m_device->error (Error::Warn, "not writing fontTable\n");
			return true;
		}

		// write numFonts
		if (!FontTableGenerated::writeToDevice ()) return false;

		int i = 0;
		for (List <Font>::Iterator it = m_fontList.begin ();
				it != m_fontList.end ();
				/* don't iterate here since we might "continue" with the same font */)
		{
		#ifdef DEBUG_FONT
			m_device->debug ("\twriting font #", i);
		#endif

			Font &font = *it;

			// write font
			font.setDevice (m_device);
			if (!font.writeToDevice ())
			{
				// a real error...
				if (m_device->bad ())
					return false;

				//
				// ... or Font::readFromDevice() signalled something
				//

				// font is on next page then
			#ifdef DEBUG_FONT
				m_device->debug ("\tcurrent offset=", m_device->tellInternal ());
				m_device->debug ("\tnext page offset=", (m_device->tellInternal () + 127) / 128 * 128);
			#endif

				// seek to next page
				if (!m_device->seekInternal ((m_device->tellInternal () + 127) / 128 * 128, SEEK_SET))
					return false;

				// still writing the same font
				continue;
			}

			// get next font to write
			it++;
			i++;
		}

		return true;
	}

	Font *FontTable::getFont (const DWord fontCode) const
	{
		// OPT: inefficient, maybe an array of pointers because we can't delete fonts anyway
		List <Font>::Iterator it = m_fontList.begin ();
		for (int i = 0; i < int (fontCode) && it != m_fontList.end (); i++, ++it)
			;
		if (it == m_fontList.end ()) return NULL;
		return &(*it);
	}

	DWord FontTable::findFont (const Font *want) const
	{
		DWord code = 0;

		List <Font>::Iterator it;
		for (it = m_fontList.begin (); it != m_fontList.end (); ++it)
		{
			if ((*it) == *want)
				return code;

			code++;
		}

		// couldn't find
		return 0xFFFFFFFF;
	}

	DWord FontTable::addFont (const Font *input)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FONT
		m_device->debug ("\t\t\tTrying to add Font ", input->getName ());
	#endif

		DWord e = findFont (input);

		// already in list
		if (e != 0xFFFFFFFF)
		{
		#ifdef DEBUG_FONT
			m_device->debug ("\t\t\t\tAlready in list, fontCode=", e);
		#endif

			// return fontCode
			return e;
		}
		// new font
		else
		{
		#ifdef DEBUG_FONT
			m_device->debug ("\t\t\t\tNew font, adding to list\n");
		#endif

			if (!m_fontList.addToBack (*input))
				ErrorAndQuit (Error::OutOfMemory, "could not allocate memory for next font element\n");
			return m_fontList.getNumElements () - 1;
		}
	}


	PagePointer::PagePointer ()
	{
	}

	PagePointer::~PagePointer ()
	{
	}

	PagePointer &PagePointer::operator= (const PagePointer &rhs)
	{
		if (this == &rhs)
			return *this;

		PagePointerGenerated::operator= (rhs);

		return *this;
	}

	bool PagePointer::readFromDevice (void)
	{
	CHECK_DEVICE;

		if (!PagePointerGenerated::readFromDevice ())
			return false;

	#ifdef DEBUG_PAGETABLE
		m_device->debug ("\t\tpage number: ", m_pageNumber);
		m_device->debug ("\t\tfirst char: ", m_firstCharByte);
	#endif

		return true;
	}

	bool PagePointer::writeToDevice (void)
	{
	CHECK_DEVICE;

		if (!PagePointerGenerated::writeToDevice ())
			return false;

		return true;
	}


	PageTable::PageTable () : m_pageNumberStart (0xFFFF)
	{
	}

	PageTable::~PageTable ()
	{
	}

	PageTable &PageTable::operator= (const PageTable &rhs)
	{
		if (this == &rhs)
			return *this;

		PageTableGenerated::operator= (rhs);
		NeedsHeader::operator= (rhs);

		m_pagePointerList = rhs.m_pagePointerList;
		m_pageNumberStart = rhs.m_pageNumberStart;

		m_pageTableIterator = rhs.m_pageTableIterator;

		return *this;
	}

	bool PageTable::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_PAGETABLE
		m_device->debug ("\n<<<< PageTable::readFromDevice >>>>\n");
	#endif

	#ifdef CHECK_INTERNAL
		if (m_pageNumberStart == (Word) 0xFFFF || NeedsHeader::m_header == NULL)
			ErrorAndQuit (Error::InternalError, "PageTable call not setup\n");
	#endif

		// no pageTable
		if (m_header->getNumPagePageTable () == 0)
			return true;

		// seek to the pageTable in the file
		if (!m_device->seekInternal (m_header->getPagePageTable () * 128, SEEK_SET))
			return false;

		if (!PageTableGenerated::readFromDevice ())
			return false;

	#ifdef DEBUG_PAGETABLE
		Dump (numPagePointers);
		Dump (zero);
	#endif

		DWord lastCharByte = (DWord) 0xFFFFFFFF;
		Word lastPage = (Word) 0xFFFF;	// do not have to init
		for (int i = 0; i < m_numPagePointers; i++)
		{
			if (!m_pagePointerList.addToBack ())
				ErrorAndQuit (Error::OutOfMemory, "could not add pagePointer to list\n");

			PagePointer &pp = *m_pagePointerList.begin (false);

		#ifdef DEBUG_PAGETABLE
			m_device->debug ("\tPagePointer: ", i);
		#endif

			// read pointer
			pp.setDevice (m_device);
			if (!pp.readFromDevice ()) return false;

			// first pointer?
			if (i == 0)
			{
				if (pp.getPageNumber () != m_pageNumberStart)
					ErrorAndQuit (Error::InvalidFormat, "pageTable & sectionProperty disagree on pageNumberStart\n");
			}
			else
			{
				// according to KOffice 1.2:
				//
				// "the pageTable can get really out of sync with reality
				//  if the user doesn't repaginate after deleting a few pages
				//  -- so this is just a warning, not an error"
				//
				if (pp.getPageNumber () != lastPage + 1)
					m_device->error (Error::Warn, "pages don't follow each other\n");

				if (pp.getFirstCharByte () <= lastCharByte)
					ErrorAndQuit (Error::InvalidFormat, "pageTable is not going forward?\n");
			}

			// for checking, on next iteration
			lastPage = pp.getPageNumber ();
			lastCharByte = pp.getFirstCharByte ();
		}

		return true;
	}

	bool PageTable::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_PAGETABLE
		m_device->debug ("\n>>>> PageTable::writeToDevice <<<<\n");
	#endif

		m_header->setPagePageTable (m_device->tellInternal () / 128);

		// LibMSWrite directly (!) adds to the list so m_numPagePointers may be out of date
		PageTableGenerated::m_numPagePointers = m_pagePointerList.getNumElements ();

		// no pageTable
		if (m_numPagePointers == 0)
			return true;

		// write numPagePointers, zero
		if (!PageTableGenerated::writeToDevice ())
			return false;

		int i = 0;
		List <PagePointer>::Iterator it;
		for (it = m_pagePointerList.begin (); it != m_pagePointerList.end (); ++it, i++)
		{
			PagePointer &pp = (*it);

		#ifdef DEBUG_PAGETABLE
			m_device->debug ("\tPagePointer: ", i);
		#endif

			// read page pointer
			pp.setDevice (m_device);
			if (!pp.writeToDevice ())
				return false;
		}

		return true;
	}


	FormatPointer::FormatPointer () : m_afterEndCharByte (0)
	{
	}

	FormatPointer::~FormatPointer ()
	{
	}

	FormatPointer &FormatPointer::operator= (const FormatPointer &rhs)
	{
		if (this == &rhs)
			return *this;

		FormatPointerGenerated::operator= (rhs);

		m_afterEndCharByte = rhs.m_afterEndCharByte;
		m_formatProperty = rhs.m_formatProperty;

		return *this;
	}

	bool FormatPointer::readFromDevice (void)
	{
	CHECK_DEVICE;

		if (!FormatPointerGenerated::readFromDevice ())
			return false;

		m_afterEndCharByte = m_afterEndCharBytePlus128 - 128;

	#ifdef DEBUG_FORMATINFO
		m_device->debug ("\t\tafterEndCharByte: ", m_afterEndCharByte);
		m_device->debug ("\t\tformatPropertyOffset: ", m_formatPropertyOffset);
	#endif

		return true;
	}

	bool FormatPointer::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FORMATINFO
		m_device->debug ("\t\t\t\tafterEndCharByte: ", m_afterEndCharByte);
		m_device->debug ("\t\t\t\tformatPropertyOffset: ", m_formatPropertyOffset);
	#endif

		m_afterEndCharBytePlus128 = m_afterEndCharByte + 128;

		if (!FormatPointerGenerated::writeToDevice ())
			return false;

		return true;
	}


	FormatInfoPage::FormatInfoPage () : m_firstCharByte (0),
													m_formatPointer (NULL),
													m_formatCharProperty (NULL),
														m_fontTable (NULL),
													m_formatParaProperty (NULL),
														m_leftMargin (0xFFFF), m_rightMargin (0xFFFF),
													m_formatPointerUpto (0),
													m_nextCharByte (0),
													m_formatPointerPos (0), m_formatPropertyPos (123)
	{
		// m_type=
		// m_lastPropertyOffset=
		// m_numProperty=
	}

	FormatInfoPage::~FormatInfoPage ()
	{
		delete [] m_formatParaProperty;
		delete [] m_formatCharProperty;
		delete [] m_formatPointer;
	}


	bool FormatInfoPage::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FORMATINFO
		if (m_type == ParaType)
			m_device->debug ("FormatInfoPage::readFromDevice (ParaType)\n");
		else	// if (m_type == CharType)
			m_device->debug ("FormatInfoPage::readFromDevice (CharType)\n");
	#endif

		if (!FormatInfoPageGenerated::readFromDevice ())
			return false;

		m_firstCharByte = FormatInfoPageGenerated::m_firstCharBytePlus128 - 128;

	#ifdef DEBUG_FORMATINFO
		m_device->debug ("number of FormatPointers on this page: ", FormatInfoPageGenerated::m_numFormatPointers);
		m_device->debug ("byte number of first character covered by this page: ", m_firstCharByte);
	#endif

		return true;
	}

	bool FormatInfoPage::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FORMATINFO
		if (m_type == ParaType)
			m_device->debug ("FormatInfoPage::writeToDevice (ParaType)\n");
		else	// if (m_type == CharType)
			m_device->debug ("FormatInfoPage::writeToDevice (CharType)\n");
	#endif

		FormatInfoPageGenerated::m_firstCharBytePlus128 = m_firstCharByte + 128;

	#ifdef DEBUG_FORMATINFO
		m_device->debug ("\tnumber of FormatPointers on this page: ", FormatInfoPageGenerated::m_numFormatPointers);
		m_device->debug ("\tbyte number of first character covered by this page: ", m_firstCharByte);
	#endif

		// will call FormatInfoPageGenerated::writeToArray()...
		// ...which will resolve to FormatInfoPage::writeToArray()...
		// which will then call the base FormatInfoPageGenerated::writeToArray()
		return FormatInfoPageGenerated::writeToDevice ();
	}

	bool FormatInfoPage::writeToArray (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FORMATINFO
		if (m_type == ParaType)
			m_device->debug ("\tFormatInfoPage::writeToArray (ParaType)\n");
		else	// if (m_type == CharType)
			m_device->debug ("\tFormatInfoPage::writeToArray (CharType)\n");
	#endif

		MemoryDevice memdev;

		m_formatPointerPos = 0;
		m_formatPropertyPos = 123;

	#ifdef DEBUG_FORMATINFO
		m_device->debug ("\t\tWriting FormatPointer[], num=", m_numFormatPointers);
	#endif
		for (int i = 0; i < m_numFormatPointers; i++)
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\t\t\tOffset=", m_formatPointerPos);
		#endif
			// write FormatPointer
			memdev.setCache (m_packedStructs + m_formatPointerPos);
				m_formatPointer [i].setDevice (&memdev);
				if (!m_formatPointer [i].writeToDevice ()) return false;
			memdev.setCache (NULL);
			m_formatPointerPos += FormatPointer::s_size;
		}

	#ifdef DEBUG_FORMATINFO
		m_device->debug ("\t\tWriting FormatProperty[], num=", m_numProperty);
	#endif
		for (int i = 0; i < m_numProperty; i++)
		{
			// write FormatProperty
			if (m_type == ParaType)
			{
				FormatParaProperty *prop = &m_formatParaProperty [i];

				m_formatPropertyPos -= (sizeof (Byte) + prop->getNumDataBytes ());
				memdev.setCache (m_packedStructs + m_formatPropertyPos);
					prop->setDevice (&memdev);	// device was set to m_device to keep operator== happy in FormatInfoPage::add
					if (!prop->writeToDevice ()) return false;
				memdev.setCache (NULL);
			}
			else	// if (m_type == CharType)
			{
				FormatCharProperty *prop = &m_formatCharProperty [i];

				m_formatPropertyPos -= (sizeof (Byte) + prop->getNumDataBytes ());
				memdev.setCache (m_packedStructs + m_formatPropertyPos);
					prop->setDevice (&memdev);	// device was set to m_device to keep operator== happy in FormatInfoPage::add
					if (!prop->writeToDevice ()) return false;
				memdev.setCache (NULL);
			}
			#ifdef DEBUG_FORMATINFO
				m_device->debug ("\t\t\tWrote at Offset=", m_formatPropertyPos);
			#endif
		}

		if (!FormatInfoPageGenerated::writeToArray ())
			return false;

		return true;
	}

	void *FormatInfoPage::begin (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_FORMATINFO
		if (m_type == ParaType)
			m_device->debug ("\nFormatInfoPage::begin (ParaType)\n");
		else	// if (m_type == CharType)
			m_device->debug ("\nFormatInfoPage::begin (CharType)\n");
	#endif

		m_formatPointerUpto = 0;
		m_nextCharByte = 0;	// for consistency checking

		m_lastPropertyOffset = -1;

		if (!m_formatPointer)
		{
			m_formatPointer = new FormatPointer [1];

			if (!m_formatPointer)
			{
				m_device->error (Error::OutOfMemory, "could not allocate memory for FormatPointer\n");
				return NULL;
			}

			m_formatPointer->setDevice (m_device);
		}

		return this->next ();
	}

	void *FormatInfoPage::next (void)
	{
		void *ret;

	#ifdef DEBUG_FORMATINFO
		if (m_type == ParaType)
			m_device->debug ("\tPara FormatPointer #", m_formatPointerUpto);
		else	// if (m_type == CharType)
			m_device->debug ("\tChar FormatPointer #", m_formatPointerUpto);
	#endif


		//
		// read Format Pointer
		//

		// check Format Pointer allocated
		if (!m_formatPointer)
		{
			m_device->error (Error::InternalError, "formatPointer not initialised - call FormatInfoPage::begin() before next()\n");
			return NULL;
		}

		// read next Format Pointer (fixed length)
		m_device->setCache (m_packedStructs + m_formatPointerUpto * FormatPointer::s_size);
		if (!m_formatPointer->readFromDevice ()) return NULL;
		m_device->setCache (NULL);
		DWord formatPointerAfterEndCharByte = m_formatPointer->getAfterEndCharByte ();

		// check that it continues on from the last
		if (formatPointerAfterEndCharByte <= m_nextCharByte)
			m_device->error (Error::Warn, "FormatPointer afterEndCharByte does not go forward\n");
		m_nextCharByte = formatPointerAfterEndCharByte;

		// check whether it is the last one (EOF-wise)
		if (formatPointerAfterEndCharByte >= m_header->getNumCharBytes ())
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\t\tThis is the last FormatPointer!\n");
		#endif

			// past EOF?
			if (formatPointerAfterEndCharByte > m_header->getNumCharBytes ())
			{
				m_device->error (Error::Warn, "FormatPointer ends after EOF, forcing it to end at EOF\n");
				m_formatPointer->setAfterEndCharByte (m_header->getNumCharBytes ());
				m_nextCharByte = m_header->getNumCharBytes ();
			}

			// but there are still more FormatPointers left?
			if (m_formatPointerUpto != m_numFormatPointers - 1)
			{
				m_device->error (Error::Warn, "FormatPointer ends at EOF but is not the last, forcing it to be the last\n");
				m_formatPointerUpto = m_numFormatPointers - 1;	// m_formatPointerUpto will get incremented at the end of this function
			}
		}


		//
		// read in corresponding Format Property
		//
		int currentPropertyOffset = m_formatPointer->getFormatPropertyOffset ();

		bool up2date = (currentPropertyOffset == m_lastPropertyOffset);
		if (!up2date) m_device->setCache (m_packedStructs + currentPropertyOffset);

		if (m_type == CharType)
		{
			if (!up2date)
			{
				// reset to defaults
				delete [] m_formatCharProperty;
				m_formatCharProperty = new FormatCharProperty [1];

				if (!m_formatCharProperty)
				{
					m_device->error (Error::OutOfMemory, "could not allocate memory for FormatCharProperty\n");
					m_device->setCache (NULL);
					return NULL;
				}

				m_formatCharProperty->setDevice (m_device);
				m_formatCharProperty->setFontTable (m_fontTable);
				if (!m_formatCharProperty->updateFont ())
				{
					m_device->setCache (NULL);
					return NULL;
				}

				// corresponding charProperty structure exists?
				if (currentPropertyOffset != 0xFFFF)
				{
					if (!m_formatCharProperty->readFromDevice ())
					{
						m_device->setCache (NULL);
						return NULL;
					}
				}
			}

			assert (m_formatCharProperty);
			m_formatCharProperty->setAfterEndCharByte (m_formatPointer->getAfterEndCharByte ());
			ret = m_formatCharProperty;
		}
		else	// if (m_type == ParaType)
		{
			if (!up2date)
			{
				// reset to defaults
				delete [] m_formatParaProperty;
				m_formatParaProperty = new FormatParaProperty [1];

				if (!m_formatParaProperty)
				{
					m_device->error (Error::OutOfMemory, "could not allocate memory for FormatParaProperty\n");
					m_device->setCache (NULL);
					return NULL;
				}

				m_formatParaProperty->setDevice (m_device);
				m_formatParaProperty->setMargins (m_leftMargin, m_rightMargin);

				// corresponding paraProperty structure exists?
				if (currentPropertyOffset != 0xFFFF)
				{
					if (!m_formatParaProperty->readFromDevice ())
					{
						m_device->setCache (NULL);
						return NULL;
					}
				}
			}

			assert (m_formatParaProperty);
			m_formatParaProperty->setAfterEndCharByte (m_formatPointer->getAfterEndCharByte ());
			ret = m_formatParaProperty;
		}

		if (!up2date) m_device->setCache (NULL);
		m_lastPropertyOffset = currentPropertyOffset;

		m_formatPointerUpto++;
		assert (m_formatPointer);
		return ret;
	}

	bool FormatInfoPage::end (void) const
	{
		assert (m_formatPointerUpto <= FormatInfoPageGenerated::m_numFormatPointers);
		return m_formatPointerUpto >= FormatInfoPageGenerated::m_numFormatPointers;
	}

	bool FormatInfoPage::add (const void *property)
	{
	CHECK_DEVICE;

		// MaxElements is true for FormatPointers since you can't have partial FormatPointers
		// 	This is also true for FormatProperties because m_numFormatPointer >= m_numProperty
		// 	so MaxElements is also the upper limit on the number of properties
		const int MaxElements = 123 / FormatPointer::s_size;

	#ifdef DEBUG_FORMATINFO
		if (m_type == ParaType)
			m_device->debug (">>>> FormatInfoPage::add (ParaType) <<<<\n");
		else	// if (m_type == CharType)
			m_device->debug (">>>> FormatInfoPage::add (CharType) <<<<\n");

		Dump (formatPointerPos);
		Dump (formatPropertyPos);
	#endif


		//
		// Allocated memory for FormatPointers yet?
		//

		if (!m_formatPointer)
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\tFIRST CALL!  Allocating memory for FormatPointer[] and FormatProperty[]\n");
		#endif

			// allocate memory for FormatPointers
			m_formatPointer = new FormatPointer [MaxElements + 1];	// lazy memory allocation (+1 in case we can merge the last one)
			if (!m_formatPointer)
				ErrorAndQuit (Error::OutOfMemory, "could not allocate memory for formatPointer[]\n");
			// don't need to use m_formatPointerUpto here
			FormatInfoPageGenerated::m_numFormatPointers = 0;

			// ok, better allocate memory for relevant FormatProperties
			if (m_type == ParaType)
			{
				assert (!m_formatParaProperty);
				m_formatParaProperty = new FormatParaProperty [MaxElements + 1];	// lazy memory allocation (+1 for default prop)
				m_formatParaProperty [MaxElements].setDevice (m_device);	// we will be == this default which has to writeToArray which NeedsDevice
				if (!m_formatParaProperty)
					ErrorAndQuit (Error::OutOfMemory, "could not allocate memory for formatParaProperty[]\n");
			}
			else	// if (m_type == CharType)
			{
				assert (!m_formatCharProperty);
				m_formatCharProperty = new FormatCharProperty [MaxElements + 1];	// lazy memory allocation (+1 for default prop)
				m_formatCharProperty [MaxElements].setDevice (m_device);	// we will be == this default which has to writeToArray which NeedsDevice
				if (!m_formatCharProperty)
						ErrorAndQuit (Error::OutOfMemory, "could not allocate memory for formatCharProperty[]\n");
			}

			m_numProperty = 0;
		}


		//
		// Setup pointers
		//

		FormatParaProperty inpp;
		FormatCharProperty incp;

		if (m_type == ParaType)
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\tTrying to add ParaProperty, #numDataBytes=", ((FormatParaProperty *) property)->getNumDataBytes ());
		#endif

			inpp = *((FormatParaProperty *) property);
			inpp.setDevice (m_device);
			inpp.setAfterEndCharByte (m_device->tellInternal () - 128);
			inpp.setMargins (m_leftMargin, m_rightMargin);
			if (!inpp.updateIndents ()) return false;
		}
		else	// if (m_type == CharType)
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\tTrying to add CharProperty, #numDataBytes=", ((FormatCharProperty *) property)->getNumDataBytes ());
		#endif

			incp = *((FormatCharProperty *) property);
			incp.setDevice (m_device);
			incp.setAfterEndCharByte (m_device->tellInternal () - 128);
			incp.setFontTable (m_fontTable);
			if (!incp.updateFontCode ()) return false;
		}


		//
		// Attempt to add Property to current page:
		//
		// Since MS programmers tried so hard to save space, we will do the same :)
		// This results in having to store variable-length structures and the use of other nasty
		// tricks such as having multiple FormatPointers pointing to the same FormatProperty.
		// Details follow in code :)
		//

		// In Write, character formatting blocks can extend across paragraphs
		// In LibMSWrite they don't (for convenience?) so here we merge FormatPointers that have been split up
		// This applies _only_ to _character formatting_ and is not MS' fault but rather the design of LibMSWrite.
		// It should _not_ be done to paragraph formatting because I don't think the user would appreciate
		// several paragraphs being merged into one multi-line paragraph (changing paragraph properties would
		// become rather difficult...)
		bool checkedLastFormatPointer = false;
		if (m_type == CharType && m_numProperty > 0 /* && m_numFormatPointers > 0 */)
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\tIs it the same property as last? ");
		#endif

			// simply extend last FormatPointer
			FormatCharProperty *lastProp = (FormatCharProperty *) m_formatPointer [m_numFormatPointers - 1].getFormatProperty ();
			if (incp == *lastProp)
			{
			#ifdef DEBUG_FORMATINFO
				m_device->debug ("Yes, extending FormatPointer #", m_numFormatPointers - 1);
				m_device->debug ("\t\tFrom ", m_formatPointer [m_numFormatPointers - 1].getAfterEndCharByte ());
			#endif

				m_formatPointer [m_numFormatPointers - 1].setAfterEndCharByte (incp.getAfterEndCharByte ());

			#ifdef DEBUG_FORMATINFO
				m_device->debug ("\t\tTo: ", incp.getAfterEndCharByte ());
			#endif
				return true;
			}

			checkedLastFormatPointer = true;
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("No\n");
		#endif
		}
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("\tSame as earlier FormatPointer? ");
		#endif

		// points to same property as an earlier formatPointer?
		for (int i = 0; i < m_numFormatPointers - (checkedLastFormatPointer ? 1 : 0); i++)
		{
		#ifdef DEBUG_FORMATINFO
			m_device->debug (i);
			m_device->debug ("? ");
		#endif
			if (m_type == ParaType)
			{
				FormatParaProperty *prop = (FormatParaProperty *) m_formatPointer [i].getFormatProperty ();
				if (inpp == *prop)
				{
					// try to add new formatPointer
					if (m_formatPointerPos + FormatPointer::s_size > m_formatPropertyPos)
					{
					#ifdef DEBUG_FORMATINFO
						m_device->debug ("Yes, but out of room on this page\n");
					#endif
						return false;	// not enough room
					}

				#ifdef DEBUG_FORMATINFO
					m_device->debug ("Yes, same property as ", i);
				#endif
					m_formatPointer [m_numFormatPointers].setAfterEndCharByte (inpp.getAfterEndCharByte ());
					m_formatPointer [m_numFormatPointers].setFormatPropertyOffset (m_formatPointer [i].getFormatPropertyOffset ());
					m_formatPointer [m_numFormatPointers].setFormatProperty (prop);

					m_formatPointerPos += FormatPointer::s_size;
					m_numFormatPointers++;
					return true;
				}
			}
			else	// if (m_type == CharType)
			{
				FormatCharProperty *prop = (FormatCharProperty *) m_formatPointer [i].getFormatProperty ();
				if (incp == *prop)
				{
					// try to add new formatPointer
					if (m_formatPointerPos + FormatPointer::s_size > m_formatPropertyPos)
					{
					#ifdef DEBUG_FORMATINFO
						m_device->debug ("Yes, but out of room on this page\n");
					#endif
						return false;	// not enough room
					}

				#ifdef DEBUG_FORMATINFO
					m_device->debug ("Yes, same property as ", i);
				#endif
					m_formatPointer [m_numFormatPointers].setAfterEndCharByte (incp.getAfterEndCharByte ());
					m_formatPointer [m_numFormatPointers].setFormatPropertyOffset (m_formatPointer [i].getFormatPropertyOffset ());
					m_formatPointer [m_numFormatPointers].setFormatProperty (prop);

					m_formatPointerPos += FormatPointer::s_size;
					m_numFormatPointers++;
					return true;
				}
			}
		}
		#ifdef DEBUG_FORMATINFO
			m_device->debug ("No, outputting full FormatPointer & Property\n");
		#endif

		// ok we can't compress, must output a full FormatPointer & FormatProperty
		if (m_type == ParaType)
		{
			int nextPropertyPos = m_formatPropertyPos;
			if (inpp.getNumDataBytes ())
				nextPropertyPos -= (sizeof (Byte) + inpp.getNumDataBytes ());

			if (m_formatPointerPos + FormatPointer::s_size > nextPropertyPos)
			{
			#ifdef DEBUG_FORMATINFO
				m_device->debug ("\tOut of room on this page!\n");
			#endif
				return false;	// not enough room
			}

			m_formatPropertyPos = nextPropertyPos;
			if (inpp.getNumDataBytes ())
				m_formatParaProperty [m_numProperty] = inpp;

			m_formatPointer [m_numFormatPointers].setAfterEndCharByte (inpp.getAfterEndCharByte ());
			if (inpp.getNumDataBytes ())
			{
				m_formatPointer [m_numFormatPointers].setFormatPropertyOffset (m_formatPropertyPos);
				m_formatPointer [m_numFormatPointers].setFormatProperty (&m_formatParaProperty [m_numProperty]);
			}
			else
			{
				m_formatPointer [m_numFormatPointers].setFormatPropertyOffset (0xFFFF/*nowhere*/);
				m_formatPointer [m_numFormatPointers].setFormatProperty (&m_formatParaProperty [MaxElements]/*default*/);
			}
			m_formatPointerPos += FormatPointer::s_size;

			if (inpp.getNumDataBytes ()) m_numProperty++;
			m_numFormatPointers++;
			return true;
		}
		else	// if (m_type == CharType)
		{
			int nextPropertyPos = m_formatPropertyPos;
			if (incp.getNumDataBytes ())
				nextPropertyPos -= (sizeof (Byte) + incp.getNumDataBytes ());

			if (m_formatPointerPos + FormatPointer::s_size > nextPropertyPos)
			{
			#ifdef DEBUG_FORMATINFO
				m_device->debug ("\tOut of room on this page!\n");
			#endif
				return false;	// not enough room
			}

			m_formatPropertyPos = nextPropertyPos;
			if (incp.getNumDataBytes ())
				m_formatCharProperty [m_numProperty] = incp;

			m_formatPointer [m_numFormatPointers].setAfterEndCharByte (incp.getAfterEndCharByte ());
			if (incp.getNumDataBytes ())
			{
				m_formatPointer [m_numFormatPointers].setFormatPropertyOffset (m_formatPropertyPos);
				m_formatPointer [m_numFormatPointers].setFormatProperty (&m_formatCharProperty [m_numProperty]);
			}
			else
			{
				m_formatPointer [m_numFormatPointers].setFormatPropertyOffset (0xFFFF/*nowhere*/);
				m_formatPointer [m_numFormatPointers].setFormatProperty (&m_formatCharProperty [MaxElements]/*default*/);
			}
			m_formatPointerPos += FormatPointer::s_size;

			if (incp.getNumDataBytes ()) m_numProperty++;
			m_numFormatPointers++;
			return true;
		}
	}


	BMP_BitmapFileHeader::BMP_BitmapFileHeader ()
	{
	}

	BMP_BitmapFileHeader::~BMP_BitmapFileHeader ()
	{
	}

	BMP_BitmapFileHeader &BMP_BitmapFileHeader::operator= (const BMP_BitmapFileHeader &rhs)
	{
		if (this == &rhs)
			return *this;

		BMP_BitmapFileHeaderGenerated::operator= (rhs);

		return *this;
	}

	bool BMP_BitmapFileHeader::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n<<<< BMP_BitmapFileHeader::readFromDevice >>>>\n");
	#endif

		if (!BMP_BitmapFileHeaderGenerated::readFromDevice ())
			return false;

	#ifdef DEBUG_IMAGE
		Dump (magic);
		Dump (totalBytes);
		Dump (zero [0]);
		Dump (zero [1]);
		Dump (actualImageOffset);
	#endif

		return true;
	}

	bool BMP_BitmapFileHeader::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n<<<< BMP_BitmapFileHeader::writeToDevice >>>>\n");
	#endif

		if (!BMP_BitmapFileHeaderGenerated::writeToDevice ())
			return false;

		return true;

	}


	BMP_BitmapInfoHeader::BMP_BitmapInfoHeader ()
	{
	}

	BMP_BitmapInfoHeader::~BMP_BitmapInfoHeader ()
	{
	}

	BMP_BitmapInfoHeader &BMP_BitmapInfoHeader::operator= (const BMP_BitmapInfoHeader &rhs)
	{
		if (this == &rhs)
			return *this;

		BMP_BitmapInfoHeaderGenerated::operator= (rhs);

		return *this;
	}

	bool BMP_BitmapInfoHeader::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n<<<< BMP_BitmapInfoHeader::readFromDevice >>>>\n");
	#endif

		if (!BMP_BitmapInfoHeaderGenerated::readFromDevice ())
			return false;

	#ifdef DEBUG_IMAGE
		Dump (numHeaderBytes);
		Dump (width);
		Dump (height);
		Dump (numPlanes);
		Dump (bitsPerPixel);
		Dump (compression);
		Dump (sizeImage);
		Dump (xPixelsPerMeter);
		Dump (yPixelsPerMeter);
		Dump (coloursUsed);
		Dump (coloursImportant);
	#endif

		return true;
	}

	bool BMP_BitmapInfoHeader::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n<<<< BMP_BitmapInfoHeader::writeToDevice >>>>\n");
	#endif

		if (!BMP_BitmapInfoHeaderGenerated::writeToDevice ())
			return false;

		return true;
	}


	BMP_BitmapColourIndex::BMP_BitmapColourIndex ()
	{
	}

	BMP_BitmapColourIndex::~BMP_BitmapColourIndex ()
	{
	}

	BMP_BitmapColourIndex &BMP_BitmapColourIndex::operator= (const BMP_BitmapColourIndex &rhs)
	{
		if (this == &rhs)
			return *this;

		BMP_BitmapColourIndexGenerated::operator= (rhs);

		return *this;
	}


	BitmapHeader::BitmapHeader ()
	{
	}

	BitmapHeader::~BitmapHeader ()
	{
	}

	BitmapHeader &BitmapHeader::operator= (const BitmapHeader &rhs)
	{
		if (this == &rhs)
			return *this;

		BitmapHeaderGenerated::operator= (rhs);

		return *this;
	}

	bool BitmapHeader::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n<<<< BitmapHeader::readFromDevice >>>>\n");
	#endif

		if (!BitmapHeaderGenerated::readFromDevice ())
			return false;

	#ifdef DEBUG_IMAGE
		Dump (zero);
		Dump (width);
		Dump (height);
		Dump (widthBytes);
		Dump (numPlanes);
		Dump (bitsPerPixel);
		Dump (zero2);
	#endif

		return true;
	}

	bool BitmapHeader::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n>>>> BitmapHeader::writeToDevice <<<<\n");
	#endif

		if (!BitmapHeaderGenerated::writeToDevice ())
			return false;

		return true;
	}


	WMFHeader::WMFHeader ()
	{
	}

	WMFHeader::~WMFHeader ()
	{
	}

	WMFHeader &WMFHeader::operator= (const WMFHeader &rhs)
	{
		if (this == &rhs)
			return *this;

		WMFHeaderGenerated::operator= (rhs);

		return *this;
	}

	bool WMFHeader::readFromDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n<<<< WMFHeader::readFromDevice >>>>\n");
	#endif

		if (!WMFHeaderGenerated::readFromDevice ())
			return false;

	#ifdef DEBUG_IMAGE
		Dump (fieldType);
		Dump (headerSize);
		Dump (winVersion);
		Dump (fileSize);
		Dump (numObjects);
		Dump (maxRecordSize);
		Dump (zero);
	#endif

		return true;
	}

	bool WMFHeader::writeToDevice (void)
	{
	CHECK_DEVICE;

	#ifdef DEBUG_IMAGE
		m_device->debug ("\n>>>> WMFHeader::writeToDevice <<<<\n");
	#endif

	#ifdef DEBUG_IMAGE
		Dump (fieldType);
		Dump (headerSize);
		Dump (winVersion);
		Dump (fileSize);
		Dump (numObjects);
		Dump (maxRecordSize);
		Dump (zero);
	#endif

		if (!WMFHeaderGenerated::writeToDevice ())
			return false;

		return true;
	}
}	// namespace MSWrite	{

// end of structures_private.cpp