update dev300-m57
[ooovba.git] / lotuswordpro / source / filter / lwpfribheader.hxx
blob6088f686531a71dc93c1ed3a5ab88df48de0e041
1 /*************************************************************************
3 * The Contents of this file are made available subject to the terms of
4 * either of the following licenses
6 * - GNU Lesser General Public License Version 2.1
7 * - Sun Industry Standards Source License Version 1.1
9 * Sun Microsystems Inc., October, 2000
11 * GNU Lesser General Public License Version 2.1
12 * =============================================
13 * Copyright 2000 by Sun Microsystems, Inc.
14 * 901 San Antonio Road, Palo Alto, CA 94303, USA
16 * This library is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU Lesser General Public
18 * License version 2.1, as published by the Free Software Foundation.
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
31 * Sun Industry Standards Source License Version 1.1
32 * =================================================
33 * The contents of this file are subject to the Sun Industry Standards
34 * Source License Version 1.1 (the "License"); You may not use this file
35 * except in compliance with the License. You may obtain a copy of the
36 * License at http://www.openoffice.org/license.html.
38 * Software provided under this License is provided on an "AS IS" basis,
39 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
40 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
41 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
42 * See the License for the specific provisions governing your rights and
43 * obligations concerning the Software.
45 * The Initial Developer of the Original Code is: IBM Corporation
47 * Copyright: 2008 by IBM Corporation
49 * All Rights Reserved.
51 * Contributor(s): _______________________________________
54 ************************************************************************/
55 #ifndef _LWPFRIBHEADER_HXX
56 #define _LWPFRIBHEADER_HXX
58 #define FRIB_TAG_NOUNICODE 0x40 // Don't xlate text to/from Unicode
59 #define FRIB_TAG_MODIFIER 0x80 // This frib has a modifier on it
60 #define FRIB_TAG_TYPEMASK (FRIB_TAG_NOUNICODE | FRIB_TAG_MODIFIER)
62 #define FRIB_TAG_ELVIS 0 // "EOP dammit" tag
64 #define FRIB_MTAG_NONE 0
65 #define FRIB_MTAG_FONT 1
66 #define FRIB_MTAG_REVISION 2
67 #define FRIB_MTAG_CHARSTYLE 3
68 #define FRIB_MTAG_ATTRIBUTE 4
69 #define FRIB_MTAG_LANGUAGE 5
70 #define FRIB_MTAG_CHARBORDER 6
71 #define FRIB_MTAG_AMIKAKE 7
72 #define FRIB_MTAG_CODEPAGE 8
73 #define FRIB_MTAG_STXLINK 9 // SmarText; do not #ifdef out
75 #define FT_MAXIMUM 30
77 #define DOC_BADFILEPARAHINTS 0x00800000UL
79 /* Registration definitions */
80 enum
82 FS_RIGHTSIDE = 0x00,
83 FS_LEFTSIDE = 0x10
85 /* Mode definitions */
86 enum
88 FS_REGISTERSELF = 0x20,
89 FS_READING = 0x40
92 enum
94 FRIB_TAG_INVALID, // FT_INVALID
95 FRIB_TAG_EOP, // FT_EOP
96 FRIB_TAG_TEXT, // FT_TEXT
97 FRIB_TAG_TABLE, // FT_TABLE
98 FRIB_TAG_TAB, // FT_TAB
99 FRIB_TAG_PAGEBREAK, // FT_PAGEBREAK
100 FRIB_TAG_FRAME, // FT_FRAME
101 FRIB_TAG_FOOTNOTE, // FT_FOOTNOTE
102 FRIB_TAG_COLBREAK, // FT_COLBREAK
103 FRIB_TAG_LINEBREAK, // FT_LINEBREAK
104 FRIB_TAG_HARDSPACE, // FT_HARDSPACE
105 FRIB_TAG_SOFTHYPHEN, // FT_SOFTHYPHEN
106 FRIB_TAG_PARANUMBER, // FT_PARANUMBER
107 FRIB_TAG_UNICODE, // FT_UNICODE
108 #ifdef KANJI
109 FRIB_TAG_KANJI, // FT_KANJI
110 FRIB_TAG_HKATAKANA, // FT_HKATAKANA
111 #else
112 FRIB_TAG_UNICODE2, // FT_UNICODE
113 FRIB_TAG_UNICODE3, // FT_UNICODE
114 #endif
115 FRIB_TAG_SEPARATOR, // FT_SEPARATOR
116 FRIB_TAG_SECTION, // FT_SECTION
117 FRIB_TAG_TOMBSTONE, // FT_TOMBSTONE
118 FRIB_TAG_SPECIALTAB, // FT_SPECIALTAB
119 FRIB_TAG_PAGENUMBER, // FT_PAGENUMBER
120 FRIB_TAG_NOTE, // FT_NOTE
121 FRIB_TAG_DOCVAR, // FT_DOCVAR
122 FRIB_TAG_BOOKMARK, // FT_BOOKMARK
123 FRIB_TAG_DDE, // FT_DDE
124 FRIB_TAG_FIELD, // FT_FIELD
125 FRIB_TAG_CHBLOCK, // FT_CHBLOCK
126 //#ifdef RUBY
127 FRIB_TAG_FLOWBREAK, // FT_FLOWBREAK
128 FRIB_TAG_RUBYMARKER, // FT_RUBYMARKER
129 FRIB_TAG_RUBYFRAME // FT_RUBYFRAME
130 //#else
131 // FRIB_TAG_FLOWBREAK // FT_FLOWBREAK
132 //#endif
135 #endif