KHTML
Go to the documentation of this file.
24 #if ENABLE(SVG) && ENABLE(SVG_FILTERS)
26 #include "TextStream.h"
30 SVGFEComposite::SVGFEComposite(SVGResourceFilter* filter)
31 : SVGFilterEffect(filter)
32 , m_operation(SVG_FECOMPOSITE_OPERATOR_UNKNOWN)
40 String SVGFEComposite::in2()
const
45 void SVGFEComposite::setIn2(
const String& in2)
50 SVGCompositeOperationType SVGFEComposite::operation()
const
55 void SVGFEComposite::setOperation(SVGCompositeOperationType oper)
60 float SVGFEComposite::k1()
const
65 void SVGFEComposite::setK1(
float k1)
70 float SVGFEComposite::k2()
const
75 void SVGFEComposite::setK2(
float k2)
80 float SVGFEComposite::k3()
const
85 void SVGFEComposite::setK3(
float k3)
90 float SVGFEComposite::k4()
const
95 void SVGFEComposite::setK4(
float k4)
100 TextStream& 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() <<
"]";
112 #endif // ENABLE(SVG) && ENABLE(SVG_FILTERS)
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:19 by
doxygen 1.8.7 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.