| Copyright | Will Thompson and Iñaki García Etxebarria |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
GI.WebKit2WebExtension.Objects.DOMHTMLElement
Contents
- Exported types
- Methods
- click
- getAccessKey
- getChildren
- getContentEditable
- getDir
- getDraggable
- getHidden
- getInnerHtml
- getInnerText
- getIsContentEditable
- getLang
- getOuterHtml
- getOuterText
- getSpellcheck
- getTabIndex
- getTitle
- getTranslate
- getWebkitdropzone
- setAccessKey
- setContentEditable
- setDir
- setDraggable
- setHidden
- setInnerHtml
- setInnerText
- setLang
- setOuterHtml
- setOuterText
- setSpellcheck
- setTabIndex
- setTitle
- setTranslate
- setWebkitdropzone
- Properties
Description
No description available in the introspection data.
Synopsis
- newtype DOMHTMLElement = DOMHTMLElement (ManagedPtr DOMHTMLElement)
- class (GObject o, IsDescendantOf DOMHTMLElement o) => IsDOMHTMLElement o
- toDOMHTMLElement :: (MonadIO m, IsDOMHTMLElement o) => o -> m DOMHTMLElement
- dOMHTMLElementClick :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m ()
- dOMHTMLElementGetAccessKey :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetChildren :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m DOMHTMLCollection
- dOMHTMLElementGetContentEditable :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetDir :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetDraggable :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Bool
- dOMHTMLElementGetHidden :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Bool
- dOMHTMLElementGetInnerHtml :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetInnerText :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetIsContentEditable :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Bool
- dOMHTMLElementGetLang :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetOuterHtml :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetOuterText :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetSpellcheck :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Bool
- dOMHTMLElementGetTabIndex :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m CLong
- dOMHTMLElementGetTitle :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementGetTranslate :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Bool
- dOMHTMLElementGetWebkitdropzone :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> m Text
- dOMHTMLElementSetAccessKey :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetContentEditable :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetDir :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetDraggable :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Bool -> m ()
- dOMHTMLElementSetHidden :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Bool -> m ()
- dOMHTMLElementSetInnerHtml :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetInnerText :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetLang :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetOuterHtml :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetOuterText :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetSpellcheck :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Bool -> m ()
- dOMHTMLElementSetTabIndex :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> CLong -> m ()
- dOMHTMLElementSetTitle :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- dOMHTMLElementSetTranslate :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Bool -> m ()
- dOMHTMLElementSetWebkitdropzone :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) => a -> Text -> m ()
- constructDOMHTMLElementAccessKey :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementAccessKey :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementAccessKey :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- clearDOMHTMLElementContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> m ()
- constructDOMHTMLElementContentEditable :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- constructDOMHTMLElementDir :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementDir :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementDir :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- constructDOMHTMLElementDraggable :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o)
- getDOMHTMLElementDraggable :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool
- setDOMHTMLElementDraggable :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m ()
- constructDOMHTMLElementHidden :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o)
- getDOMHTMLElementHidden :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool
- setDOMHTMLElementHidden :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m ()
- clearDOMHTMLElementInnerText :: (MonadIO m, IsDOMHTMLElement o) => o -> m ()
- constructDOMHTMLElementInnerText :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementInnerText :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementInnerText :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- getDOMHTMLElementIsContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool
- constructDOMHTMLElementLang :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementLang :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementLang :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- clearDOMHTMLElementOuterText :: (MonadIO m, IsDOMHTMLElement o) => o -> m ()
- constructDOMHTMLElementOuterText :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementOuterText :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementOuterText :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- constructDOMHTMLElementSpellcheck :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o)
- getDOMHTMLElementSpellcheck :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool
- setDOMHTMLElementSpellcheck :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m ()
- constructDOMHTMLElementTabIndex :: (IsDOMHTMLElement o, MonadIO m) => CLong -> m (GValueConstruct o)
- getDOMHTMLElementTabIndex :: (MonadIO m, IsDOMHTMLElement o) => o -> m CLong
- setDOMHTMLElementTabIndex :: (MonadIO m, IsDOMHTMLElement o) => o -> CLong -> m ()
- constructDOMHTMLElementTitle :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementTitle :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementTitle :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
- constructDOMHTMLElementTranslate :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o)
- getDOMHTMLElementTranslate :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool
- setDOMHTMLElementTranslate :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m ()
- constructDOMHTMLElementWebkitdropzone :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLElementWebkitdropzone :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text)
- setDOMHTMLElementWebkitdropzone :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m ()
Exported types
newtype DOMHTMLElement Source #
Memory-managed wrapper type.
Constructors
| DOMHTMLElement (ManagedPtr DOMHTMLElement) |
Instances
| Eq DOMHTMLElement Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLElement Methods (==) :: DOMHTMLElement -> DOMHTMLElement -> Bool # (/=) :: DOMHTMLElement -> DOMHTMLElement -> Bool # | |
| GObject DOMHTMLElement Source # | |
| ManagedPtrNewtype DOMHTMLElement Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLElement Methods toManagedPtr :: DOMHTMLElement -> ManagedPtr DOMHTMLElement | |
| TypedObject DOMHTMLElement Source # | |
| HasParentTypes DOMHTMLElement Source # | |
| IsGValue (Maybe DOMHTMLElement) Source # | Convert |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLElement Methods gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe DOMHTMLElement -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe DOMHTMLElement) | |
| type ParentTypes DOMHTMLElement Source # | |
class (GObject o, IsDescendantOf DOMHTMLElement o) => IsDOMHTMLElement o Source #
Type class for types which can be safely cast to DOMHTMLElement, for instance with toDOMHTMLElement.
Instances
| (GObject o, IsDescendantOf DOMHTMLElement o) => IsDOMHTMLElement o Source # | |
toDOMHTMLElement :: (MonadIO m, IsDOMHTMLElement o) => o -> m DOMHTMLElement Source #
Cast to DOMHTMLElement, for types for which this is known to be safe. For general casts, use castTo.
Methods
Click to display all available methods, including inherited ones
Methods
addEventListener, appendChild, bindProperty, bindPropertyFull, blur, click, cloneNodeWithError, closest, compareDocumentPosition, contains, dispatchEvent, focus, forceFloating, freezeNotify, getv, hasAttribute, hasAttributeNs, hasAttributes, hasChildNodes, htmlInputElementGetAutoFilled, htmlInputElementIsUserEdited, htmlInputElementSetAutoFilled, htmlInputElementSetEditingValue, insertAdjacentElement, insertAdjacentHtml, insertAdjacentText, insertBefore, isDefaultNamespace, isEqualNode, isFloating, isSameNode, isSupported, lookupNamespaceUri, lookupPrefix, matches, normalize, notify, notifyByPspec, querySelector, querySelectorAll, ref, refSink, remove, removeAttribute, removeAttributeNode, removeAttributeNs, removeChild, removeEventListener, replaceChild, requestPointerLock, runDispose, scrollByLines, scrollByPages, scrollIntoView, scrollIntoViewIfNeeded, stealData, stealQdata, thawNotify, unref, watchClosure, webkitMatchesSelector, webkitRequestFullscreen.
Getters
getAccessKey, getAttribute, getAttributeNode, getAttributeNodeNs, getAttributeNs, getAttributes, getBaseUri, getBoundingClientRect, getChildElementCount, getChildNodes, getChildren, getClassList, getClassName, getClientHeight, getClientLeft, getClientRects, getClientTop, getClientWidth, getContentEditable, getData, getDir, getDraggable, getElementsByClassName, getElementsByClassNameAsHtmlCollection, getElementsByTagName, getElementsByTagNameAsHtmlCollection, getElementsByTagNameNs, getElementsByTagNameNsAsHtmlCollection, getFirstChild, getFirstElementChild, getHidden, getId, getInnerHtml, getInnerText, getIsContentEditable, getLang, getLastChild, getLastElementChild, getLocalName, getNamespaceUri, getNextElementSibling, getNextSibling, getNodeName, getNodeType, getNodeValue, getOffsetHeight, getOffsetLeft, getOffsetParent, getOffsetTop, getOffsetWidth, getOuterHtml, getOuterText, getOwnerDocument, getParentElement, getParentNode, getPrefix, getPreviousElementSibling, getPreviousSibling, getProperty, getQdata, getScrollHeight, getScrollLeft, getScrollTop, getScrollWidth, getSpellcheck, getStyle, getTabIndex, getTagName, getTextContent, getTitle, getTranslate, getWebkitRegionOverset, getWebkitdropzone.
Setters
setAccessKey, setAttribute, setAttributeNode, setAttributeNodeNs, setAttributeNs, setClassName, setContentEditable, setData, setDataFull, setDir, setDraggable, setHidden, setId, setInnerHtml, setInnerText, setLang, setNodeValue, setOuterHtml, setOuterText, setPrefix, setProperty, setScrollLeft, setScrollTop, setSpellcheck, setTabIndex, setTextContent, setTitle, setTranslate, setWebkitdropzone.
click
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getAccessKey
dOMHTMLElementGetAccessKey Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getChildren
dOMHTMLElementGetChildren Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.10)Use dOMElementGetChildren instead.
No description available in the introspection data.
getContentEditable
dOMHTMLElementGetContentEditable Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getDir
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getDraggable
dOMHTMLElementGetDraggable Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getHidden
dOMHTMLElementGetHidden Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getInnerHtml
dOMHTMLElementGetInnerHtml Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: a |
Deprecated: (Since version 2.8)Use dOMElementGetInnerHtml instead.
No description available in the introspection data.
getInnerText
dOMHTMLElementGetInnerText Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getIsContentEditable
dOMHTMLElementGetIsContentEditable Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getLang
dOMHTMLElementGetLang Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getOuterHtml
dOMHTMLElementGetOuterHtml Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: a |
Deprecated: (Since version 2.8)Use dOMElementGetOuterHtml instead.
No description available in the introspection data.
getOuterText
dOMHTMLElementGetOuterText Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getSpellcheck
dOMHTMLElementGetSpellcheck Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getTabIndex
dOMHTMLElementGetTabIndex Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m CLong | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getTitle
dOMHTMLElementGetTitle Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getTranslate
dOMHTMLElementGetTranslate Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getWebkitdropzone
dOMHTMLElementGetWebkitdropzone Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
setAccessKey
dOMHTMLElementSetAccessKey Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setContentEditable
dOMHTMLElementSetContentEditable Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setDir
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setDraggable
dOMHTMLElementSetDraggable Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Bool |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
setHidden
dOMHTMLElementSetHidden Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Bool |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
setInnerHtml
dOMHTMLElementSetInnerHtml Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () | (Can throw |
Deprecated: (Since version 2.8)Use dOMElementSetInnerHtml instead.
No description available in the introspection data.
setInnerText
dOMHTMLElementSetInnerText Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setLang
dOMHTMLElementSetLang Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setOuterHtml
dOMHTMLElementSetOuterHtml Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () | (Can throw |
Deprecated: (Since version 2.8)Use dOMElementSetOuterHtml instead.
No description available in the introspection data.
setOuterText
dOMHTMLElementSetOuterText Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setSpellcheck
dOMHTMLElementSetSpellcheck Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Bool |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
setTabIndex
dOMHTMLElementSetTabIndex Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> CLong |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setTitle
dOMHTMLElementSetTitle Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setTranslate
dOMHTMLElementSetTranslate Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Bool |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
setWebkitdropzone
dOMHTMLElementSetWebkitdropzone Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
Properties
accessKey
No description available in the introspection data.
constructDOMHTMLElementAccessKey :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “access-key” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementAccessKey :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “access-key” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #accessKey
setDOMHTMLElementAccessKey :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “access-key” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #accessKey:=value ]
contentEditable
No description available in the introspection data.
clearDOMHTMLElementContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> m () Source #
Set the value of the “content-editable” property to Nothing.
When overloading is enabled, this is equivalent to
clear #contentEditable
constructDOMHTMLElementContentEditable :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “content-editable” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “content-editable” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #contentEditable
setDOMHTMLElementContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “content-editable” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #contentEditable:=value ]
dir
No description available in the introspection data.
constructDOMHTMLElementDir :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “dir” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementDir :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “dir” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #dir
setDOMHTMLElementDir :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “dir” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #dir:=value ]
draggable
No description available in the introspection data.
constructDOMHTMLElementDraggable :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “draggable” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementDraggable :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool Source #
Get the value of the “draggable” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #draggable
setDOMHTMLElementDraggable :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m () Source #
Set the value of the “draggable” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #draggable:=value ]
No description available in the introspection data.
constructDOMHTMLElementHidden :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “hidden” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementHidden :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool Source #
Get the value of the “hidden” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #hidden
setDOMHTMLElementHidden :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m () Source #
Set the value of the “hidden” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #hidden:=value ]
innerText
No description available in the introspection data.
clearDOMHTMLElementInnerText :: (MonadIO m, IsDOMHTMLElement o) => o -> m () Source #
Set the value of the “inner-text” property to Nothing.
When overloading is enabled, this is equivalent to
clear #innerText
constructDOMHTMLElementInnerText :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “inner-text” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementInnerText :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “inner-text” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #innerText
setDOMHTMLElementInnerText :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “inner-text” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #innerText:=value ]
isContentEditable
No description available in the introspection data.
getDOMHTMLElementIsContentEditable :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool Source #
Get the value of the “is-content-editable” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #isContentEditable
lang
No description available in the introspection data.
constructDOMHTMLElementLang :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “lang” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementLang :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “lang” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #lang
setDOMHTMLElementLang :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “lang” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #lang:=value ]
outerText
No description available in the introspection data.
clearDOMHTMLElementOuterText :: (MonadIO m, IsDOMHTMLElement o) => o -> m () Source #
Set the value of the “outer-text” property to Nothing.
When overloading is enabled, this is equivalent to
clear #outerText
constructDOMHTMLElementOuterText :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “outer-text” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementOuterText :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “outer-text” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #outerText
setDOMHTMLElementOuterText :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “outer-text” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #outerText:=value ]
spellcheck
No description available in the introspection data.
constructDOMHTMLElementSpellcheck :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “spellcheck” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementSpellcheck :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool Source #
Get the value of the “spellcheck” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #spellcheck
setDOMHTMLElementSpellcheck :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m () Source #
Set the value of the “spellcheck” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #spellcheck:=value ]
tabIndex
No description available in the introspection data.
constructDOMHTMLElementTabIndex :: (IsDOMHTMLElement o, MonadIO m) => CLong -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “tab-index” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementTabIndex :: (MonadIO m, IsDOMHTMLElement o) => o -> m CLong Source #
Get the value of the “tab-index” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #tabIndex
setDOMHTMLElementTabIndex :: (MonadIO m, IsDOMHTMLElement o) => o -> CLong -> m () Source #
Set the value of the “tab-index” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #tabIndex:=value ]
title
No description available in the introspection data.
constructDOMHTMLElementTitle :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “title” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementTitle :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “title” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #title
setDOMHTMLElementTitle :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “title” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #title:=value ]
translate
No description available in the introspection data.
constructDOMHTMLElementTranslate :: (IsDOMHTMLElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “translate” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementTranslate :: (MonadIO m, IsDOMHTMLElement o) => o -> m Bool Source #
Get the value of the “translate” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #translate
setDOMHTMLElementTranslate :: (MonadIO m, IsDOMHTMLElement o) => o -> Bool -> m () Source #
Set the value of the “translate” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #translate:=value ]
webkitdropzone
No description available in the introspection data.
constructDOMHTMLElementWebkitdropzone :: (IsDOMHTMLElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “webkitdropzone” property. This is rarely needed directly, but it is used by new.
getDOMHTMLElementWebkitdropzone :: (MonadIO m, IsDOMHTMLElement o) => o -> m (Maybe Text) Source #
Get the value of the “webkitdropzone” property.
When overloading is enabled, this is equivalent to
get dOMHTMLElement #webkitdropzone
setDOMHTMLElementWebkitdropzone :: (MonadIO m, IsDOMHTMLElement o) => o -> Text -> m () Source #
Set the value of the “webkitdropzone” property.
When overloading is enabled, this is equivalent to
setdOMHTMLElement [ #webkitdropzone:=value ]