gi-webkit2webextension-4.0.25: WebKit2-WebExtension bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.WebKit2WebExtension.Objects.DOMHTMLOptionElement

Description

No description available in the introspection data.

Synopsis

Exported types

newtype DOMHTMLOptionElement Source #

Memory-managed wrapper type.

Constructors

DOMHTMLOptionElement (ManagedPtr DOMHTMLOptionElement) 

class (GObject o, IsDescendantOf DOMHTMLOptionElement o) => IsDOMHTMLOptionElement o Source #

Type class for types which can be safely cast to DOMHTMLOptionElement, for instance with toDOMHTMLOptionElement.

Instances

Instances details
(GObject o, IsDescendantOf DOMHTMLOptionElement o) => IsDOMHTMLOptionElement o Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMHTMLOptionElement

toDOMHTMLOptionElement :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m DOMHTMLOptionElement Source #

Cast to DOMHTMLOptionElement, for types for which this is known to be safe. For general casts, use castTo.

Methods

Overloaded methods

getDefaultSelected

dOMHTMLOptionElementGetDefaultSelected Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getDisabled

dOMHTMLOptionElementGetDisabled Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getForm

dOMHTMLOptionElementGetForm Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m DOMHTMLFormElement

Returns: A DOMHTMLFormElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getIndex

dOMHTMLOptionElementGetIndex Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m CLong

Returns: A glong

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getLabel

dOMHTMLOptionElementGetLabel Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getSelected

dOMHTMLOptionElementGetSelected Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getText

dOMHTMLOptionElementGetText Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getValue

dOMHTMLOptionElementGetValue Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setDefaultSelected

dOMHTMLOptionElementSetDefaultSelected Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> Bool

value: A Bool

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setDisabled

dOMHTMLOptionElementSetDisabled Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> Bool

value: A Bool

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setLabel

dOMHTMLOptionElementSetLabel Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setSelected

dOMHTMLOptionElementSetSelected Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> Bool

value: A Bool

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setValue

dOMHTMLOptionElementSetValue Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMHTMLOptionElement a) 
=> a

self: A DOMHTMLOptionElement

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Properties

defaultSelected

No description available in the introspection data.

constructDOMHTMLOptionElementDefaultSelected :: (IsDOMHTMLOptionElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “default-selected” property. This is rarely needed directly, but it is used by new.

getDOMHTMLOptionElementDefaultSelected :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m Bool Source #

Get the value of the “default-selected” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #defaultSelected

setDOMHTMLOptionElementDefaultSelected :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> Bool -> m () Source #

Set the value of the “default-selected” property. When overloading is enabled, this is equivalent to

set dOMHTMLOptionElement [ #defaultSelected := value ]

disabled

No description available in the introspection data.

constructDOMHTMLOptionElementDisabled :: (IsDOMHTMLOptionElement 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.

getDOMHTMLOptionElementDisabled :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m Bool Source #

Get the value of the “disabled” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #disabled

setDOMHTMLOptionElementDisabled :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> Bool -> m () Source #

Set the value of the “disabled” property. When overloading is enabled, this is equivalent to

set dOMHTMLOptionElement [ #disabled := value ]

form

No description available in the introspection data.

getDOMHTMLOptionElementForm :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m DOMHTMLFormElement Source #

Get the value of the “form” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #form

index

No description available in the introspection data.

getDOMHTMLOptionElementIndex :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m CLong Source #

Get the value of the “index” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #index

label

No description available in the introspection data.

constructDOMHTMLOptionElementLabel :: (IsDOMHTMLOptionElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “label” property. This is rarely needed directly, but it is used by new.

getDOMHTMLOptionElementLabel :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m (Maybe Text) Source #

Get the value of the “label” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #label

setDOMHTMLOptionElementLabel :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> Text -> m () Source #

Set the value of the “label” property. When overloading is enabled, this is equivalent to

set dOMHTMLOptionElement [ #label := value ]

selected

No description available in the introspection data.

constructDOMHTMLOptionElementSelected :: (IsDOMHTMLOptionElement o, MonadIO m) => Bool -> m (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “selected” property. This is rarely needed directly, but it is used by new.

getDOMHTMLOptionElementSelected :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m Bool Source #

Get the value of the “selected” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #selected

setDOMHTMLOptionElementSelected :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> Bool -> m () Source #

Set the value of the “selected” property. When overloading is enabled, this is equivalent to

set dOMHTMLOptionElement [ #selected := value ]

text

No description available in the introspection data.

getDOMHTMLOptionElementText :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m (Maybe Text) Source #

Get the value of the “text” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #text

value

No description available in the introspection data.

constructDOMHTMLOptionElementValue :: (IsDOMHTMLOptionElement o, MonadIO m) => Text -> m (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “value” property. This is rarely needed directly, but it is used by new.

getDOMHTMLOptionElementValue :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> m (Maybe Text) Source #

Get the value of the “value” property. When overloading is enabled, this is equivalent to

get dOMHTMLOptionElement #value

setDOMHTMLOptionElementValue :: (MonadIO m, IsDOMHTMLOptionElement o) => o -> Text -> m () Source #

Set the value of the “value” property. When overloading is enabled, this is equivalent to

set dOMHTMLOptionElement [ #value := value ]