1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
23 #include <filter/msfilter/escherex.hxx>
25 const sal_uInt32 nInlineHack
= 0x00010001;
28 class SwFmtHoriOrient
;
29 class SwFmtVertOrient
;
31 class WinwordAnchoring
: public EscherExClientRecord_Base
34 void WriteData(EscherEx
& rEx
) const;
35 void SetAnchoring(const SwFrmFmt
& rFmt
);
37 /** method to perform conversion of positioning attributes with the help
38 of corresponding layout information
41 Because most of the Writer object positions doesn't correspond to the
42 object positions in WW8, this method converts the positioning
43 attributes. For this conversion the corresponding layout information
44 is needed. If no layout information exists - e.g. no layout exists - no
45 conversion is performed.
46 No conversion is performed for as-character anchored objects. Whose
47 object positions are already treated special in method <WriteData(..)>.
48 Usage of method: Used by method <SetAnchoring(..)>, nothing else
51 input/output parameter - containing the current horizontal position
52 attributes, which are converted by this method.
55 input/output parameter - containing the current vertical position
56 attributes, which are converted by this method.
59 input parameter - frame format of the anchored object
61 @return boolean, indicating, if a conversion has been performed.
63 static bool ConvertPosition( SwFmtHoriOrient
& _iorHoriOri
,
64 SwFmtVertOrient
& _iorVertOri
,
65 const SwFrmFmt
& _rFrmFmt
);
76 class SwEscherExGlobal
: public EscherExGlobal
79 explicit SwEscherExGlobal();
80 virtual ~SwEscherExGlobal();
83 /** Overloaded to create a new memory stream for picture data. */
84 virtual SvStream
* ImplQueryPictureStream();
87 boost::shared_ptr
< SvStream
> mxPicStrm
;
90 class SwBasicEscherEx
: public EscherEx
96 SvStream
* pEscherStrm
;
97 long mnEmuMul
, mnEmuDiv
;
99 virtual sal_Int32
WriteFlyFrameAttr(const SwFrmFmt
& rFmt
, MSO_SPT eShapeType
,
100 EscherPropertyContainer
& rPropOpt
);
101 void WriteBrushAttr(const SvxBrushItem
&rBrush
,
102 EscherPropertyContainer
& rPropOpt
);
103 void WriteOLEPicture(EscherPropertyContainer
&rPropOpt
,
104 sal_uInt32 nShapeFlags
, const Graphic
&rGraphic
, const SdrObject
&rObj
,
105 sal_uInt32 nShapeId
, const com::sun::star::awt::Rectangle
* pVisArea
);
106 void WriteGrfAttr(const SwNoTxtNode
& rNd
,EscherPropertyContainer
& rPropOpt
);
108 sal_Int32
DrawModelToEmu(sal_Int32 nVal
) const
109 { return BigMulDiv(nVal
, mnEmuMul
, mnEmuDiv
); }
111 sal_Int32
ToFract16(sal_Int32 nVal
, sal_uInt32 nMax
) const;
113 virtual void SetPicId(const SdrObject
&, sal_uInt32
, EscherPropertyContainer
&);
114 SdrLayerID
GetInvisibleHellId() const;
117 SwBasicEscherEx(SvStream
* pStrm
, WW8Export
& rWrt
);
118 sal_Int32
WriteGrfFlyFrame(const SwFrmFmt
& rFmt
, sal_uInt32 nShapeId
);
119 //For i120928,to export graphic of bullet
120 sal_Int32
WriteGrfBullet(const Graphic
&);
121 sal_Int32
WriteOLEFlyFrame(const SwFrmFmt
& rFmt
, sal_uInt32 nShapeId
);
122 void WriteEmptyFlyFrame(const SwFrmFmt
& rFmt
, sal_uInt32 nShapeId
);
123 virtual void WriteFrmExtraData(const SwFrmFmt
&);
124 virtual void WritePictures();
125 virtual ~SwBasicEscherEx();
128 SwBasicEscherEx(const SwBasicEscherEx
&);
129 SwBasicEscherEx
& operator=(const SwBasicEscherEx
&);
132 class SwEscherEx
: public SwBasicEscherEx
135 std::vector
<sal_uLong
> aFollowShpIds
;
136 EscherExHostAppData aHostData
;
137 WinwordAnchoring aWinwordAnchoring
;
138 WW8_WrPlcTxtBoxes
*pTxtBxs
;
140 sal_uInt32
GetFlyShapeId(const SwFrmFmt
& rFmt
,
141 unsigned int nHdFtIndex
, DrawObjPointerVector
&rPVec
);
142 void MakeZOrderArrAndFollowIds(std::vector
<DrawObj
>& rSrcArr
,
143 DrawObjPointerVector
& rDstArr
);
145 sal_Int32
WriteFlyFrm(const DrawObj
&rObj
, sal_uInt32
&rShapeId
,
146 DrawObjPointerVector
&rPVec
);
147 sal_Int32
WriteTxtFlyFrame(const DrawObj
&rObj
, sal_uInt32 nShapeId
,
148 sal_uInt32 nTxtBox
, DrawObjPointerVector
&rPVec
);
149 void WriteOCXControl(const SwFrmFmt
& rFmt
,sal_uInt32 nShapeId
);
150 virtual sal_Int32
WriteFlyFrameAttr(const SwFrmFmt
& rFmt
, MSO_SPT eShapeType
,
151 EscherPropertyContainer
& rPropOpt
);
153 virtual sal_uInt32
QueryTextID(
154 const com::sun::star::uno::Reference
<
155 com::sun::star::drawing::XShape
> &,sal_uInt32
);
156 virtual void SetPicId(const SdrObject
&rSdrObj
, sal_uInt32 nShapeId
,
157 EscherPropertyContainer
&rPropOpt
);
159 SwEscherEx( SvStream
* pStrm
, WW8Export
& rWW8Wrt
);
160 virtual ~SwEscherEx();
162 virtual void WritePictures();
164 virtual void WriteFrmExtraData(const SwFrmFmt
& rFmt
);
166 EscherExHostAppData
* StartShape(const com::sun::star::uno::Reference
<
167 com::sun::star::drawing::XShape
> &, const Rectangle
*) {return &aHostData
;}
170 SwEscherEx(const SwEscherEx
&);
171 SwEscherEx
&operator=(const SwEscherEx
&);
176 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */