xref: /aoo41x/main/sot/inc/sot/formats.hxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef _SOT_FORMATS_HXX
29*cdf0e10cSrcweir #define _SOT_FORMATS_HXX
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #ifdef _SOT_FORMATS_INCLUDE_SYSTEMFORMATS
32*cdf0e10cSrcweir 
33*cdf0e10cSrcweir #ifdef WNT
34*cdf0e10cSrcweir #ifdef _MSC_VER
35*cdf0e10cSrcweir #pragma warning(push, 1)
36*cdf0e10cSrcweir #pragma warning(disable: 4917)
37*cdf0e10cSrcweir #endif
38*cdf0e10cSrcweir #include <tools/prewin.h>
39*cdf0e10cSrcweir #include <shlobj.h>
40*cdf0e10cSrcweir #include <tools/postwin.h>
41*cdf0e10cSrcweir #ifdef _MSC_VER
42*cdf0e10cSrcweir #pragma warning(pop)
43*cdf0e10cSrcweir #endif
44*cdf0e10cSrcweir #endif
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir #endif
47*cdf0e10cSrcweir #include <sot/exchange.hxx>
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir #define SOT_FORMAT_SYSTEM_START					((sal_uLong)0)
50*cdf0e10cSrcweir #define SOT_FORMAT_STRING           			((sal_uLong)FORMAT_STRING)
51*cdf0e10cSrcweir #define SOT_FORMAT_BITMAP           			((sal_uLong)FORMAT_BITMAP)
52*cdf0e10cSrcweir #define SOT_FORMAT_GDIMETAFILE          		((sal_uLong)FORMAT_GDIMETAFILE)
53*cdf0e10cSrcweir #define SOT_FORMAT_PRIVATE              		((sal_uLong)FORMAT_PRIVATE)
54*cdf0e10cSrcweir #define SOT_FORMAT_FILE                 		((sal_uLong)FORMAT_FILE)
55*cdf0e10cSrcweir #define SOT_FORMAT_FILE_LIST            		((sal_uLong)FORMAT_FILE_LIST)
56*cdf0e10cSrcweir #define SOT_FORMAT_RTF                  		((sal_uLong)FORMAT_RTF)
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_DRAWING				((sal_uLong)11)
59*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SVXB					((sal_uLong)12)
60*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SVIM					((sal_uLong)13)
61*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_XFA					((sal_uLong)14)
62*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EDITENGINE				((sal_uLong)15)
63*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_INTERNALLINK_STATE   	((sal_uLong)16)
64*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SOLK 					((sal_uLong)17)
65*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_NETSCAPE_BOOKMARK		((sal_uLong)18)
66*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_TREELISTBOX			((sal_uLong)19)
67*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_NATIVE					((sal_uLong)20)
68*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_OWNERLINK				((sal_uLong)21)
69*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARSERVER				((sal_uLong)22)
70*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STAROBJECT				((sal_uLong)23)
71*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_APPLETOBJECT			((sal_uLong)24)
72*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_PLUGIN_OBJECT			((sal_uLong)25)
73*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITER_30			((sal_uLong)26)
74*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITER_40			((sal_uLong)27)
75*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITER_50			((sal_uLong)28)
76*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERWEB_40		((sal_uLong)29)
77*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERWEB_50		((sal_uLong)30)
78*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERGLOB_40		((sal_uLong)31)
79*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERGLOB_50		((sal_uLong)32)
80*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW				((sal_uLong)33)
81*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW_40			((sal_uLong)34)
82*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMPRESS_50			((sal_uLong)35)
83*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW_50			((sal_uLong)36)
84*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCALC				((sal_uLong)37)
85*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCALC_40			((sal_uLong)38)
86*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCALC_50			((sal_uLong)39)
87*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHART				((sal_uLong)40)
88*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHART_40			((sal_uLong)41)
89*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHART_50			((sal_uLong)42)
90*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMAGE				((sal_uLong)43)
91*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMAGE_40			((sal_uLong)44)
92*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMAGE_50			((sal_uLong)45)
93*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARMATH				((sal_uLong)46)
94*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARMATH_40			((sal_uLong)47)
95*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARMATH_50			((sal_uLong)48)
96*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STAROBJECT_PAINTDOC	((sal_uLong)49)
97*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_FILLED_AREA			((sal_uLong)50)
98*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_HTML					((sal_uLong)51)
99*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_HTML_SIMPLE			((sal_uLong)52)
100*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_CHAOS					((sal_uLong)53)
101*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_CNT_MSGATTACHFILE 		((sal_uLong)54)
102*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_BIFF_5					((sal_uLong)55)
103*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_BIFF__5 				((sal_uLong)56)
104*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SYLK					((sal_uLong)57)
105*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SYLK_BIGCAPS			((sal_uLong)58)
106*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_LINK					((sal_uLong)59)
107*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_DIF					((sal_uLong)60)
108*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW_TABBAR		((sal_uLong)61)
109*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SONLK					((sal_uLong)62)
110*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_MSWORD_DOC 			((sal_uLong)63)
111*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STAR_FRAMESET_DOC 		((sal_uLong)64)
112*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_OFFICE_DOC 			((sal_uLong)65)
113*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_NOTES_DOCINFO			((sal_uLong)66)
114*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_NOTES_HNOTE			((sal_uLong)67)
115*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_NOTES_NATIVE			((sal_uLong)68)
116*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SFX_DOC				((sal_uLong)69)
117*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EVDF					((sal_uLong)70)
118*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_ESDF					((sal_uLong)71)
119*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_IDF					((sal_uLong)72)
120*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EFTP					((sal_uLong)73)
121*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EFD					((sal_uLong)74)
122*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SVX_FORMFIELDEXCH		((sal_uLong)75)
123*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EXTENDED_TABBAR		((sal_uLong)76)
124*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_DATAEXCHANGE		((sal_uLong)77)
125*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_FIELDDATAEXCHANGE 	((sal_uLong)78)
126*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_PRIVATE_URL		((sal_uLong)79)
127*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_TABED				((sal_uLong)80)
128*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_TABID				((sal_uLong)81)
129*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_JOIN				((sal_uLong)82)
130*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_OBJECTDESCRIPTOR		((sal_uLong)83)
131*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_LINKSRCDESCRIPTOR		((sal_uLong)84)
132*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EMBED_SOURCE			((sal_uLong)85)
133*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_LINK_SOURCE			((sal_uLong)86)
134*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EMBEDDED_OBJ			((sal_uLong)87)
135*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_FILECONTENT			((sal_uLong)88)
136*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_FILEGRPDESCRIPTOR	   	((sal_uLong)89)
137*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_FILENAME				((sal_uLong)90)
138*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SD_OLE					((sal_uLong)91)
139*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EMBEDDED_OBJ_OLE		((sal_uLong)92)
140*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EMBED_SOURCE_OLE		((sal_uLong)93)
141*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_OBJECTDESCRIPTOR_OLE	((sal_uLong)94)
142*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_LINKSRCDESCRIPTOR_OLE	((sal_uLong)95)
143*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_LINK_SOURCE_OLE		((sal_uLong)96)
144*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_CTRLDATAEXCHANGE	((sal_uLong)97)
145*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_OUTPLACE_OBJ			((sal_uLong)98)
146*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_CNT_OWN_CLIP			((sal_uLong)99)
147*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_INET_IMAGE				((sal_uLong)100)
148*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_NETSCAPE_IMAGE			((sal_uLong)101)
149*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_FORMEXCHANGE		((sal_uLong)102)
150*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_SBA_REPORTEXCHANGE		((sal_uLong)103)
151*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_UNIFORMRESOURCELOCATOR ((sal_uLong)104)
152*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHARTDOCUMENT_50	((sal_uLong)105)
153*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_GRAPHOBJ				((sal_uLong)106)
154*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITER_60          ((sal_uLong)107)
155*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERWEB_60       ((sal_uLong)108)
156*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERGLOB_60      ((sal_uLong)109)
157*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW_60            ((sal_uLong)110)
158*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMPRESS_60         ((sal_uLong)111)
159*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCALC_60            ((sal_uLong)112)
160*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHART_60           ((sal_uLong)113)
161*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARMATH_60            ((sal_uLong)114)
162*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_WMF					((sal_uLong)115)
163*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_DBACCESS_QUERY         ((sal_uLong)116)
164*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_DBACCESS_TABLE         ((sal_uLong)117)
165*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_DBACCESS_COMMAND       ((sal_uLong)118)
166*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_DIALOG_60              ((sal_uLong)119)
167*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_EMF					((sal_uLong)120)
168*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_BIFF_8                 ((sal_uLong)121)
169*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_BMP                    ((sal_uLong)122)
170*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_HTML_NO_COMMENT        ((sal_uLong)123)
171*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITER_8           ((sal_uLong)124)
172*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERWEB_8        ((sal_uLong)125)
173*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITERGLOB_8       ((sal_uLong)126)
174*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW_8             ((sal_uLong)127)
175*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMPRESS_8          ((sal_uLong)128)
176*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCALC_8             ((sal_uLong)129)
177*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHART_8            ((sal_uLong)130)
178*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARMATH_8             ((sal_uLong)131)
179*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_XFORMS                 ((sal_uLong)132)
180*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARWRITER_8_TEMPLATE  ((sal_uLong)133)
181*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARDRAW_8_TEMPLATE    ((sal_uLong)134)
182*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARIMPRESS_8_TEMPLATE ((sal_uLong)135)
183*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCALC_8_TEMPLATE    ((sal_uLong)136)
184*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARCHART_8_TEMPLATE   ((sal_uLong)137)
185*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARMATH_8_TEMPLATE    ((sal_uLong)138)
186*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_STARBASE_8             ((sal_uLong)139)
187*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_HC_GDIMETAFILE         ((sal_uLong)140)
188*cdf0e10cSrcweir #define SOT_FORMATSTR_ID_USER_END               SOT_FORMATSTR_ID_HC_GDIMETAFILE
189*cdf0e10cSrcweir 
190*cdf0e10cSrcweir #endif // _SOT_FORMATS_HXX
191*cdf0e10cSrcweir 
192