bump product version to 4.1.6.2
[LibreOffice.git] / lotuswordpro / source / filter / lwpfribmark.hxx
blob1dbd7cbdfdb2fab06843e4bd45f4a3c900d26a9f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * either of the following licenses
7 * - GNU Lesser General Public License Version 2.1
8 * - Sun Industry Standards Source License Version 1.1
10 * Sun Microsystems Inc., October, 2000
12 * GNU Lesser General Public License Version 2.1
13 * =============================================
14 * Copyright 2000 by Sun Microsystems, Inc.
15 * 901 San Antonio Road, Palo Alto, CA 94303, USA
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License version 2.1, as published by the Free Software Foundation.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
32 * Sun Industry Standards Source License Version 1.1
33 * =================================================
34 * The contents of this file are subject to the Sun Industry Standards
35 * Source License Version 1.1 (the "License"); You may not use this file
36 * except in compliance with the License. You may obtain a copy of the
37 * License at http://www.openoffice.org/license.html.
39 * Software provided under this License is provided on an "AS IS" basis,
40 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
41 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
42 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
43 * See the License for the specific provisions governing your rights and
44 * obligations concerning the Software.
46 * The Initial Developer of the Original Code is: IBM Corporation
48 * Copyright: 2008 by IBM Corporation
50 * All Rights Reserved.
52 * Contributor(s): _______________________________________
55 ************************************************************************/
56 /*************************************************************************
57 * @file
58 * For LWP filter architecture prototype
59 ************************************************************************/
60 /*************************************************************************
61 * Change History
62 May 2005 Created
63 ************************************************************************/
66 #ifndef _LWPFRIBMARKER_HXX_
67 #define _LWPFRIBMARKER_HXX_
69 #include "lwpfrib.hxx"
70 #include "lwpstory.hxx"
71 #include "lwpmarker.hxx"
72 #include "xfilter/xftextspan.hxx"
73 #include "xfilter/xfbookmark.hxx"
75 class LwpFribCHBlock : public LwpFrib
77 public:
78 LwpFribCHBlock( LwpPara* pPara ) : LwpFrib(pPara){}
79 ~LwpFribCHBlock(){}
80 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
81 LwpCHBlkMarker* GetMarker();
82 sal_uInt8 GetType(){return m_nType;}
83 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
84 void XFConvert(XFContentContainer* pXFPara,LwpStory* pStory);
85 private:
86 sal_uInt8 m_nType;
87 LwpObjectID m_objMarker;
90 class LwpFribBookMark : public LwpFrib
92 public:
93 LwpFribBookMark( LwpPara* pPara );
94 ~LwpFribBookMark(){}
95 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
96 LwpObjectID GetMarkerID(){return m_objMarker;}
97 sal_uInt8 GetType(){return m_nType;}
98 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
99 void XFConvert(XFContentContainer* pXFPara);
100 void RegisterStyle(LwpFoundry* pFoundry);
101 private:
102 sal_uInt8 m_nType;
103 LwpObjectID m_objMarker;
104 XFBookmarkStart* m_pStart;
105 XFBookmarkEnd* m_pEnd;
108 class LwpFribField : public LwpFrib
110 public:
111 LwpFribField( LwpPara* pPara );
112 ~LwpFribField(){}
113 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
114 LwpFieldMark* GetMarker();
115 sal_uInt8 GetType(){return m_nType;}
116 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
117 void XFConvert(XFContentContainer* pXFPara);
118 void RegisterStyle(LwpFoundry* pFoundry);
119 enum{
120 SUBFIELD_INVALID = 0,
121 SUBFIELD_DATETIME = 1,
122 SUBFIELD_CROSSREF = 2,
123 SUBFIELD_DOCPOWER = 3,
125 private:
126 sal_uInt8 m_nType;
127 LwpObjectID m_objMarker;
128 OUString m_TimeStyle;
130 sal_uInt8 m_nSubType;//datetime/crossref/other
131 OUString m_sFormula;
133 sal_uInt8 m_nCrossRefType;
134 sal_uInt8 m_nDateTimeType;
135 sal_uInt8 m_nDocPowerType;
137 void RegisterTimeField(LwpFieldMark* pFieldMark);
138 void RegisterDateTimeStyle(OUString sFormula);
139 void RegisterTotalTimeStyle();
140 void CheckFieldType(LwpFieldMark* pFieldMark);
141 void ConvertDocFieldStart(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
142 void ConvertDocFieldEnd(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
143 void ConvertDateTimeStart(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
144 void ConvertDateTimeEnd(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
145 void ConvertCrossRefEnd(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
146 void ConvertCrossRefStart(XFContentContainer* pXFPara,LwpFieldMark* pFieldMark);
149 class LwpFribRubyMarker : public LwpFrib
151 public:
152 LwpFribRubyMarker( LwpPara* pPara );
153 ~LwpFribRubyMarker(){}
154 void Read(LwpObjectStream* pObjStrm, sal_uInt16 len);
155 LwpRubyMarker* GetMarker();
156 sal_uInt8 GetType(){return m_nType;}
157 enum{MARKER_START=1,MARKER_END,MARKER_NONE};
158 void XFConvert(XFContentContainer* pXFPara);
159 void RegisterStyle(LwpFoundry* pFoundry);
160 private:
161 sal_uInt8 m_nType;
162 LwpObjectID m_objMarker;
165 #endif
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */