module JSDOM.Generated.CSSFontFaceLoadEvent
(newCSSFontFaceLoadEvent, 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 Data.Traversable (mapM)
import Language.Javascript.JSaddle (JSM(..), JSVal(..), JSString, strictEqual, toJSVal, valToStr, valToNumber, valToBool, js, jss, jsf, jsg, function, asyncFunction, new, array, jsUndefined, (!), (!!))
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
newCSSFontFaceLoadEvent ::
(MonadDOM m, ToJSString type') =>
type' -> Maybe CSSFontFaceLoadEventInit -> m CSSFontFaceLoadEvent
newCSSFontFaceLoadEvent type' eventInit
= liftDOM
(CSSFontFaceLoadEvent <$>
new (jsg "CSSFontFaceLoadEvent")
[toJSVal type', toJSVal eventInit])
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)