fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oox / source / drawingml / effectpropertiescontext.hxx
blob7f608b3caa834aff02551f9e7fddc8a727279866
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 INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIESCONTEXT_HXX
11 #define INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIESCONTEXT_HXX
13 #include <oox/core/contexthandler2.hxx>
15 namespace oox { namespace drawingml {
17 struct EffectProperties;
18 struct Effect;
20 class EffectPropertiesContext : public ::oox::core::ContextHandler2
22 public:
23 EffectPropertiesContext( ::oox::core::ContextHandler2Helper& rParent,
24 EffectProperties& rEffectProperties ) throw();
25 virtual ~EffectPropertiesContext();
27 virtual ::oox::core::ContextHandlerRef
28 onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) SAL_OVERRIDE;
30 protected:
31 EffectProperties& mrEffectProperties;
33 private:
34 static void saveUnsupportedAttribs( Effect& rEffect, const AttributeList& rAttribs );
37 } }
39 #endif // INCLUDED_OOX_DRAWINGML_EFFECTPROPERTIESCONTEXT_HXX
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */