SVGComponentTransferFunctionElement.webidl (1454B)
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 * 6 * The origin of this IDL file is 7 * https://dvcs.w3.org/hg/FXTF/raw-file/tip/filters/index.html 8 * 9 * Copyright © 2013 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C 10 * liability, trademark and document use rules apply. 11 */ 12 13 [Exposed=Window] 14 interface SVGComponentTransferFunctionElement : SVGElement { 15 // Component Transfer Types 16 const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; 17 const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; 18 const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; 19 const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; 20 const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; 21 const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; 22 23 [Constant] 24 readonly attribute SVGAnimatedEnumeration type; 25 [Constant] 26 readonly attribute SVGAnimatedNumberList tableValues; 27 [Constant] 28 readonly attribute SVGAnimatedNumber slope; 29 [Constant] 30 readonly attribute SVGAnimatedNumber intercept; 31 [Constant] 32 readonly attribute SVGAnimatedNumber amplitude; 33 [Constant] 34 readonly attribute SVGAnimatedNumber exponent; 35 [Constant] 36 readonly attribute SVGAnimatedNumber offset; 37 };