bump product version to 4.1.6.2
[LibreOffice.git] / include / oox / drawingml / effectproperties.hxx
blob55c5ec34a20f5b51807dd8d715e61b7d8d686c11
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #ifndef OOX_DRAWINGML_EFFECTPROPERTIES_HXX
11 #define OOX_DRAWINGML_EFFECTPROPERTIES_HXX
13 #include "oox/drawingml/fillproperties.hxx"
15 namespace oox {
16 namespace drawingml {
18 // ============================================================================
20 struct EffectShadowProperties
22 OptValue< sal_Int64 > moShadowDist;
23 OptValue< sal_Int64 > moShadowDir;
24 OptValue< sal_Int64 > moShadowAlpha;
25 Color moShadowColor;
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. */
41 void pushToPropMap(
42 PropertyMap& rPropMap,
43 const GraphicHelper& rGraphicHelper ) const;
46 // ============================================================================
48 } // namespace drawingml
49 } // namespace oox
51 #endif
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */