| Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria |
| Safe Haskell | None |
| Language | Haskell2010 |
GI.WebKit2WebExtension.Objects.DOMHTMLStyleElement
Description
No description available in the introspection data.
Synopsis
- newtype DOMHTMLStyleElement = DOMHTMLStyleElement (ManagedPtr DOMHTMLStyleElement)
- class (GObject o, IsDescendantOf DOMHTMLStyleElement o) => IsDOMHTMLStyleElement o
- toDOMHTMLStyleElement :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m DOMHTMLStyleElement
- dOMHTMLStyleElementGetDisabled :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> m Bool
- dOMHTMLStyleElementGetMedia :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> m Text
- dOMHTMLStyleElementGetSheet :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> m DOMStyleSheet
- dOMHTMLStyleElementGetTypeAttr :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> m Text
- dOMHTMLStyleElementSetDisabled :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> Bool -> m ()
- dOMHTMLStyleElementSetMedia :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> Text -> m ()
- dOMHTMLStyleElementSetTypeAttr :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) => a -> Text -> m ()
- constructDOMHTMLStyleElementDisabled :: (IsDOMHTMLStyleElement o, MonadIO m) => Bool -> m (GValueConstruct o)
- getDOMHTMLStyleElementDisabled :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m Bool
- setDOMHTMLStyleElementDisabled :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> Bool -> m ()
- constructDOMHTMLStyleElementMedia :: (IsDOMHTMLStyleElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLStyleElementMedia :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m (Maybe Text)
- setDOMHTMLStyleElementMedia :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> Text -> m ()
- getDOMHTMLStyleElementSheet :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m (Maybe DOMStyleSheet)
- clearDOMHTMLStyleElementType :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m ()
- constructDOMHTMLStyleElementType :: (IsDOMHTMLStyleElement o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMHTMLStyleElementType :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m (Maybe Text)
- setDOMHTMLStyleElementType :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> Text -> m ()
Exported types
newtype DOMHTMLStyleElement Source #
Memory-managed wrapper type.
Constructors
| DOMHTMLStyleElement (ManagedPtr DOMHTMLStyleElement) |
Instances
| Eq DOMHTMLStyleElement Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLStyleElement Methods (==) :: DOMHTMLStyleElement -> DOMHTMLStyleElement -> Bool (/=) :: DOMHTMLStyleElement -> DOMHTMLStyleElement -> Bool | |
| GObject DOMHTMLStyleElement Source # | |
| ManagedPtrNewtype DOMHTMLStyleElement Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLStyleElement Methods toManagedPtr :: DOMHTMLStyleElement -> ManagedPtr DOMHTMLStyleElement | |
| TypedObject DOMHTMLStyleElement Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLStyleElement Methods glibType :: IO GType | |
| IsGValue DOMHTMLStyleElement Source # | Convert |
| HasParentTypes DOMHTMLStyleElement Source # | |
| type ParentTypes DOMHTMLStyleElement Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMHTMLStyleElement type ParentTypes DOMHTMLStyleElement = '[DOMHTMLElement, DOMElement, DOMNode, DOMObject, Object, DOMEventTarget] | |
class (GObject o, IsDescendantOf DOMHTMLStyleElement o) => IsDOMHTMLStyleElement o Source #
Type class for types which can be safely cast to DOMHTMLStyleElement, for instance with toDOMHTMLStyleElement.
Instances
| (GObject o, IsDescendantOf DOMHTMLStyleElement o) => IsDOMHTMLStyleElement o Source # | |
toDOMHTMLStyleElement :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m DOMHTMLStyleElement Source #
Cast to DOMHTMLStyleElement, for types for which this is known to be safe. For general casts, use castTo.
Methods
Overloaded methods
getDisabled
dOMHTMLStyleElementGetDisabled Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getMedia
dOMHTMLStyleElementGetMedia Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getSheet
dOMHTMLStyleElementGetSheet Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> m DOMStyleSheet | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getTypeAttr
dOMHTMLStyleElementGetTypeAttr Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setDisabled
dOMHTMLStyleElementSetDisabled Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> Bool |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setMedia
dOMHTMLStyleElementSetMedia Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setTypeAttr
dOMHTMLStyleElementSetTypeAttr Source #
Arguments
| :: (HasCallStack, MonadIO m, IsDOMHTMLStyleElement a) | |
| => a |
|
| -> Text |
|
| -> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Properties
disabled
No description available in the introspection data.
constructDOMHTMLStyleElementDisabled :: (IsDOMHTMLStyleElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “disabled” property. This is rarely needed directly, but it is used by new.
getDOMHTMLStyleElementDisabled :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m Bool Source #
Get the value of the “disabled” property.
When overloading is enabled, this is equivalent to
get dOMHTMLStyleElement #disabled
setDOMHTMLStyleElementDisabled :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> Bool -> m () Source #
Set the value of the “disabled” property.
When overloading is enabled, this is equivalent to
setdOMHTMLStyleElement [ #disabled:=value ]
media
No description available in the introspection data.
constructDOMHTMLStyleElementMedia :: (IsDOMHTMLStyleElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “media” property. This is rarely needed directly, but it is used by new.
getDOMHTMLStyleElementMedia :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m (Maybe Text) Source #
Get the value of the “media” property.
When overloading is enabled, this is equivalent to
get dOMHTMLStyleElement #media
setDOMHTMLStyleElementMedia :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> Text -> m () Source #
Set the value of the “media” property.
When overloading is enabled, this is equivalent to
setdOMHTMLStyleElement [ #media:=value ]
sheet
No description available in the introspection data.
getDOMHTMLStyleElementSheet :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m (Maybe DOMStyleSheet) Source #
Get the value of the “sheet” property.
When overloading is enabled, this is equivalent to
get dOMHTMLStyleElement #sheet
type
No description available in the introspection data.
clearDOMHTMLStyleElementType :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m () Source #
Set the value of the “type” property to Nothing.
When overloading is enabled, this is equivalent to
clear #type
constructDOMHTMLStyleElementType :: (IsDOMHTMLStyleElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “type” property. This is rarely needed directly, but it is used by new.
getDOMHTMLStyleElementType :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> m (Maybe Text) Source #
Get the value of the “type” property.
When overloading is enabled, this is equivalent to
get dOMHTMLStyleElement #type
setDOMHTMLStyleElementType :: (MonadIO m, IsDOMHTMLStyleElement o) => o -> Text -> m () Source #
Set the value of the “type” property.
When overloading is enabled, this is equivalent to
setdOMHTMLStyleElement [ #type:=value ]