{-# LANGUAGE PatternSynonyms #-} -- For HasCallStack compatibility {-# LANGUAGE ImplicitParams, ConstraintKinds, KindSignatures #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} module JSDOM.Generated.CSSFontFaceLoadEvent (getFontface, getFontfaceUnsafe, getFontfaceUnchecked, getError, getErrorUnsafe, getErrorUnchecked, CSSFontFaceLoadEvent(..), gTypeCSSFontFaceLoadEvent) where import Prelude ((.), (==), (>>=), return, IO, Int, Float, Double, Bool(..), Maybe, maybe, fromIntegral, round, realToFrac, fmap, Show, Read, Eq, Ord, Maybe(..)) import qualified Prelude (error) import Data.Typeable (Typeable) import Language.Javascript.JSaddle (JSM(..), JSVal(..), JSString, strictEqual, toJSVal, valToStr, valToNumber, valToBool, js, jss, jsf, jsg, function, new, array) import Data.Int (Int64) import Data.Word (Word, Word64) import JSDOM.Types import Control.Applicative ((<$>)) import Control.Monad (void) import Control.Lens.Operators ((^.)) import JSDOM.EventTargetClosures (EventName, unsafeEventName) import JSDOM.Enums -- | getFontface :: (MonadDOM m) => CSSFontFaceLoadEvent -> m (Maybe CSSFontFaceRule) getFontface self = liftDOM ((self ^. js "fontface") >>= fromJSVal) -- | getFontfaceUnsafe :: (MonadDOM m, HasCallStack) => CSSFontFaceLoadEvent -> m CSSFontFaceRule getFontfaceUnsafe self = liftDOM (((self ^. js "fontface") >>= fromJSVal) >>= maybe (Prelude.error "Nothing to return") return) -- | getFontfaceUnchecked :: (MonadDOM m) => CSSFontFaceLoadEvent -> m CSSFontFaceRule getFontfaceUnchecked self = liftDOM ((self ^. js "fontface") >>= fromJSValUnchecked) -- | getError :: (MonadDOM m) => CSSFontFaceLoadEvent -> m (Maybe DOMError) getError self = liftDOM ((self ^. js "error") >>= fromJSVal) -- | getErrorUnsafe :: (MonadDOM m, HasCallStack) => CSSFontFaceLoadEvent -> m DOMError getErrorUnsafe self = liftDOM (((self ^. js "error") >>= fromJSVal) >>= maybe (Prelude.error "Nothing to return") return) -- | getErrorUnchecked :: (MonadDOM m) => CSSFontFaceLoadEvent -> m DOMError getErrorUnchecked self = liftDOM ((self ^. js "error") >>= fromJSValUnchecked)