Update git submodules
[LibreOffice.git] / svgio / inc / svgfecompositenode.hxx
blob8a34851c08d0e8a4296f0731917748c650acdcb4
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/.
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 #pragma once
22 #include "svgfilternode.hxx"
23 #include "svgstyleattributes.hxx"
25 namespace svgio::svgreader
27 enum class Operator
29 Over,
30 In,
31 Out,
32 Xor,
33 Atop,
34 Arithmetic
37 class SvgFeCompositeNode : public SvgFilterNode
39 private:
40 OUString maIn;
41 OUString maIn2;
42 OUString maResult;
43 Operator maOperator;
45 SvgNumber maK1;
46 SvgNumber maK2;
47 SvgNumber maK3;
48 SvgNumber maK4;
50 public:
51 SvgFeCompositeNode(SvgDocument& rDocument, SvgNode* pParent);
52 virtual ~SvgFeCompositeNode() override;
54 virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override;
56 void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget,
57 const SvgFilterNode* pParent) const override;
60 } // end of namespace svgio::svgreader
62 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */