xref: /aoo41x/main/sot/source/base/exchange.cxx (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 // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_sot.hxx"
30*cdf0e10cSrcweir #define _SOT_EXCHANGE_CXX
31*cdf0e10cSrcweir #define SOT_STRING_LIST
32*cdf0e10cSrcweir #define _SOT_FORMATS_INCLUDE_SYSTEMFORMATS
33*cdf0e10cSrcweir #include <tools/debug.hxx>
34*cdf0e10cSrcweir #include <tools/solar.h>
35*cdf0e10cSrcweir #include <tools/globname.hxx>
36*cdf0e10cSrcweir #include <tools/string.hxx>
37*cdf0e10cSrcweir #include <sot/sotdata.hxx>
38*cdf0e10cSrcweir #include <sot/exchange.hxx>
39*cdf0e10cSrcweir #include <sot/formats.hxx>
40*cdf0e10cSrcweir #include <sot/clsids.hxx>
41*cdf0e10cSrcweir #include <rtl/instance.hxx>
42*cdf0e10cSrcweir #include <com/sun/star/uno/Sequence.hxx>
43*cdf0e10cSrcweir #include <com/sun/star/datatransfer/DataFlavor.hpp>
44*cdf0e10cSrcweir #include <comphelper/documentconstants.hxx>
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir using namespace::com::sun::star::uno;
47*cdf0e10cSrcweir using namespace::com::sun::star::datatransfer;
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir /*
50*cdf0e10cSrcweir 	In diesen Tabellen stehen alle im Office verwendeten MimeTypes,
51*cdf0e10cSrcweir 	Format-Bezeichner und Types.
52*cdf0e10cSrcweir 	Die Tabelle ist nach den Formatstring-Ids sortiert und jede Id
53*cdf0e10cSrcweir 	ist um genau 1 groesser als ihre Vorgaenger-Id, damit die Id als
54*cdf0e10cSrcweir 	Tabellenindex benutzt werden kann.
55*cdf0e10cSrcweir */
56*cdf0e10cSrcweir struct DataFlavorRepresentation
57*cdf0e10cSrcweir {
58*cdf0e10cSrcweir 	const char*							pMimeType;
59*cdf0e10cSrcweir 	const char*							pName;
60*cdf0e10cSrcweir 	const ::com::sun::star::uno::Type*	pType;
61*cdf0e10cSrcweir };
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir // -----------------------------------------------------------------------------
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir namespace
66*cdf0e10cSrcweir {
67*cdf0e10cSrcweir     struct ImplFormatArray_Impl
68*cdf0e10cSrcweir     {
69*cdf0e10cSrcweir         const DataFlavorRepresentation* operator()()
70*cdf0e10cSrcweir         {
71*cdf0e10cSrcweir             static const DataFlavorRepresentation aInstance[] =
72*cdf0e10cSrcweir             {
73*cdf0e10cSrcweir             /*  0 SOT_FORMAT_SYSTEM_START*/					{ "", "", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
74*cdf0e10cSrcweir             /*  1 SOT_FORMAT_STRING*/						{ "text/plain;charset=utf-16", "Text", &::getCppuType( (const ::rtl::OUString*) 0 ) },
75*cdf0e10cSrcweir             /*  2 SOT_FORMAT_BITMAP*/						{ "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"", "Bitmap", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
76*cdf0e10cSrcweir             /*  3 SOT_FORMAT_GDIMETAFILE*/					{ "application/x-openoffice-gdimetafile;windows_formatname=\"GDIMetaFile\"", "GDIMetaFile", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
77*cdf0e10cSrcweir             /*  4 SOT_FORMAT_PRIVATE*/						{ "application/x-openoffice-private;windows_formatname=\"Private\"", "Private", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
78*cdf0e10cSrcweir             /*  5 SOT_FORMAT_FILE*/							{ "application/x-openoffice-file;windows_formatname=\"FileName\"", "FileName", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
79*cdf0e10cSrcweir             /*  6 SOT_FORMAT_FILE_LIST*/					{ "application/x-openoffice-filelist;windows_formatname=\"FileList\"", "FileList", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
80*cdf0e10cSrcweir             /*  7 EMPTY*/									{ "", "", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
81*cdf0e10cSrcweir             /*  8 EMPTY*/									{ "", "", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
82*cdf0e10cSrcweir             /*  9 EMPTY*/									{ "", "", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
83*cdf0e10cSrcweir             /* 10 SOT_FORMAT_RTF*/							{ "text/richtext", "Rich Text Format", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
84*cdf0e10cSrcweir             /* 11 SOT_FORMATSTR_ID_DRAWING*/				{ "application/x-openoffice-drawing;windows_formatname=\"Drawing Format\"", "Drawing Format", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
85*cdf0e10cSrcweir             /* 12 SOT_FORMATSTR_ID_SVXB*/					{ "application/x-openoffice-svxb;windows_formatname=\"SVXB (StarView Bitmap/Animation)\"", "SVXB (StarView Bitmap/Animation)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
86*cdf0e10cSrcweir             /* 13 SOT_FORMATSTR_ID_SVIM*/					{ "application/x-openoffice-svim;windows_formatname=\"SVIM (StarView ImageMap)\"", "SVIM (StarView ImageMap)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
87*cdf0e10cSrcweir             /* 14 SOT_FORMATSTR_ID_XFA*/					{ "application/x-openoffice-xfa;windows_formatname=\"XFA (XOutDev FillAttr)\"", "XFA (XOutDev FillAttr)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
88*cdf0e10cSrcweir             /* 15 SOT_FORMATSTR_ID_EDITENGINE*/				{ "application/x-openoffice-editengine;windows_formatname=\"EditEngineFormat\"", "EditEngineFormat", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
89*cdf0e10cSrcweir             /* 16 SOT_FORMATSTR_ID_INTERNALLINK_STATE*/		{ "application/x-openoffice-internallink-state;windows_formatname=\"StatusInfo vom SvxInternalLink\"", "StatusInfo vom SvxInternalLink", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
90*cdf0e10cSrcweir             /* 17 SOT_FORMATSTR_ID_SOLK*/					{ "application/x-openoffice-solk;windows_formatname=\"SOLK (StarOffice Link)\"", "SOLK (StarOffice Link)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
91*cdf0e10cSrcweir             /* 18 SOT_FORMATSTR_ID_NETSCAPE_BOOKMARK*/		{ "application/x-openoffice-netscape-bookmark;windows_formatname=\"Netscape Bookmark\"", "Netscape Bookmark", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
92*cdf0e10cSrcweir             /* 19 SOT_FORMATSTR_ID_TREELISTBOX*/			{ "application/x-openoffice-treelistbox;windows_formatname=\"SV_LBOX_DD_FORMAT\"", "SV_LBOX_DD_FORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
93*cdf0e10cSrcweir             /* 20 SOT_FORMATSTR_ID_NATIVE*/					{ "application/x-openoffice-native;windows_formatname=\"Native\"", "Native", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
94*cdf0e10cSrcweir             /* 21 SOT_FORMATSTR_ID_OWNERLINK*/				{ "application/x-openoffice-ownerlink;windows_formatname=\"OwnerLink\"", "OwnerLink", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
95*cdf0e10cSrcweir             /* 22 SOT_FORMATSTR_ID_STARSERVER*/				{ "application/x-openoffice-starserver;windows_formatname=\"StarServerFormat\"", "StarServerFormat", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
96*cdf0e10cSrcweir             /* 23 SOT_FORMATSTR_ID_STAROBJECT*/				{ "application/x-openoffice-starobject;windows_formatname=\"StarObjectFormat\"", "StarObjectFormat", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
97*cdf0e10cSrcweir             /* 24 SOT_FORMATSTR_ID_APPLETOBJECT*/			{ "application/x-openoffice-appletobject;windows_formatname=\"Applet Object\"", "Applet Object", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
98*cdf0e10cSrcweir             /* 25 SOT_FORMATSTR_ID_PLUGIN_OBJECT*/			{ "application/x-openoffice-plugin-object;windows_formatname=\"PlugIn Object\"", "PlugIn Object", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
99*cdf0e10cSrcweir             /* 26 SOT_FORMATSTR_ID_STARWRITER_30*/			{ "application/x-openoffice-starwriter-30;windows_formatname=\"StarWriter 3.0\"", "StarWriter 3.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
100*cdf0e10cSrcweir             /* 27 SOT_FORMATSTR_ID_STARWRITER_40*/			{ "application/x-openoffice-starwriter-40;windows_formatname=\"StarWriter 4.0\"", "StarWriter 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
101*cdf0e10cSrcweir             /* 28 SOT_FORMATSTR_ID_STARWRITER_50*/			{ "application/x-openoffice-starwriter-50;windows_formatname=\"StarWriter 5.0\"", "StarWriter 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
102*cdf0e10cSrcweir             /* 29 SOT_FORMATSTR_ID_STARWRITERWEB_40*/		{ "application/x-openoffice-starwriterweb-40;windows_formatname=\"StarWriter/Web 4.0\"", "StarWriter/Web 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
103*cdf0e10cSrcweir             /* 30 SOT_FORMATSTR_ID_STARWRITERWEB_50*/		{ "application/x-openoffice-starwriterweb-50;windows_formatname=\"StarWriter/Web 5.0\"", "StarWriter/Web 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
104*cdf0e10cSrcweir             /* 31 SOT_FORMATSTR_ID_STARWRITERGLOB_40*/		{ "application/x-openoffice-starwriterglob-40;windows_formatname=\"StarWriter/Global 4.0\"", "StarWriter/Global 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
105*cdf0e10cSrcweir             /* 32 SOT_FORMATSTR_ID_STARWRITERGLOB_50*/		{ "application/x-openoffice-starwriterglob-50;windows_formatname=\"StarWriter/Global 5.0\"", "StarWriter/Global 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
106*cdf0e10cSrcweir             /* 33 SOT_FORMATSTR_ID_STARDRAW*/				{ "application/x-openoffice-stardraw;windows_formatname=\"StarDrawDocument\"", "StarDrawDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
107*cdf0e10cSrcweir             /* 34 SOT_FORMATSTR_ID_STARDRAW_40*/			{ "application/x-openoffice-stardraw-40;windows_formatname=\"StarDrawDocument 4.0\"", "StarDrawDocument 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
108*cdf0e10cSrcweir             /* 35 SOT_FORMATSTR_ID_STARIMPRESS_50*/			{ "application/x-openoffice-starimpress-50;windows_formatname=\"StarImpress 5.0\"", "StarImpress 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
109*cdf0e10cSrcweir             /* 36 SOT_FORMATSTR_ID_STARDRAW_50*/			{ "application/x-openoffice-stardraw-50;windows_formatname=\"StarDraw 5.0\"", "StarDraw 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
110*cdf0e10cSrcweir             /* 37 SOT_FORMATSTR_ID_STARCALC*/				{ "application/x-openoffice-starcalc;windows_formatname=\"StarCalcDocument\"", "StarCalcDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
111*cdf0e10cSrcweir             /* 38 SOT_FORMATSTR_ID_STARCALC_40*/			{ "application/x-openoffice-starcalc-40;windows_formatname=\"StarCalc 4.0\"", "StarCalc 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
112*cdf0e10cSrcweir             /* 39 SOT_FORMATSTR_ID_STARCALC_50*/			{ "application/x-openoffice-starcalc-50;windows_formatname=\"StarCalc 5.0\"", "StarCalc 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
113*cdf0e10cSrcweir             /* 40 SOT_FORMATSTR_ID_STARCHART*/				{ "application/x-openoffice-starchart;windows_formatname=\"StarChartDocument\"", "StarChartDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
114*cdf0e10cSrcweir             /* 41 SOT_FORMATSTR_ID_STARCHART_40*/			{ "application/x-openoffice-starchart-40;windows_formatname=\"StarChartDocument 4.0\"", "StarChartDocument 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
115*cdf0e10cSrcweir             /* 42 SOT_FORMATSTR_ID_STARCHART_50*/			{ "application/x-openoffice-starchart-50;windows_formatname=\"StarChart 5.0\"", "StarChart 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
116*cdf0e10cSrcweir             /* 43 SOT_FORMATSTR_ID_STARIMAGE*/				{ "application/x-openoffice-starimage;windows_formatname=\"StarImageDocument\"", "StarImageDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
117*cdf0e10cSrcweir             /* 44 SOT_FORMATSTR_ID_STARIMAGE_40*/			{ "application/x-openoffice-starimage-40;windows_formatname=\"StarImageDocument 4.0\"", "StarImageDocument 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
118*cdf0e10cSrcweir             /* 45 SOT_FORMATSTR_ID_STARIMAGE_50*/			{ "application/x-openoffice-starimage-50;windows_formatname=\"StarImage 5.0\"", "StarImage 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
119*cdf0e10cSrcweir             /* 46 SOT_FORMATSTR_ID_STARMATH*/				{ "application/x-openoffice-starmath;windows_formatname=\"StarMath\"", "StarMath", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
120*cdf0e10cSrcweir             /* 47 SOT_FORMATSTR_ID_STARMATH_40*/			{ "application/x-openoffice-starmath-40;windows_formatname=\"StarMathDocument 4.0\"", "StarMathDocument 4.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
121*cdf0e10cSrcweir             /* 48 SOT_FORMATSTR_ID_STARMATH_50*/			{ "application/x-openoffice-starmath-50;windows_formatname=\"StarMath 5.0\"", "StarMath 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
122*cdf0e10cSrcweir             /* 49 SOT_FORMATSTR_ID_STAROBJECT_PAINTDOC*/	{ "application/x-openoffice-starobject-paintdoc;windows_formatname=\"StarObjectPaintDocument\"", "StarObjectPaintDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
123*cdf0e10cSrcweir             /* 50 SOT_FORMATSTR_ID_FILLED_AREA*/			{ "application/x-openoffice-filled-area;windows_formatname=\"FilledArea\"", "FilledArea", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
124*cdf0e10cSrcweir             /* 51 SOT_FORMATSTR_ID_HTML*/					{ "text/html", "HTML (HyperText Markup Language)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
125*cdf0e10cSrcweir             /* 52 SOT_FORMATSTR_ID_HTML_SIMPLE*/			{ "application/x-openoffice-html-simple;windows_formatname=\"HTML Format\"", "HTML Format", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
126*cdf0e10cSrcweir             /* 53 SOT_FORMATSTR_ID_CHAOS*/					{ "application/x-openoffice-chaos;windows_formatname=\"FORMAT_CHAOS\"", "FORMAT_CHAOS", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
127*cdf0e10cSrcweir             /* 54 SOT_FORMATSTR_ID_CNT_MSGATTACHFILE*/		{ "application/x-openoffice-cnt-msgattachfile;windows_formatname=\"CNT_MSGATTACHFILE_FORMAT\"", "CNT_MSGATTACHFILE_FORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
128*cdf0e10cSrcweir             /* 55 SOT_FORMATSTR_ID_BIFF_5*/					{ "application/x-openoffice-biff5;windows_formatname=\"Biff5\"", "Biff5", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
129*cdf0e10cSrcweir             /* 56 SOT_FORMATSTR_ID_BIFF__5*/				{ "application/x-openoffice-biff-5;windows_formatname=\"Biff 5\"", "Biff 5", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
130*cdf0e10cSrcweir             /* 57 SOT_FORMATSTR_ID_SYLK*/					{ "application/x-openoffice-sylk;windows_formatname=\"Sylk\"", "Sylk", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
131*cdf0e10cSrcweir             /* 58 SOT_FORMATSTR_ID_SYLK_BIGCAPS*/			{ "application/x-openoffice-sylk-bigcaps;windows_formatname=\"SYLK\"", "SYLK", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
132*cdf0e10cSrcweir             /* 59 SOT_FORMATSTR_ID_LINK*/					{ "application/x-openoffice-link;windows_formatname=\"Link\"", "Link", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
133*cdf0e10cSrcweir             /* 60 SOT_FORMATSTR_ID_DIF*/					{ "application/x-openoffice-dif;windows_formatname=\"DIF\"", "DIF", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
134*cdf0e10cSrcweir             /* 61 SOT_FORMATSTR_ID_STARDRAW_TABBAR*/		{ "application/x-openoffice-stardraw-tabbar;windows_formatname=\"StarDraw TabBar\"", "StarDraw TabBar", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
135*cdf0e10cSrcweir             /* 62 SOT_FORMATSTR_ID_SONLK*/					{ "application/x-openoffice-sonlk;windows_formatname=\"SONLK (StarOffice Navi Link)\"", "SONLK (StarOffice Navi Link)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
136*cdf0e10cSrcweir             /* 63 SOT_FORMATSTR_ID_MSWORD_DOC*/				{ "application/msword", "MSWordDoc", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
137*cdf0e10cSrcweir             /* 64 SOT_FORMATSTR_ID_STAR_FRAMESET_DOC*/		{ "application/x-openoffice-star-frameset-doc;windows_formatname=\"StarFrameSetDocument\"", "StarFrameSetDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
138*cdf0e10cSrcweir             /* 65 SOT_FORMATSTR_ID_OFFICE_DOC*/				{ "application/x-openoffice-office-doc;windows_formatname=\"OfficeDocument\"", "OfficeDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
139*cdf0e10cSrcweir             /* 66 SOT_FORMATSTR_ID_NOTES_DOCINFO*/			{ "application/x-openoffice-notes-docinfo;windows_formatname=\"NotesDocInfo\"", "NotesDocInfo", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
140*cdf0e10cSrcweir             /* 67 SOT_FORMATSTR_ID_NOTES_HNOTE*/			{ "application/x-openoffice-notes-hnote;windows_formatname=\"NoteshNote\"", "NoteshNote", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
141*cdf0e10cSrcweir             /* 68 SOT_FORMATSTR_ID_NOTES_NATIVE*/			{ "application/x-openoffice-notes-native;windows_formatname=\"Native\"", "Native", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
142*cdf0e10cSrcweir             /* 69 SOT_FORMATSTR_ID_SFX_DOC*/				{ "application/x-openoffice-sfx-doc;windows_formatname=\"SfxDocument\"", "SfxDocument", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
143*cdf0e10cSrcweir             /* 70 SOT_FORMATSTR_ID_EVDF*/					{ "application/x-openoffice-evdf;windows_formatname=\"EVDF (Explorer View Dummy Format)\"", "EVDF (Explorer View Dummy Format)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
144*cdf0e10cSrcweir             /* 71 SOT_FORMATSTR_ID_ESDF*/					{ "application/x-openoffice-esdf;windows_formatname=\"ESDF (Explorer Search Dummy Format)\"", "ESDF (Explorer Search Dummy Format)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
145*cdf0e10cSrcweir             /* 72 SOT_FORMATSTR_ID_IDF*/					{ "application/x-openoffice-idf;windows_formatname=\"IDF (Iconview Dummy Format)\"", "IDF (Iconview Dummy Format)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
146*cdf0e10cSrcweir             /* 73 SOT_FORMATSTR_ID_EFTP*/					{ "application/x-openoffice-eftp;windows_formatname=\"EFTP (Explorer Ftp File)\"", "EFTP (Explorer Ftp File)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
147*cdf0e10cSrcweir             /* 74 SOT_FORMATSTR_ID_EFD*/					{ "application/x-openoffice-efd;windows_formatname=\"EFD (Explorer Ftp Dir)\"", "EFD (Explorer Ftp Dir)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
148*cdf0e10cSrcweir             /* 75 SOT_FORMATSTR_ID_SVX_FORMFIELDEXCH*/		{ "application/x-openoffice-svx-formfieldexch;windows_formatname=\"SvxFormFieldExch\"", "SvxFormFieldExch", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
149*cdf0e10cSrcweir             /* 76 SOT_FORMATSTR_ID_EXTENDED_TABBAR*/		{ "application/x-openoffice-extended-tabbar;windows_formatname=\"ExtendedTabBar\"", "ExtendedTabBar", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
150*cdf0e10cSrcweir             /* 77 SOT_FORMATSTR_ID_SBA_DATAEXCHANGE*/		{ "application/x-openoffice-sba-dataexchange;windows_formatname=\"SBA-DATAFORMAT\"", "SBA-DATAFORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
151*cdf0e10cSrcweir             /* 78 SOT_FORMATSTR_ID_SBA_FIELDDATAEXCHANGE*/	{ "application/x-openoffice-sba-fielddataexchange;windows_formatname=\"SBA-FIELDFORMAT\"", "SBA-FIELDFORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
152*cdf0e10cSrcweir             /* 79 SOT_FORMATSTR_ID_SBA_PRIVATE_URL*/		{ "application/x-openoffice-sba-private-url;windows_formatname=\"SBA-PRIVATEURLFORMAT\"", "SBA-PRIVATEURLFORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
153*cdf0e10cSrcweir             /* 80 SOT_FORMATSTR_ID_SBA_TABED*/				{ "application/x-openofficesba-tabed;windows_formatname=\"Tabed\"", "Tabed", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
154*cdf0e10cSrcweir             /* 81 SOT_FORMATSTR_ID_SBA_TABID*/				{ "application/x-openoffice-sba-tabid;windows_formatname=\"Tabid\"", "Tabid", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
155*cdf0e10cSrcweir             /* 82 SOT_FORMATSTR_ID_SBA_JOIN*/				{ "application/x-openoffice-sba-join;windows_formatname=\"SBA-JOINFORMAT\"", "SBA-JOINFORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
156*cdf0e10cSrcweir             /* 83 SOT_FORMATSTR_ID_OBJECTDESCRIPTOR*/		{ "application/x-openoffice-objectdescriptor-xml;windows_formatname=\"Star Object Descriptor (XML)\"", "Star Object Descriptor (XML)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
157*cdf0e10cSrcweir             /* 84 SOT_FORMATSTR_ID_LINKSRCDESCRIPTOR*/		{ "application/x-openoffice-linksrcdescriptor-xml;windows_formatname=\"Star Link Source Descriptor (XML)\"", "Star Link Source Descriptor (XML)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
158*cdf0e10cSrcweir             /* 85 SOT_FORMATSTR_ID_EMBED_SOURCE*/			{ "application/x-openoffice-embed-source-xml;windows_formatname=\"Star Embed Source (XML)\"", "Star Embed Source (XML)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
159*cdf0e10cSrcweir             /* 86 SOT_FORMATSTR_ID_LINK_SOURCE*/			{ "application/x-openoffice-link-source-xml;windows_formatname=\"Star Link Source (XML)\"", "Star Link Source (XML)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
160*cdf0e10cSrcweir             /* 87 SOT_FORMATSTR_ID_EMBEDDED_OBJ*/			{ "application/x-openoffice-embedded-obj-xml;windows_formatname=\"Star Embedded Object (XML)\"", "Star Embedded Object (XML)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
161*cdf0e10cSrcweir             /* 88 SOT_FORMATSTR_ID_FILECONTENT*/			{ "application/x-openoffice-filecontent;windows_formatname=\"FileContents\"", "FileContents", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
162*cdf0e10cSrcweir             /* 89 SOT_FORMATSTR_ID_FILEGRPDESCRIPTOR*/		{ "application/x-openoffice-filegrpdescriptor;windows_formatname=\"FileGroupDescriptor\"", "FileGroupDescriptor", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
163*cdf0e10cSrcweir             /* 90 SOT_FORMATSTR_ID_FILENAME*/				{ "application/x-openoffice-filename;windows_formatname=\"FileName\"", "FileName", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
164*cdf0e10cSrcweir             /* 91 SOT_FORMATSTR_ID_SD_OLE*/					{ "application/x-openoffice-sd-ole;windows_formatname=\"SD-OLE\"", "SD-OLE", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
165*cdf0e10cSrcweir             /* 92 SOT_FORMATSTR_ID_EMBEDDED_OBJ_OLE*/		{ "application/x-openoffice-embedded-obj-ole;windows_formatname=\"Embedded Object\"", "Embedded Object", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
166*cdf0e10cSrcweir             /* 93 SOT_FORMATSTR_ID_EMBED_SOURCE_OLE*/		{ "application/x-openoffice-embed-source-ole;windows_formatname=\"Embed Source\"", "Embed Source", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
167*cdf0e10cSrcweir             /* 94 SOT_FORMATSTR_ID_OBJECTDESCRIPTOR_OLE*/	{ "application/x-openoffice-objectdescriptor-ole;windows_formatname=\"Object Descriptor\"", "Object Descriptor", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
168*cdf0e10cSrcweir             /* 95 SOT_FORMATSTR_ID_LINKSRCDESCRIPTOR_OLE*/	{ "application/x-openoffice-linkdescriptor-ole;windows_formatname=\"Link Source Descriptor\"", "Link Source Descriptor", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
169*cdf0e10cSrcweir             /* 96 SOT_FORMATSTR_ID_LINK_SOURCE_OLE*/		{ "application/x-openoffice-link-source-ole;windows_formatname=\"Link Source\"", "Link Source", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
170*cdf0e10cSrcweir             /* 97 SOT_FORMATSTR_ID_SBA_CTRLDATAEXCHANGE*/	{ "application/x-openoffice-sba-ctrldataexchange;windows_formatname=\"SBA-CTRLFORMAT\"", "SBA-CTRLFORMAT", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
171*cdf0e10cSrcweir             /* 98 SOT_FORMATSTR_ID_OUTPLACE_OBJ*/			{ "application/x-openoffice-outplace-obj;windows_formatname=\"OutPlace Object\"", "OutPlace Object", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
172*cdf0e10cSrcweir             /* 99 SOT_FORMATSTR_ID_CNT_OWN_CLIP*/			{ "application/x-openoffice-cnt-own-clip;windows_formatname=\"CntOwnClipboard\"", "CntOwnClipboard", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
173*cdf0e10cSrcweir             /*100 SOT_FORMATSTR_ID_INET_IMAGE*/				{ "application/x-openoffice-inet-image;windows_formatname=\"SO-INet-Image\"", "SO-INet-Image", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
174*cdf0e10cSrcweir             /*101 SOT_FORMATSTR_ID_NETSCAPE_IMAGE*/			{ "application/x-openoffice-netscape-image;windows_formatname=\"Netscape Image Format\"", "Netscape Image Format", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
175*cdf0e10cSrcweir             /*102 SOT_FORMATSTR_ID_SBA_FORMEXCHANGE*/		{ "application/x-openoffice-sba-formexchange;windows_formatname=\"SBA_FORMEXCHANGE\"", "SBA_FORMEXCHANGE", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
176*cdf0e10cSrcweir             /*103 SOT_FORMATSTR_ID_SBA_REPORTEXCHANGE*/		{ "application/x-openoffice-sba-reportexchange;windows_formatname=\"SBA_REPORTEXCHANGE\"", "SBA_REPORTEXCHANGE", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
177*cdf0e10cSrcweir             /*104 SOT_FORMATSTR_ID_UNIFORMRESOURCELOCATOR*/	{ "application/x-openoffice-uniformresourcelocator;windows_formatname=\"UniformResourceLocator\"", "UniformResourceLocator", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
178*cdf0e10cSrcweir             /*105 SOT_FORMATSTR_ID_STARCHARTDOCUMENT_50*/	{ "application/x-openoffice-starchartdocument-50;windows_formatname=\"StarChartDocument 5.0\"", "StarChartDocument 5.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
179*cdf0e10cSrcweir             /*106 SOT_FORMATSTR_ID_GRAPHOBJ*/				{ "application/x-openoffice-graphobj;windows_formatname=\"Graphic Object\"", "Graphic Object", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
180*cdf0e10cSrcweir             /*107 SOT_FORMATSTR_ID_STARWRITER_60*/          { MIMETYPE_VND_SUN_XML_WRITER_ASCII, "Writer 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
181*cdf0e10cSrcweir             /*108 SOT_FORMATSTR_ID_STARWRITERWEB_60*/       { MIMETYPE_VND_SUN_XML_WRITER_WEB_ASCII, "Writer/Web 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
182*cdf0e10cSrcweir             /*109 SOT_FORMATSTR_ID_STARWRITERGLOB_60*/      { MIMETYPE_VND_SUN_XML_WRITER_GLOBAL_ASCII, "Writer/Global 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
183*cdf0e10cSrcweir             /*110 SOT_FORMATSTR_ID_STARWDRAW_60*/           { MIMETYPE_VND_SUN_XML_DRAW_ASCII, "Draw 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
184*cdf0e10cSrcweir             /*111 SOT_FORMATSTR_ID_STARIMPRESS_60*/         { MIMETYPE_VND_SUN_XML_IMPRESS_ASCII, "Impress 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
185*cdf0e10cSrcweir             /*112 SOT_FORMATSTR_ID_STARCALC_60*/            { MIMETYPE_VND_SUN_XML_CALC_ASCII, "Calc 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
186*cdf0e10cSrcweir             /*113 SOT_FORMATSTR_ID_STARCHART_60*/           { MIMETYPE_VND_SUN_XML_CHART_ASCII, "Chart 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
187*cdf0e10cSrcweir             /*114 SOT_FORMATSTR_ID_STARMATH_60*/            { MIMETYPE_VND_SUN_XML_MATH_ASCII, "Math 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
188*cdf0e10cSrcweir             /*115 SOT_FORMATSTR_ID_WMF*/					{ "application/x-openoffice-wmf;windows_formatname=\"Image WMF\"", "Windows MetaFile", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
189*cdf0e10cSrcweir             /*116 SOT_FORMATSTR_ID_DBACCESS_QUERY*/         { "application/x-openoffice-dbaccess-query;windows_formatname=\"Data source Query Object\"", "Data source Query Object", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
190*cdf0e10cSrcweir             /*117 SOT_FORMATSTR_ID_DBACCESS_TABLE*/         { "application/x-openoffice-dbaccess-table;windows_formatname=\"Data source Table\"", "Data source Table", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
191*cdf0e10cSrcweir             /*118 SOT_FORMATSTR_ID_DBACCESS_COMMAND*/       { "application/x-openoffice-dbaccess-command;windows_formatname=\"SQL query\"", "SQL query", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
192*cdf0e10cSrcweir             /*119 SOT_FORMATSTR_ID_DIALOG_60*/              { "application/vnd.sun.xml.dialog", "Dialog 6.0", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
193*cdf0e10cSrcweir             /*120 SOT_FORMATSTR_ID_EMF*/					{ "application/x-openoffice-emf;windows_formatname=\"Image EMF\"", "Windows Enhanced MetaFile", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
194*cdf0e10cSrcweir             /*121 SOT_FORMATSTR_ID_BIFF_8*/                 { "application/x-openoffice-biff-8;windows_formatname=\"Biff8\"", "Biff8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
195*cdf0e10cSrcweir             /*122 SOT_FORMATSTR_ID_BMP*/                    { "image/bmp", "Windows Bitmap", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
196*cdf0e10cSrcweir             /*123 SOT_FORMATSTR_ID_HTML_NO_COMMENT */       { "application/x-openoffice-html-no-comment;windows_formatname=\"HTML Format\"", "HTML (no comment)", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
197*cdf0e10cSrcweir             /*124 SOT_FORMATSTR_ID_STARWRITER_8*/          { MIMETYPE_OASIS_OPENDOCUMENT_TEXT_ASCII, "Writer 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
198*cdf0e10cSrcweir             /*125 SOT_FORMATSTR_ID_STARWRITERWEB_8*/       { MIMETYPE_OASIS_OPENDOCUMENT_TEXT_WEB_ASCII, "Writer/Web 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
199*cdf0e10cSrcweir             /*126 SOT_FORMATSTR_ID_STARWRITERGLOB_8*/      { MIMETYPE_OASIS_OPENDOCUMENT_TEXT_GLOBAL_ASCII, "Writer/Global 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
200*cdf0e10cSrcweir             /*127 SOT_FORMATSTR_ID_STARWDRAW_8*/           { MIMETYPE_OASIS_OPENDOCUMENT_DRAWING_ASCII, "Draw 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
201*cdf0e10cSrcweir             /*128 SOT_FORMATSTR_ID_STARIMPRESS_8*/         { MIMETYPE_OASIS_OPENDOCUMENT_PRESENTATION_ASCII, "Impress 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
202*cdf0e10cSrcweir             /*129 SOT_FORMATSTR_ID_STARCALC_8*/            { MIMETYPE_OASIS_OPENDOCUMENT_SPREADSHEET_ASCII, "Calc 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
203*cdf0e10cSrcweir             /*130 SOT_FORMATSTR_ID_STARCHART_8*/           { MIMETYPE_OASIS_OPENDOCUMENT_CHART_ASCII, "Chart 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
204*cdf0e10cSrcweir             /*131 SOT_FORMATSTR_ID_STARMATH_8*/            { MIMETYPE_OASIS_OPENDOCUMENT_FORMULA_ASCII, "Math 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
205*cdf0e10cSrcweir             /*132 SOT_FORMATSTR_ID_XFORMS */               { "application/x-openoffice-xforms;windows_formatname=\"??? Format\"", "???", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
206*cdf0e10cSrcweir             /*133 SOT_FORMATSTR_ID_STARWRITER_8_TEMPLATE*/          { MIMETYPE_OASIS_OPENDOCUMENT_TEXT_TEMPLATE_ASCII, "Writer 8 Template", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
207*cdf0e10cSrcweir             /*134 SOT_FORMATSTR_ID_STARWDRAW_8_TEMPLATE*/           { MIMETYPE_OASIS_OPENDOCUMENT_DRAWING_TEMPLATE_ASCII, "Draw 8 Template", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
208*cdf0e10cSrcweir             /*135 SOT_FORMATSTR_ID_STARIMPRESS_8_TEMPLATE*/         { MIMETYPE_OASIS_OPENDOCUMENT_PRESENTATION_TEMPLATE_ASCII, "Impress 8 Template", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
209*cdf0e10cSrcweir             /*136 SOT_FORMATSTR_ID_STARCALC_8_TEMPLATE*/            { MIMETYPE_OASIS_OPENDOCUMENT_SPREADSHEET_TEMPLATE_ASCII, "Calc 8 Template", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
210*cdf0e10cSrcweir             /*137 SOT_FORMATSTR_ID_STARCHART_8_TEMPLATE*/           { MIMETYPE_OASIS_OPENDOCUMENT_CHART_TEMPLATE_ASCII, "Chart 8 Template", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
211*cdf0e10cSrcweir             /*138 SOT_FORMATSTR_ID_STARMATH_8_TEMPLATE*/            { MIMETYPE_OASIS_OPENDOCUMENT_FORMULA_TEMPLATE_ASCII, "Math 8 Template", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
212*cdf0e10cSrcweir             /*139 SOT_FORMATSTR_ID_STARBASE_8*/            { MIMETYPE_OASIS_OPENDOCUMENT_DATABASE_ASCII, "StarBase 8", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
213*cdf0e10cSrcweir             /*140 SOT_FORMAT_GDIMETAFILE*/					{ "application/x-openoffice-highcontrast-gdimetafile;windows_formatname=\"GDIMetaFile\"", "High Contrast GDIMetaFile", &::getCppuType( (const Sequence< sal_Int8 >*) 0 ) },
214*cdf0e10cSrcweir             };
215*cdf0e10cSrcweir 	    return &aInstance[0];
216*cdf0e10cSrcweir         }
217*cdf0e10cSrcweir     };
218*cdf0e10cSrcweir 
219*cdf0e10cSrcweir     struct FormatArray_Impl
220*cdf0e10cSrcweir         : public rtl::StaticAggregate<
221*cdf0e10cSrcweir             const DataFlavorRepresentation, ImplFormatArray_Impl > {};
222*cdf0e10cSrcweir }
223*cdf0e10cSrcweir 
224*cdf0e10cSrcweir //-----------------------------------------------------------------------
225*cdf0e10cSrcweir 
226*cdf0e10cSrcweir static List& InitFormats_Impl()
227*cdf0e10cSrcweir {
228*cdf0e10cSrcweir 	SotData_Impl * pSotData = SOTDATA();
229*cdf0e10cSrcweir 	if( !pSotData->pDataFlavorList )
230*cdf0e10cSrcweir 		pSotData->pDataFlavorList = new List();
231*cdf0e10cSrcweir 	return *pSotData->pDataFlavorList;
232*cdf0e10cSrcweir }
233*cdf0e10cSrcweir 
234*cdf0e10cSrcweir /*************************************************************************
235*cdf0e10cSrcweir |*
236*cdf0e10cSrcweir |*    SotExchange::RegisterFormatName()
237*cdf0e10cSrcweir |*
238*cdf0e10cSrcweir |*    Beschreibung      CLIP.SDW
239*cdf0e10cSrcweir *************************************************************************/
240*cdf0e10cSrcweir sal_uLong SotExchange::RegisterFormatName( const String& rName )
241*cdf0e10cSrcweir {
242*cdf0e10cSrcweir     const DataFlavorRepresentation *pFormatArray_Impl = FormatArray_Impl::get();
243*cdf0e10cSrcweir 	// teste zuerst die Standard - Name
244*cdf0e10cSrcweir 	sal_uLong i, nMax = SOT_FORMAT_FILE_LIST;
245*cdf0e10cSrcweir 	for( i = SOT_FORMAT_STRING; i <= nMax;  ++i )
246*cdf0e10cSrcweir 		if( COMPARE_EQUAL == rName.CompareToAscii( pFormatArray_Impl[ i ].pName ) )
247*cdf0e10cSrcweir 			return i;
248*cdf0e10cSrcweir 
249*cdf0e10cSrcweir 	// BM: the chart format 105 ("StarChartDocument 5.0") was written
250*cdf0e10cSrcweir 	// only into 5.1 chart documents - in 5.0 and 5.2 it was 42 ("StarChart 5.0")
251*cdf0e10cSrcweir 	// The registry only contains the entry for the 42 format id.
252*cdf0e10cSrcweir 	nMax = SOT_FORMATSTR_ID_USER_END;
253*cdf0e10cSrcweir 	for( i = SOT_FORMAT_RTF; i <= nMax;  ++i )
254*cdf0e10cSrcweir 		if( rName.EqualsAscii( pFormatArray_Impl[ i ].pName ) )
255*cdf0e10cSrcweir 			return ( (i == SOT_FORMATSTR_ID_STARCHARTDOCUMENT_50)
256*cdf0e10cSrcweir 					 ? SOT_FORMATSTR_ID_STARCHART_50
257*cdf0e10cSrcweir 					 : i );
258*cdf0e10cSrcweir 
259*cdf0e10cSrcweir 	// dann in der dynamischen Liste
260*cdf0e10cSrcweir 	List& rL = InitFormats_Impl();
261*cdf0e10cSrcweir 	for( i = 0, nMax = rL.Count(); i < nMax; i++ )
262*cdf0e10cSrcweir 	{
263*cdf0e10cSrcweir 		DataFlavor* pFlavor = (DataFlavor*) rL.GetObject( i );
264*cdf0e10cSrcweir 		if( pFlavor && rName == String( pFlavor->HumanPresentableName ) )
265*cdf0e10cSrcweir 			return i + SOT_FORMATSTR_ID_USER_END + 1;
266*cdf0e10cSrcweir 	}
267*cdf0e10cSrcweir 
268*cdf0e10cSrcweir 	// nMax ist der neue Platz
269*cdf0e10cSrcweir 	DataFlavor* pNewFlavor = new DataFlavor;
270*cdf0e10cSrcweir 
271*cdf0e10cSrcweir 	pNewFlavor->MimeType = rName;
272*cdf0e10cSrcweir 	pNewFlavor->HumanPresentableName = rName;
273*cdf0e10cSrcweir 	pNewFlavor->DataType = ::getCppuType( (const ::rtl::OUString*) 0 );
274*cdf0e10cSrcweir 
275*cdf0e10cSrcweir 	rL.Insert( pNewFlavor, LIST_APPEND );
276*cdf0e10cSrcweir 
277*cdf0e10cSrcweir 	return nMax + SOT_FORMATSTR_ID_USER_END + 1;
278*cdf0e10cSrcweir }
279*cdf0e10cSrcweir 
280*cdf0e10cSrcweir sal_uLong SotExchange::RegisterFormatMimeType( const String& rMimeType )
281*cdf0e10cSrcweir {
282*cdf0e10cSrcweir     const DataFlavorRepresentation *pFormatArray_Impl = FormatArray_Impl::get();
283*cdf0e10cSrcweir 	// teste zuerst die Standard - Name
284*cdf0e10cSrcweir 	sal_uLong i, nMax = SOT_FORMAT_FILE_LIST;
285*cdf0e10cSrcweir 	for( i = SOT_FORMAT_STRING; i <= nMax;  ++i )
286*cdf0e10cSrcweir 		if( rMimeType.EqualsAscii( pFormatArray_Impl[ i ].pMimeType ) )
287*cdf0e10cSrcweir 			return i;
288*cdf0e10cSrcweir 
289*cdf0e10cSrcweir 	nMax = SOT_FORMATSTR_ID_USER_END;
290*cdf0e10cSrcweir 	for( i = SOT_FORMAT_RTF; i <= nMax;  ++i )
291*cdf0e10cSrcweir 		if( rMimeType.EqualsAscii( pFormatArray_Impl[ i ].pMimeType ) )
292*cdf0e10cSrcweir 			return i;
293*cdf0e10cSrcweir 
294*cdf0e10cSrcweir 	// dann in der dynamischen Liste
295*cdf0e10cSrcweir 	List& rL = InitFormats_Impl();
296*cdf0e10cSrcweir 	for( i = 0, nMax = rL.Count(); i < nMax; i++ )
297*cdf0e10cSrcweir 	{
298*cdf0e10cSrcweir 		DataFlavor* pFlavor = (DataFlavor*) rL.GetObject( i );
299*cdf0e10cSrcweir 		if( pFlavor && rMimeType == String( pFlavor->MimeType ) )
300*cdf0e10cSrcweir 			return i + SOT_FORMATSTR_ID_USER_END + 1;
301*cdf0e10cSrcweir 	}
302*cdf0e10cSrcweir 
303*cdf0e10cSrcweir 	// nMax ist der neue Platz
304*cdf0e10cSrcweir 	DataFlavor* pNewFlavor = new DataFlavor;
305*cdf0e10cSrcweir 
306*cdf0e10cSrcweir 	pNewFlavor->MimeType = rMimeType;
307*cdf0e10cSrcweir 	pNewFlavor->HumanPresentableName = rMimeType;
308*cdf0e10cSrcweir 	pNewFlavor->DataType = ::getCppuType( (const ::rtl::OUString*) 0 );
309*cdf0e10cSrcweir 
310*cdf0e10cSrcweir 	rL.Insert( pNewFlavor, LIST_APPEND );
311*cdf0e10cSrcweir 
312*cdf0e10cSrcweir 	return nMax + SOT_FORMATSTR_ID_USER_END + 1;
313*cdf0e10cSrcweir }
314*cdf0e10cSrcweir 
315*cdf0e10cSrcweir /*************************************************************************
316*cdf0e10cSrcweir |*
317*cdf0e10cSrcweir |*    SotExchange::RegisterFormatName()
318*cdf0e10cSrcweir |*
319*cdf0e10cSrcweir |*    Beschreibung      CLIP.SDW
320*cdf0e10cSrcweir *************************************************************************/
321*cdf0e10cSrcweir sal_uLong SotExchange::RegisterFormat( const DataFlavor& rFlavor )
322*cdf0e10cSrcweir {
323*cdf0e10cSrcweir 	sal_uLong nRet = GetFormat( rFlavor );
324*cdf0e10cSrcweir 
325*cdf0e10cSrcweir 	if( !nRet )
326*cdf0e10cSrcweir 	{
327*cdf0e10cSrcweir 		List& rL = InitFormats_Impl();
328*cdf0e10cSrcweir 		nRet = rL.Count() + SOT_FORMATSTR_ID_USER_END + 1;
329*cdf0e10cSrcweir 		rL.Insert( new DataFlavor( rFlavor ), LIST_APPEND );
330*cdf0e10cSrcweir 	}
331*cdf0e10cSrcweir 
332*cdf0e10cSrcweir 	return nRet;
333*cdf0e10cSrcweir }
334*cdf0e10cSrcweir 
335*cdf0e10cSrcweir /*************************************************************************
336*cdf0e10cSrcweir |*
337*cdf0e10cSrcweir |*    SotExchange::GetFormatDataFlavor()
338*cdf0e10cSrcweir |*
339*cdf0e10cSrcweir *************************************************************************/
340*cdf0e10cSrcweir 
341*cdf0e10cSrcweir sal_Bool SotExchange::GetFormatDataFlavor( sal_uLong nFormat, DataFlavor& rFlavor )
342*cdf0e10cSrcweir {
343*cdf0e10cSrcweir 	sal_Bool bRet;
344*cdf0e10cSrcweir 
345*cdf0e10cSrcweir 	if( SOT_FORMATSTR_ID_USER_END >= nFormat )
346*cdf0e10cSrcweir 	{
347*cdf0e10cSrcweir 		const DataFlavorRepresentation& rData = FormatArray_Impl::get()[nFormat];
348*cdf0e10cSrcweir 		rFlavor.MimeType = ::rtl::OUString::createFromAscii( rData.pMimeType );
349*cdf0e10cSrcweir 		rFlavor.HumanPresentableName = ::rtl::OUString::createFromAscii( rData.pName );
350*cdf0e10cSrcweir 		rFlavor.DataType = *rData.pType;
351*cdf0e10cSrcweir 
352*cdf0e10cSrcweir 		bRet = sal_True;
353*cdf0e10cSrcweir 	}
354*cdf0e10cSrcweir 	else
355*cdf0e10cSrcweir 	{
356*cdf0e10cSrcweir 		List& rL = InitFormats_Impl();
357*cdf0e10cSrcweir 
358*cdf0e10cSrcweir 		nFormat -= SOT_FORMATSTR_ID_USER_END + 1;
359*cdf0e10cSrcweir 
360*cdf0e10cSrcweir 		if( rL.Count() > nFormat )
361*cdf0e10cSrcweir 		{
362*cdf0e10cSrcweir 			rFlavor = *(DataFlavor*) rL.GetObject( nFormat );
363*cdf0e10cSrcweir 			bRet = sal_True;
364*cdf0e10cSrcweir 		}
365*cdf0e10cSrcweir 		else
366*cdf0e10cSrcweir 		{
367*cdf0e10cSrcweir 			rFlavor = DataFlavor();
368*cdf0e10cSrcweir 			bRet = sal_False;
369*cdf0e10cSrcweir 		}
370*cdf0e10cSrcweir 	}
371*cdf0e10cSrcweir 
372*cdf0e10cSrcweir 	DBG_ASSERT( bRet, "SotExchange::GetFormatDataFlavor(): DataFlavor not initialized" );
373*cdf0e10cSrcweir 
374*cdf0e10cSrcweir 	return bRet;
375*cdf0e10cSrcweir }
376*cdf0e10cSrcweir 
377*cdf0e10cSrcweir /*************************************************************************
378*cdf0e10cSrcweir |*
379*cdf0e10cSrcweir |*    SotExchange::GetFormatMimeType( sal_uLong nFormat )
380*cdf0e10cSrcweir |*
381*cdf0e10cSrcweir *************************************************************************/
382*cdf0e10cSrcweir 
383*cdf0e10cSrcweir String SotExchange::GetFormatMimeType( sal_uLong nFormat )
384*cdf0e10cSrcweir {
385*cdf0e10cSrcweir 	String sMimeType;
386*cdf0e10cSrcweir 	if( SOT_FORMATSTR_ID_USER_END >= nFormat )
387*cdf0e10cSrcweir 		sMimeType.AssignAscii( FormatArray_Impl::get()[nFormat].pMimeType );
388*cdf0e10cSrcweir 	else
389*cdf0e10cSrcweir 	{
390*cdf0e10cSrcweir 		List& rL = InitFormats_Impl();
391*cdf0e10cSrcweir 
392*cdf0e10cSrcweir 		nFormat -= SOT_FORMATSTR_ID_USER_END + 1;
393*cdf0e10cSrcweir 
394*cdf0e10cSrcweir 		if( rL.Count() > nFormat )
395*cdf0e10cSrcweir 			sMimeType = ((DataFlavor*) rL.GetObject( nFormat ))->MimeType;
396*cdf0e10cSrcweir 	}
397*cdf0e10cSrcweir 
398*cdf0e10cSrcweir 	DBG_ASSERT( sMimeType.Len(), "SotExchange::GetFormatMimeType(): DataFlavor not initialized" );
399*cdf0e10cSrcweir 
400*cdf0e10cSrcweir 	return sMimeType;
401*cdf0e10cSrcweir }
402*cdf0e10cSrcweir 
403*cdf0e10cSrcweir /*************************************************************************
404*cdf0e10cSrcweir |*
405*cdf0e10cSrcweir |*    SotExchange::GetFormatIdFromMimeType( const String& rMimeType )
406*cdf0e10cSrcweir |*
407*cdf0e10cSrcweir *************************************************************************/
408*cdf0e10cSrcweir 
409*cdf0e10cSrcweir sal_uLong SotExchange::GetFormatIdFromMimeType( const String& rMimeType )
410*cdf0e10cSrcweir {
411*cdf0e10cSrcweir     const DataFlavorRepresentation *pFormatArray_Impl = FormatArray_Impl::get();
412*cdf0e10cSrcweir 	sal_uLong i, nMax = SOT_FORMAT_FILE_LIST;
413*cdf0e10cSrcweir 	for( i = SOT_FORMAT_STRING; i <= nMax;  ++i )
414*cdf0e10cSrcweir 		if( rMimeType.EqualsAscii( pFormatArray_Impl[ i ].pMimeType ) )
415*cdf0e10cSrcweir 			return i;
416*cdf0e10cSrcweir 
417*cdf0e10cSrcweir 	// BM: the chart format 105 ("StarChartDocument 5.0") was written
418*cdf0e10cSrcweir 	// only into 5.1 chart documents - in 5.0 and 5.2 it was 42 ("StarChart 5.0")
419*cdf0e10cSrcweir 	// The registry only contains the entry for the 42 format id.
420*cdf0e10cSrcweir 	nMax = SOT_FORMATSTR_ID_USER_END;
421*cdf0e10cSrcweir 	for( i = SOT_FORMAT_RTF; i <= nMax;  ++i )
422*cdf0e10cSrcweir 		if( rMimeType.EqualsAscii( pFormatArray_Impl[ i ].pMimeType ) )
423*cdf0e10cSrcweir 			return ( (i == SOT_FORMATSTR_ID_STARCHARTDOCUMENT_50)
424*cdf0e10cSrcweir 					 ? SOT_FORMATSTR_ID_STARCHART_50
425*cdf0e10cSrcweir 					 : i );
426*cdf0e10cSrcweir 
427*cdf0e10cSrcweir 	// dann in der dynamischen Liste
428*cdf0e10cSrcweir 	List& rL = InitFormats_Impl();
429*cdf0e10cSrcweir 	::rtl::OUString aMimeType( rMimeType );
430*cdf0e10cSrcweir 	for( i = 0, nMax = rL.Count(); i < nMax; i++ )
431*cdf0e10cSrcweir 	{
432*cdf0e10cSrcweir 		DataFlavor* pFlavor = (DataFlavor*) rL.GetObject( i );
433*cdf0e10cSrcweir 		if( pFlavor && aMimeType == pFlavor->MimeType )
434*cdf0e10cSrcweir 			return i + SOT_FORMATSTR_ID_USER_END + 1;
435*cdf0e10cSrcweir 	}
436*cdf0e10cSrcweir 
437*cdf0e10cSrcweir 	return 0;
438*cdf0e10cSrcweir }
439*cdf0e10cSrcweir 
440*cdf0e10cSrcweir /*************************************************************************
441*cdf0e10cSrcweir |*
442*cdf0e10cSrcweir |*    SotExchange::GetFormatName()
443*cdf0e10cSrcweir |*
444*cdf0e10cSrcweir |*    Beschreibung      CLIP.SDW
445*cdf0e10cSrcweir *************************************************************************/
446*cdf0e10cSrcweir sal_uLong SotExchange::GetFormat( const DataFlavor& rFlavor )
447*cdf0e10cSrcweir {
448*cdf0e10cSrcweir 	// teste zuerst die Standard - Name
449*cdf0e10cSrcweir 	const ::rtl::OUString& rMimeType = rFlavor.MimeType;
450*cdf0e10cSrcweir 	const String aMimeType( rMimeType );
451*cdf0e10cSrcweir 	sal_uLong i, nMax = SOT_FORMAT_FILE_LIST;
452*cdf0e10cSrcweir     const DataFlavorRepresentation *pFormatArray_Impl = FormatArray_Impl::get();
453*cdf0e10cSrcweir 	for( i = SOT_FORMAT_STRING; i <= nMax;  ++i )
454*cdf0e10cSrcweir 		if( aMimeType.EqualsAscii( pFormatArray_Impl[ i ].pMimeType ) )
455*cdf0e10cSrcweir 			return i;
456*cdf0e10cSrcweir 
457*cdf0e10cSrcweir 	// BM: the chart format 105 ("StarChartDocument 5.0") was written
458*cdf0e10cSrcweir 	// only into 5.1 chart documents - in 5.0 and 5.2 it was 42 ("StarChart 5.0")
459*cdf0e10cSrcweir 	// The registry only contains the entry for the 42 format id.
460*cdf0e10cSrcweir 	nMax = SOT_FORMATSTR_ID_USER_END;
461*cdf0e10cSrcweir 	for( i = SOT_FORMAT_RTF; i <= nMax;  ++i )
462*cdf0e10cSrcweir 		if( aMimeType.EqualsAscii( pFormatArray_Impl[ i ].pMimeType ) )
463*cdf0e10cSrcweir 			return ( (i == SOT_FORMATSTR_ID_STARCHARTDOCUMENT_50)
464*cdf0e10cSrcweir 					 ? SOT_FORMATSTR_ID_STARCHART_50
465*cdf0e10cSrcweir 					 : i );
466*cdf0e10cSrcweir 
467*cdf0e10cSrcweir 	// dann in der dynamischen Liste
468*cdf0e10cSrcweir 	List& rL = InitFormats_Impl();
469*cdf0e10cSrcweir 	for( i = 0, nMax = rL.Count(); i < nMax; i++ )
470*cdf0e10cSrcweir 	{
471*cdf0e10cSrcweir 		DataFlavor* pFlavor = (DataFlavor*) rL.GetObject( i );
472*cdf0e10cSrcweir 		if( pFlavor && rMimeType == pFlavor->MimeType )
473*cdf0e10cSrcweir 			return i + SOT_FORMATSTR_ID_USER_END + 1;
474*cdf0e10cSrcweir 	}
475*cdf0e10cSrcweir 
476*cdf0e10cSrcweir 	return 0;
477*cdf0e10cSrcweir }
478*cdf0e10cSrcweir 
479*cdf0e10cSrcweir /*************************************************************************
480*cdf0e10cSrcweir |*
481*cdf0e10cSrcweir |*    SotExchange::GetFormatName()
482*cdf0e10cSrcweir |*
483*cdf0e10cSrcweir |*    Beschreibung      CLIP.SDW
484*cdf0e10cSrcweir *************************************************************************/
485*cdf0e10cSrcweir String SotExchange::GetFormatName( sal_uLong nFormat )
486*cdf0e10cSrcweir {
487*cdf0e10cSrcweir 	DataFlavor	aFlavor;
488*cdf0e10cSrcweir 	String		aRet;
489*cdf0e10cSrcweir 
490*cdf0e10cSrcweir 	if( GetFormatDataFlavor( nFormat, aFlavor ) )
491*cdf0e10cSrcweir 		aRet = aFlavor.HumanPresentableName;
492*cdf0e10cSrcweir 
493*cdf0e10cSrcweir 	return aRet;
494*cdf0e10cSrcweir }
495*cdf0e10cSrcweir 
496*cdf0e10cSrcweir sal_Bool SotExchange::IsInternal( const SvGlobalName& rName )
497*cdf0e10cSrcweir {
498*cdf0e10cSrcweir     if ( rName == SvGlobalName(SO3_SW_CLASSID_60) ||
499*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SC_CLASSID_60) ||
500*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SIMPRESS_CLASSID_60) ||
501*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SDRAW_CLASSID_60) ||
502*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SCH_CLASSID_60) ||
503*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SM_CLASSID_60) ||
504*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SWWEB_CLASSID_60) ||
505*cdf0e10cSrcweir          rName == SvGlobalName(SO3_SWGLOB_CLASSID_60) )
506*cdf0e10cSrcweir         return sal_True;
507*cdf0e10cSrcweir     return sal_False;
508*cdf0e10cSrcweir }
509