merge the formfield patch from ooo-build
[ooovba.git] / svx / inc / msoleexp.hxx
blob12ac521b87a86b4f66024ad138745da4833fe8db
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: msoleexp.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _MSOLEEXP_HXX
31 #define _MSOLEEXP_HXX
33 #include <com/sun/star/uno/Reference.h>
34 #include "svx/svxdllapi.h"
36 // for the CreateSdrOLEFromStorage we need the information, how we handle
37 // convert able OLE-Objects - this ist stored in
38 #define OLE_STARMATH_2_MATHTYPE 0x0001
39 #define OLE_STARWRITER_2_WINWORD 0x0002
40 #define OLE_STARCALC_2_EXCEL 0x0004
41 #define OLE_STARIMPRESS_2_POWERPOINT 0x0008
43 class SotStorage;
45 #include <svtools/embedhlp.hxx>
47 class SVX_DLLPUBLIC SvxMSExportOLEObjects
49 UINT32 nConvertFlags;
50 public:
51 SvxMSExportOLEObjects( UINT32 nCnvrtFlgs ) : nConvertFlags(nCnvrtFlgs) {}
53 void SetFlags( UINT32 n ) { nConvertFlags = n; }
54 UINT32 GetFlags() const { return nConvertFlags; }
56 void ExportOLEObject( svt::EmbeddedObjectRef& rObj, SotStorage& rDestStg );
57 void ExportOLEObject( const com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject>& rObj, SotStorage& rDestStg );
62 #endif