Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "ie_imp_WordPerfect.h"
00027 #include "xap_Module.h"
00028
00029 #define IE_MIMETYPE_WP_51 "application/wordperfect5.1"
00030 #define IE_MIMETYPE_WP_6 "application/wordperfect6"
00031
00032 #define WP_TOP_SOFT_SPACE 128
00033 #define WP_TOP_HARD_HYPHEN 132 // (0x84)
00034 #define WP_TOP_DORMANT_HARD_RETURN 135 // (0x87)
00035 #define WP_TOP_HARD_EOL 204
00036 #define WP_TOP_SOFT_EOL 207
00037 #define WP_TOP_EOL_GROUP 0xD0
00038 #define WP_TOP_PAGE_GROUP 0xD1
00039 #define WP_TOP_COLUMN_GROUP 0xD2
00040 #define WP_TOP_PARAGRAPH_GROUP 0xD3
00041 #define WP_TOP_CHARACTER_GROUP 0xD4
00042 #define WP_TOP_CROSSREFERENCE_GROUP 0xD5
00043 #define WP_TOP_HEADER_FOOTER_GROUP 0xD6
00044 #define WP_TOP_FOOTENDNOTE_GROUP 215 // (0xD7)
00045 #define WP_TOP_SET_NUMBER_GROUP 216 // (0xD8)
00046 #define WP_TOP_NUMBERING_METHOD_GROUP 217 // (0xD9)
00047 #define WP_TOP_DISPLAY_NUMBER_REFERENCE_GROUP 218 // (0xDA)
00048 #define WP_TOP_INCREMENT_NUMBER_GROUP 219 // (0xDB)
00049 #define WP_TOP_DECREMENT_NUMBER_GROUP 220 // (0xDC)
00050 #define WP_TOP_STYLE_GROUP 221 // (0xDD)
00051 #define WP_TOP_MERGE_GROUP 222 // (0xDE)
00052 #define WP_TOP_BOX_GROUP 223 // (0xDF)
00053 #define WP_TOP_TAB_GROUP 224 // (0xE0)
00054 #define WP_TOP_PLATFORM_GROUP 225 // (0xE1)
00055 #define WP_TOP_FORMATTER_GROUP 226 // (0xE2)
00056 #define WP_TOP_EXTENDED_CHARACTER 240// (0xF0)
00057 #define WP_TOP_UNDO_GROUP 241 // (0xF1)
00058 #define WP_TOP_ATTRIBUTE_ON 242 // (0xF2)
00059 #define WP_TOP_ATTRIBUTE_OFF 243 // (0xF3)
00060
00061 #define WP_PARAGRAPH_GROUP_JUSTIFICATION 0x05
00062 #define WP_PARAGRAPH_GROUP_OUTLINE_DEFINE 0x0E
00063 #define WP_PARAGRAPH_GROUP_JUSTIFICATION_LEFT 0x00
00064 #define WP_PARAGRAPH_GROUP_JUSTIFICATION_FULL 0x01
00065 #define WP_PARAGRAPH_GROUP_JUSTIFICATION_CENTER 0x02
00066 #define WP_PARAGRAPH_GROUP_JUSTIFICATION_RIGHT 0x03
00067 #define WP_PARAGRAPH_GROUP_JUSTIFICATION_FULL_ALL_LINES 0x04
00068 #define WP_PARAGRAPH_GROUP_JUSTIFICATION_RESERVED 0x05
00069
00070 #define WP_MULTINATIONAL_CHARACTER_SET 1
00071 #define WP_PHONETIC_SYMBOL_CHARACTER_SET 2
00072 #define WP_TYPOGRAPHIC_SYMBOL_CHARACTER_SET 4
00073 #define WP_ICONIC_SYMBOL_CHARACTER_SET 5
00074 #define WP_MATH_SCIENTIFIC_CHARACTER_SET 6
00075 #define WP_MATH_SCIENTIFIC_EXTENDED_CHARACTER_SET 7
00076 #define WP_GREEK_CHARACTER_SET 8
00077 #define WP_HEBREW_CHARACTER_SET 9
00078 #define WP_CYRILLIC_CHARACTER_SET 10
00079 #define WP_JAPANESE_CHARACTER_SET 11