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 .
20 #ifndef INCLUDED_SVX_SOURCE_SVDRAW_SVDFMTF_HXX
21 #define INCLUDED_SVX_SOURCE_SVDRAW_SVDFMTF_HXX
23 #include <tools/contnr.hxx>
24 #include <vcl/metaact.hxx>
25 #include <vcl/virdev.hxx>
26 #include <svx/svdobj.hxx>
29 // Forward Declarations
37 class SvdProgressInfo
;
40 // Helper Class ImpSdrGDIMetaFileImport
43 class ImpSdrGDIMetaFileImport
46 ::std::vector
< SdrObject
* > maTmpList
;
48 Rectangle maScaleRect
;
49 size_t mnMapScalingOfs
; // from here on, not edited with MapScaling
50 SfxItemSet
* mpLineAttr
;
51 SfxItemSet
* mpFillAttr
;
52 SfxItemSet
* mpTextAttr
;
56 sal_Int32 mnLineWidth
;
57 basegfx::B2DLineJoin maLineJoin
;
58 com::sun::star::drawing::LineCap maLineCap
;
71 // to optimize (PenNULL,Brush,DrawPoly),(Pen,BrushNULL,DrawPoly) -> two-in-one
72 bool mbLastObjWasPolyWithoutLine
;
76 // to optimize multiple lines into a Polyline
77 bool mbLastObjWasLine
;
80 basegfx::B2DPolyPolygon maClip
;
83 // check for clip and evtl. fill maClip
88 void DoAction(MetaPixelAction
& rAct
) const;
89 void DoAction(MetaPointAction
& rAct
) const;
90 void DoAction(MetaLineAction
& rAct
);
91 void DoAction(MetaRectAction
& rAct
);
92 void DoAction(MetaRoundRectAction
& rAct
);
93 void DoAction(MetaEllipseAction
& rAct
);
94 void DoAction(MetaArcAction
& rAct
);
95 void DoAction(MetaPieAction
& rAct
);
96 void DoAction(MetaChordAction
& rAct
);
97 void DoAction(MetaPolyLineAction
& rAct
);
98 void DoAction(MetaPolygonAction
& rAct
);
99 void DoAction(MetaPolyPolygonAction
& rAct
);
100 void DoAction(MetaTextAction
& rAct
);
101 void DoAction(MetaTextArrayAction
& rAct
);
102 void DoAction(MetaStretchTextAction
& rAct
);
103 void DoAction(MetaBmpAction
& rAct
);
104 void DoAction(MetaBmpScaleAction
& rAct
);
105 void DoAction(MetaBmpExAction
& rAct
);
106 void DoAction(MetaBmpExScaleAction
& rAct
);
107 void DoAction(MetaHatchAction
& rAct
);
108 void DoAction(MetaLineColorAction
& rAct
);
109 void DoAction(MetaMapModeAction
& rAct
);
110 void DoAction(MetaFillColorAction
& rAct
) { rAct
.Execute(&maVD
); }
111 void DoAction(MetaTextColorAction
& rAct
) { rAct
.Execute(&maVD
); }
112 void DoAction(MetaTextFillColorAction
& rAct
) { rAct
.Execute(&maVD
); }
113 void DoAction(MetaFontAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; }
114 void DoAction(MetaTextAlignAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; }
115 void DoAction(MetaClipRegionAction
& rAct
) { rAct
.Execute(&maVD
); checkClip(); }
116 void DoAction(MetaRasterOpAction
& rAct
) { rAct
.Execute(&maVD
); }
117 void DoAction(MetaPushAction
& rAct
) { rAct
.Execute(&maVD
); checkClip(); }
118 void DoAction(MetaPopAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; checkClip(); }
119 void DoAction(MetaMoveClipRegionAction
& rAct
) { rAct
.Execute(&maVD
); checkClip(); }
120 void DoAction(MetaISectRectClipRegionAction
& rAct
) { rAct
.Execute(&maVD
); checkClip(); }
121 void DoAction(MetaISectRegionClipRegionAction
& rAct
) { rAct
.Execute(&maVD
); checkClip(); }
122 void DoAction(MetaCommentAction
& rAct
, GDIMetaFile
* pMtf
);
124 // missing actions added
125 void DoAction(MetaTextRectAction
& rAct
);
126 void DoAction(MetaBmpScalePartAction
& rAct
);
127 void DoAction(MetaBmpExScalePartAction
& rAct
);
128 void DoAction(MetaMaskAction
& rAct
);
129 void DoAction(MetaMaskScaleAction
& rAct
);
130 void DoAction(MetaMaskScalePartAction
& rAct
);
131 void DoAction(MetaGradientAction
& rAct
);
132 void DoAction(MetaWallpaperAction
& rAct
);
133 void DoAction(MetaTransparentAction
& rAct
);
134 void DoAction(MetaEPSAction
& rAct
);
135 void DoAction(MetaRefPointAction
& rAct
) { rAct
.Execute(&maVD
); }
136 void DoAction(MetaTextLineColorAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; }
137 void DoAction(MetaTextLineAction
& rAct
);
138 void DoAction(MetaFloatTransparentAction
& rAct
);
139 void DoAction(MetaGradientExAction
& rAct
);
140 void DoAction(MetaLayoutModeAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; }
141 void DoAction(MetaTextLanguageAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; }
142 void DoAction(MetaOverlineColorAction
& rAct
) { rAct
.Execute(&maVD
); mbFntDirty
= true; }
144 void ImportText(const Point
& rPos
, const OUString
& rStr
, const MetaAction
& rAct
);
145 void SetAttributes(SdrObject
* pObj
, bool bForceTextAttr
= false);
146 void InsertObj(SdrObject
* pObj
, bool bScale
= true);
149 // #i73407# reformulation to use new B2DPolygon classes
150 bool CheckLastLineMerge(const basegfx::B2DPolygon
& rSrcPoly
);
151 bool CheckLastPolyLineAndFillMerge(const basegfx::B2DPolyPolygon
& rPolyPolygon
);
153 void DoLoopActions(GDIMetaFile
& rMtf
, SvdProgressInfo
* pProgrInfo
, sal_uInt32
* pActionsToReport
);
156 ImpSdrGDIMetaFileImport(
159 const Rectangle
& rRect
);
160 ~ImpSdrGDIMetaFileImport();
163 const GDIMetaFile
& rMtf
,
164 SdrObjList
& rDestList
,
165 sal_uLong nInsPos
= CONTAINER_APPEND
,
166 SvdProgressInfo
* pProgrInfo
= 0);
169 #endif // INCLUDED_SVX_SOURCE_SVDRAW_SVDFMTF_HXX
171 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */