nss: upgrade to release 3.73
[LibreOffice.git] / lotuswordpro / inc / xfilter / xfdocfield.hxx
blob6582a33dda261366730f0eaaf05f22b46b0fe358
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 * doc field.
59 ************************************************************************/
60 #ifndef INCLUDED_LOTUSWORDPRO_INC_XFILTER_XFDOCFIELD_HXX
61 #define INCLUDED_LOTUSWORDPRO_INC_XFILTER_XFDOCFIELD_HXX
63 #include <xfilter/xfcontent.hxx>
65 class XFFileName : public XFContent
67 public:
68 void SetType(const OUString& sType);
69 virtual void ToXml(IXFStream *pStrm) override;
70 private:
71 OUString m_strType;
73 class XFWordCount : public XFContent
75 public:
76 virtual void ToXml(IXFStream *pStrm) override;
78 class XFWordCountStart : public XFContent
80 public:
81 virtual void ToXml(IXFStream *pStrm) override;
84 class XFWordCountEnd : public XFContent
86 public:
87 virtual void ToXml(IXFStream *pStrm) override;
90 class XFPageCountStart : public XFContent
92 public:
93 virtual void ToXml(IXFStream *pStrm) override;
96 class XFPageCountEnd : public XFContent
98 public:
99 virtual void ToXml(IXFStream *pStrm) override;
102 class XFCharCount : public XFContent
104 public:
105 virtual void ToXml(IXFStream *pStrm) override;
107 class XFCharCountStart : public XFContent
109 public:
110 virtual void ToXml(IXFStream *pStrm) override;
113 class XFCharCountEnd : public XFContent
115 public:
116 virtual void ToXml(IXFStream *pStrm) override;
118 class XFDescription : public XFContent
120 public:
121 virtual void ToXml(IXFStream *pStrm) override;
123 class XFDescriptionStart : public XFContent
125 public:
126 virtual void ToXml(IXFStream *pStrm) override;
129 class XFDescriptionEnd : public XFContent
131 public:
132 virtual void ToXml(IXFStream *pStrm) override;
135 class XFKeywords : public XFContent
137 public:
138 virtual void ToXml(IXFStream *pStrm) override;
140 class XFTotalEditTime : public XFContent
142 public:
143 virtual void ToXml(IXFStream *pStrm) override;
145 class XFTotalEditTimeEnd : public XFContent
147 public:
148 virtual void ToXml(IXFStream *pStrm) override;
151 class XFTotalEditTimeStart : public XFContent
153 public:
154 virtual void ToXml(IXFStream *pStrm) override;
156 class XFCreateTime : public XFContent
158 public:
159 virtual void ToXml(IXFStream *pStrm) override;
161 class XFCreateTimeStart : public XFContent
163 public:
164 virtual void ToXml(IXFStream *pStrm) override;
167 class XFCreateTimeEnd : public XFContent
169 public:
170 virtual void ToXml(IXFStream *pStrm) override;
172 class XFLastEditTime : public XFContent
174 public:
175 virtual void ToXml(IXFStream *pStrm) override;
177 class XFLastEditTimeStart : public XFContent
179 public:
180 virtual void ToXml(IXFStream *pStrm) override;
183 class XFLastEditTimeEnd : public XFContent
185 public:
186 virtual void ToXml(IXFStream *pStrm) override;
189 class XFInitialCreator : public XFContent
191 public:
192 virtual void ToXml(IXFStream *pStrm) override;
195 #endif
197 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */