summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-06-17 10:23:25 +0200
committerMatúš Kukan <matus.kukan@collabora.com>2014-06-17 17:05:30 +0200
commit503facc9c423ef307799bbc89f7a786853b7dc29 (patch)
tree577d22b015c65274579eef61187dfae935ed50f8 /include
parent1ca7ac128dcdf03e3749af7458beac8d2da8a708 (diff)
These headers are private, also do not export symbols.
Change-Id: Ic63372285fecb6f1be22e92c36cdb6f94733f5c1
Diffstat (limited to 'include')
-rw-r--r--include/oox/drawingml/effectproperties.hxx67
-rw-r--r--include/oox/drawingml/effectpropertiescontext.hxx44
2 files changed, 0 insertions, 111 deletions
diff --git a/include/oox/drawingml/effectproperties.hxx b/include/oox/drawingml/effectproperties.hxx
deleted file mode 100644
index a25aa121fa43..000000000000
--- a/include/oox/drawingml/effectproperties.hxx
+++ /dev/null
@@ -1,67 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#ifndef INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIES_HXX
-#define INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIES_HXX
-
-#include <oox/drawingml/fillproperties.hxx>
-
-namespace oox {
-namespace drawingml {
-
-
-
-struct EffectShadowProperties
-{
- OptValue< sal_Int64 > moShadowDist;
- OptValue< sal_Int64 > moShadowDir;
- OptValue< sal_Int64 > moShadowAlpha;
- Color moShadowColor;
-
- /** Overwrites all members that are explicitly set in rSourceProps. */
- void assignUsed( const EffectShadowProperties& rSourceProps );
-};
-
-
-
-struct Effect
-{
- OUString msName;
- std::map< OUString, css::uno::Any > maAttribs;
- Color moColor;
-
- css::beans::PropertyValue getEffect();
-};
-
-
-
-struct OOX_DLLPUBLIC EffectProperties
-{
- EffectShadowProperties maShadow;
-
- /** Stores all effect properties, including those not supported by core yet */
- std::vector< Effect* > maEffects;
-
- /** Overwrites all members that are explicitly set in rSourceProps. */
- void assignUsed( const EffectProperties& rSourceProps );
-
- /** Writes the properties to the passed property map. */
- void pushToPropMap(
- PropertyMap& rPropMap,
- const GraphicHelper& rGraphicHelper ) const;
-};
-
-
-
-} // namespace drawingml
-} // namespace oox
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/oox/drawingml/effectpropertiescontext.hxx b/include/oox/drawingml/effectpropertiescontext.hxx
deleted file mode 100644
index 6106254d5bcc..000000000000
--- a/include/oox/drawingml/effectpropertiescontext.hxx
+++ /dev/null
@@ -1,44 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#ifndef INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIESCONTEXT_HXX
-#define INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIESCONTEXT_HXX
-
-#include <oox/core/contexthandler2.hxx>
-#include <oox/dllapi.h>
-#include <oox/drawingml/effectproperties.hxx>
-
-namespace oox { namespace drawingml {
-
-
-
-struct EffectProperties;
-
-class OOX_DLLPUBLIC EffectPropertiesContext : public ::oox::core::ContextHandler2
-{
-public:
- EffectPropertiesContext( ::oox::core::ContextHandler2Helper& rParent,
- EffectProperties& rEffectProperties ) throw();
- virtual ~EffectPropertiesContext();
-
- virtual ::oox::core::ContextHandlerRef
- onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) SAL_OVERRIDE;
-
-protected:
- EffectProperties& mrEffectProperties;
-
-private:
- void saveUnsupportedAttribs( Effect& rEffect, const AttributeList& rAttribs );
-};
-
-} }
-
-#endif // INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIESCONTEXT_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */