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/.
10 #ifndef OOX_DRAWINGML_EFFECTPROPERTIES_HXX
11 #define OOX_DRAWINGML_EFFECTPROPERTIES_HXX
13 #include "oox/drawingml/fillproperties.hxx"
18 // ============================================================================
20 struct EffectShadowProperties
22 OptValue
< sal_Int64
> moShadowDist
;
23 OptValue
< sal_Int64
> moShadowDir
;
24 OptValue
< sal_Int64
> moShadowAlpha
;
27 /** Overwrites all members that are explicitly set in rSourceProps. */
28 void assignUsed( const EffectShadowProperties
& rSourceProps
);
31 // ============================================================================
33 struct OOX_DLLPUBLIC EffectProperties
35 EffectShadowProperties maShadow
;
37 /** Overwrites all members that are explicitly set in rSourceProps. */
38 void assignUsed( const EffectProperties
& rSourceProps
);
40 /** Writes the properties to the passed property map. */
42 PropertyMap
& rPropMap
,
43 const GraphicHelper
& rGraphicHelper
) const;
46 // ============================================================================
48 } // namespace drawingml
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */