KHTML
Go to the documentation of this file.
24#if ENABLE(SVG) && ENABLE(SVG_FILTERS)
26#include "TextStream.h"
30SVGFEComposite::SVGFEComposite(SVGResourceFilter* filter)
31 : SVGFilterEffect(filter)
32 , m_operation(SVG_FECOMPOSITE_OPERATOR_UNKNOWN)
40String SVGFEComposite::in2()
const
45void SVGFEComposite::setIn2(
const String& in2)
50SVGCompositeOperationType SVGFEComposite::operation()
const
55void SVGFEComposite::setOperation(SVGCompositeOperationType oper)
60float SVGFEComposite::k1()
const
65void SVGFEComposite::setK1(
float k1)
70float SVGFEComposite::k2()
const
75void SVGFEComposite::setK2(
float k2)
80float SVGFEComposite::k3()
const
85void SVGFEComposite::setK3(
float k3)
90float SVGFEComposite::k4()
const
95void SVGFEComposite::setK4(
float k4)
100TextStream& SVGFEComposite::externalRepresentation(TextStream& ts)
const
102 ts <<
"[type=COMPOSITE] ";
103 SVGFilterEffect::externalRepresentation(ts);
104 if (!in2().isEmpty())
105 ts <<
" [in2=\"" << in2() <<
"\"]";
106 ts <<
" [k1=" << k1() <<
" k2=" << k2() <<
" k3=" << k3() <<
" k4=" << k4() <<
"]";
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Feb 20 2023 00:00:00 by
doxygen 1.9.6 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.