merge the formfield patch from ooo-build
[ooovba.git] / lotuswordpro / source / filter / lwpfribmark.hxx
blob90b29f4be6b5b6312526b219d60fd2fd6d92e8c1
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 /*************************************************************************
56 * @file
57 * For LWP filter architecture prototype
58 ************************************************************************/
59 /*************************************************************************
60 * Change History
61 May 2005 Created
62 ************************************************************************/
65 #ifndef _LWPFRIBMARKER_HXX_
66 #define _LWPFRIBMARKER_HXX_
68 #include "lwpfrib.hxx"
69 #include "lwpstory.hxx"
70 #include "lwpmarker.hxx"
71 #include "xfilter/xftextspan.hxx"
72 #include "xfilter/xfbookmark.hxx"
74 class LwpFribCHBlock : public LwpFrib
76 public:
77 LwpFribCHBlock( LwpPara* pPara ) : LwpFrib(pPara){};
78 ~LwpFribCHBlock(){};
79 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
80 LwpCHBlkMarker* GetMarker();
81 sal_uInt8 GetType(){return m_nType;}
82 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
83 void XFConvert(XFContentContainer* pXFPara,LwpStory* pStory);
84 private:
85 sal_uInt8 m_nType;
86 LwpObjectID m_objMarker;
89 class LwpFribBookMark : public LwpFrib
91 public:
92 LwpFribBookMark( LwpPara* pPara );
93 ~LwpFribBookMark(){};
94 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
95 LwpObjectID GetMarkerID(){return m_objMarker;}
96 sal_uInt8 GetType(){return m_nType;}
97 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
98 void XFConvert(XFContentContainer* pXFPara);
99 void RegisterStyle(LwpFoundry* pFoundry);
100 private:
101 sal_uInt8 m_nType;
102 LwpObjectID m_objMarker;
103 XFBookmarkStart* m_pStart;
104 XFBookmarkEnd* m_pEnd;
107 class LwpFribField : public LwpFrib
109 public:
110 LwpFribField( LwpPara* pPara );
111 ~LwpFribField(){};
112 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
113 LwpFieldMark* GetMarker();
114 sal_uInt8 GetType(){return m_nType;}
115 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
116 void XFConvert(XFContentContainer* pXFPara);
117 void RegisterStyle(LwpFoundry* pFoundry);
118 enum{
119 SUBFIELD_INVALID = 0,
120 SUBFIELD_DATETIME = 1,
121 SUBFIELD_CROSSREF = 2,
122 SUBFIELD_DOCPOWER = 3,
124 private:
125 sal_uInt8 m_nType;
126 LwpObjectID m_objMarker;
127 OUString m_TimeStyle;
129 sal_uInt8 m_nSubType;//datetime/crossref/other
130 OUString m_sFormula;
132 sal_uInt8 m_nCrossRefType;
133 sal_uInt8 m_nDateTimeType;
134 sal_uInt8 m_nDocPowerType;
136 void RegisterTimeField(LwpFieldMark* pFieldMark);
137 void RegisterDateTimeStyle(OUString sFormula);
138 void RegisterTotalTimeStyle();
139 void CheckFieldType(LwpFieldMark* pFieldMark);
140 void ConvertDocFieldStart(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
141 void ConvertDocFieldEnd(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
142 void ConvertDateTimeStart(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
143 void ConvertDateTimeEnd(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
144 void ConvertCrossRefEnd(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
145 void ConvertCrossRefStart(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
148 class LwpFribRubyMarker : public LwpFrib
150 public:
151 LwpFribRubyMarker( LwpPara* pPara );
152 ~LwpFribRubyMarker(){};
153 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
154 LwpRubyMarker* GetMarker();
155 sal_uInt8 GetType(){return m_nType;}
156 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
157 void XFConvert(XFContentContainer* pXFPara);
158 void RegisterStyle(LwpFoundry* pFoundry);
159 private:
160 sal_uInt8 m_nType;
161 LwpObjectID m_objMarker;
164 #endif