#if (defined(ghcjs_HOST_OS) && defined(USE_JAVASCRIPTFFI)) || !defined(USE_WEBKIT)
module GHCJS.DOM.HTMLIFrameElement
(ghcjs_dom_html_iframe_element_set_align,
htmliFrameElementSetAlign, ghcjs_dom_html_iframe_element_get_align,
htmliFrameElementGetAlign,
ghcjs_dom_html_iframe_element_set_frame_border,
htmliFrameElementSetFrameBorder,
ghcjs_dom_html_iframe_element_get_frame_border,
htmliFrameElementGetFrameBorder,
ghcjs_dom_html_iframe_element_set_height,
htmliFrameElementSetHeight,
ghcjs_dom_html_iframe_element_get_height,
htmliFrameElementGetHeight,
ghcjs_dom_html_iframe_element_set_long_desc,
htmliFrameElementSetLongDesc,
ghcjs_dom_html_iframe_element_get_long_desc,
htmliFrameElementGetLongDesc,
ghcjs_dom_html_iframe_element_set_margin_height,
htmliFrameElementSetMarginHeight,
ghcjs_dom_html_iframe_element_get_margin_height,
htmliFrameElementGetMarginHeight,
ghcjs_dom_html_iframe_element_set_margin_width,
htmliFrameElementSetMarginWidth,
ghcjs_dom_html_iframe_element_get_margin_width,
htmliFrameElementGetMarginWidth,
ghcjs_dom_html_iframe_element_set_name, htmliFrameElementSetName,
ghcjs_dom_html_iframe_element_get_name, htmliFrameElementGetName,
ghcjs_dom_html_iframe_element_set_sandbox,
htmliFrameElementSetSandbox,
ghcjs_dom_html_iframe_element_get_sandbox,
htmliFrameElementGetSandbox,
ghcjs_dom_html_iframe_element_set_scrolling,
htmliFrameElementSetScrolling,
ghcjs_dom_html_iframe_element_get_scrolling,
htmliFrameElementGetScrolling,
ghcjs_dom_html_iframe_element_set_src, htmliFrameElementSetSrc,
ghcjs_dom_html_iframe_element_get_src, htmliFrameElementGetSrc,
ghcjs_dom_html_iframe_element_set_srcdoc,
htmliFrameElementSetSrcdoc,
ghcjs_dom_html_iframe_element_get_srcdoc,
htmliFrameElementGetSrcdoc,
ghcjs_dom_html_iframe_element_set_width, htmliFrameElementSetWidth,
ghcjs_dom_html_iframe_element_get_width, htmliFrameElementGetWidth,
ghcjs_dom_html_iframe_element_get_content_document,
htmliFrameElementGetContentDocument,
ghcjs_dom_html_iframe_element_get_content_window,
htmliFrameElementGetContentWindow, HTMLIFrameElement,
IsHTMLIFrameElement, castToHTMLIFrameElement,
gTypeHTMLIFrameElement, toHTMLIFrameElement)
where
import GHCJS.Types
import GHCJS.Foreign
import GHCJS.Marshal
import Data.Int
import Data.Word
import GHCJS.DOM.Types
import Control.Applicative ((<$>))
import GHCJS.DOM.EventM
foreign import javascript unsafe "$1[\"align\"] = $2;"
ghcjs_dom_html_iframe_element_set_align ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetAlign ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetAlign self val
= ghcjs_dom_html_iframe_element_set_align
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"align\"]"
ghcjs_dom_html_iframe_element_get_align ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetAlign ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetAlign self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_align
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"frameBorder\"] = $2;"
ghcjs_dom_html_iframe_element_set_frame_border ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetFrameBorder ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetFrameBorder self val
= ghcjs_dom_html_iframe_element_set_frame_border
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"frameBorder\"]"
ghcjs_dom_html_iframe_element_get_frame_border ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetFrameBorder ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetFrameBorder self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_frame_border
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"height\"] = $2;"
ghcjs_dom_html_iframe_element_set_height ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetHeight ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetHeight self val
= ghcjs_dom_html_iframe_element_set_height
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"height\"]"
ghcjs_dom_html_iframe_element_get_height ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetHeight ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetHeight self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_height
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"longDesc\"] = $2;"
ghcjs_dom_html_iframe_element_set_long_desc ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetLongDesc ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetLongDesc self val
= ghcjs_dom_html_iframe_element_set_long_desc
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"longDesc\"]"
ghcjs_dom_html_iframe_element_get_long_desc ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetLongDesc ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetLongDesc self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_long_desc
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"marginHeight\"] = $2;"
ghcjs_dom_html_iframe_element_set_margin_height ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetMarginHeight ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetMarginHeight self val
= ghcjs_dom_html_iframe_element_set_margin_height
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"marginHeight\"]"
ghcjs_dom_html_iframe_element_get_margin_height ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetMarginHeight ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetMarginHeight self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_margin_height
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"marginWidth\"] = $2;"
ghcjs_dom_html_iframe_element_set_margin_width ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetMarginWidth ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetMarginWidth self val
= ghcjs_dom_html_iframe_element_set_margin_width
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"marginWidth\"]"
ghcjs_dom_html_iframe_element_get_margin_width ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetMarginWidth ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetMarginWidth self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_margin_width
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"name\"] = $2;"
ghcjs_dom_html_iframe_element_set_name ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetName ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetName self val
= ghcjs_dom_html_iframe_element_set_name
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"name\"]"
ghcjs_dom_html_iframe_element_get_name ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetName ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetName self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_name
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"sandbox\"] = $2;"
ghcjs_dom_html_iframe_element_set_sandbox ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetSandbox ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetSandbox self val
= ghcjs_dom_html_iframe_element_set_sandbox
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"sandbox\"]"
ghcjs_dom_html_iframe_element_get_sandbox ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetSandbox ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetSandbox self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_sandbox
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"scrolling\"] = $2;"
ghcjs_dom_html_iframe_element_set_scrolling ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetScrolling ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetScrolling self val
= ghcjs_dom_html_iframe_element_set_scrolling
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"scrolling\"]"
ghcjs_dom_html_iframe_element_get_scrolling ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetScrolling ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetScrolling self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_scrolling
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"src\"] = $2;"
ghcjs_dom_html_iframe_element_set_src ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetSrc ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetSrc self val
= ghcjs_dom_html_iframe_element_set_src
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"src\"]"
ghcjs_dom_html_iframe_element_get_src ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetSrc ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetSrc self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_src
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"srcdoc\"] = $2;"
ghcjs_dom_html_iframe_element_set_srcdoc ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetSrcdoc ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetSrcdoc self val
= ghcjs_dom_html_iframe_element_set_srcdoc
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"srcdoc\"]"
ghcjs_dom_html_iframe_element_get_srcdoc ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetSrcdoc ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetSrcdoc self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_srcdoc
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"width\"] = $2;"
ghcjs_dom_html_iframe_element_set_width ::
JSRef HTMLIFrameElement -> JSString -> IO ()
htmliFrameElementSetWidth ::
(IsHTMLIFrameElement self, ToJSString val) => self -> val -> IO ()
htmliFrameElementSetWidth self val
= ghcjs_dom_html_iframe_element_set_width
(unHTMLIFrameElement (toHTMLIFrameElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"width\"]"
ghcjs_dom_html_iframe_element_get_width ::
JSRef HTMLIFrameElement -> IO JSString
htmliFrameElementGetWidth ::
(IsHTMLIFrameElement self, FromJSString result) =>
self -> IO result
htmliFrameElementGetWidth self
= fromJSString <$>
(ghcjs_dom_html_iframe_element_get_width
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"contentDocument\"]"
ghcjs_dom_html_iframe_element_get_content_document ::
JSRef HTMLIFrameElement -> IO (JSRef Document)
htmliFrameElementGetContentDocument ::
(IsHTMLIFrameElement self) => self -> IO (Maybe Document)
htmliFrameElementGetContentDocument self
= fmap Document . maybeJSNull <$>
(ghcjs_dom_html_iframe_element_get_content_document
(unHTMLIFrameElement (toHTMLIFrameElement self)))
foreign import javascript unsafe "$1[\"contentWindow\"]"
ghcjs_dom_html_iframe_element_get_content_window ::
JSRef HTMLIFrameElement -> IO (JSRef DOMWindow)
htmliFrameElementGetContentWindow ::
(IsHTMLIFrameElement self) => self -> IO (Maybe DOMWindow)
htmliFrameElementGetContentWindow self
= fmap DOMWindow . maybeJSNull <$>
(ghcjs_dom_html_iframe_element_get_content_window
(unHTMLIFrameElement (toHTMLIFrameElement self)))
#else
module GHCJS.DOM.HTMLIFrameElement (
module Graphics.UI.Gtk.WebKit.DOM.HTMLIFrameElement
) where
import Graphics.UI.Gtk.WebKit.DOM.HTMLIFrameElement
#endif