{-# LANGUAGE PatternSynonyms, ForeignFunctionInterface, JavaScriptFFI #-} module GHCJS.DOM.JSFFI.Generated.SVGFESpotLightElement (js_getX, getX, js_getY, getY, js_getZ, getZ, js_getPointsAtX, getPointsAtX, js_getPointsAtY, getPointsAtY, js_getPointsAtZ, getPointsAtZ, js_getSpecularExponent, getSpecularExponent, js_getLimitingConeAngle, getLimitingConeAngle, SVGFESpotLightElement, castToSVGFESpotLightElement, gTypeSVGFESpotLightElement) where import Prelude ((.), (==), (>>=), return, IO, Int, Float, Double, Bool(..), Maybe, maybe, fromIntegral, round, fmap, Show, Read, Eq, Ord) import Data.Typeable (Typeable) import GHCJS.Types (JSRef(..), JSString, castRef) import GHCJS.Foreign (jsNull) import GHCJS.Foreign.Callback (syncCallback, asyncCallback, syncCallback1, asyncCallback1, syncCallback2, asyncCallback2, OnBlocked(..)) import GHCJS.Marshal (ToJSRef(..), FromJSRef(..)) import GHCJS.Marshal.Pure (PToJSRef(..), PFromJSRef(..)) import Control.Monad.IO.Class (MonadIO(..)) import Data.Int (Int64) import Data.Word (Word, Word64) import GHCJS.DOM.Types import Control.Applicative ((<$>)) import GHCJS.DOM.EventTargetClosures (EventName, unsafeEventName) import GHCJS.DOM.Enums foreign import javascript unsafe "$1[\"x\"]" js_getX :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getX :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getX self = liftIO ((js_getX (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"y\"]" js_getY :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getY :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getY self = liftIO ((js_getY (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"z\"]" js_getZ :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getZ :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getZ self = liftIO ((js_getZ (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"pointsAtX\"]" js_getPointsAtX :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getPointsAtX :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getPointsAtX self = liftIO ((js_getPointsAtX (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"pointsAtY\"]" js_getPointsAtY :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getPointsAtY :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getPointsAtY self = liftIO ((js_getPointsAtY (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"pointsAtZ\"]" js_getPointsAtZ :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getPointsAtZ :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getPointsAtZ self = liftIO ((js_getPointsAtZ (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"specularExponent\"]" js_getSpecularExponent :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getSpecularExponent :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getSpecularExponent self = liftIO ((js_getSpecularExponent (unSVGFESpotLightElement self)) >>= fromJSRef) foreign import javascript unsafe "$1[\"limitingConeAngle\"]" js_getLimitingConeAngle :: JSRef SVGFESpotLightElement -> IO (JSRef SVGAnimatedNumber) -- | getLimitingConeAngle :: (MonadIO m) => SVGFESpotLightElement -> m (Maybe SVGAnimatedNumber) getLimitingConeAngle self = liftIO ((js_getLimitingConeAngle (unSVGFESpotLightElement self)) >>= fromJSRef)