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.WebEditor

Description

No description available in the introspection data.

Synopsis

Exported types

newtype WebEditor Source #

Memory-managed wrapper type.

Constructors

WebEditor (ManagedPtr WebEditor) 

Instances

Instances details
Eq WebEditor Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

Methods

(==) :: WebEditor -> WebEditor -> Bool

(/=) :: WebEditor -> WebEditor -> Bool

GObject WebEditor Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

ManagedPtrNewtype WebEditor Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

Methods

toManagedPtr :: WebEditor -> ManagedPtr WebEditor

TypedObject WebEditor Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

Methods

glibType :: IO GType

IsGValue WebEditor Source #

Convert WebEditor to and from GValue with toGValue and fromGValue.

Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

Methods

toGValue :: WebEditor -> IO GValue

fromGValue :: GValue -> IO WebEditor

HasParentTypes WebEditor Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

type ParentTypes WebEditor Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

type ParentTypes WebEditor = '[Object]

class (GObject o, IsDescendantOf WebEditor o) => IsWebEditor o Source #

Type class for types which can be safely cast to WebEditor, for instance with toWebEditor.

Instances

Instances details
(GObject o, IsDescendantOf WebEditor o) => IsWebEditor o Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.WebEditor

toWebEditor :: (MonadIO m, IsWebEditor o) => o -> m WebEditor Source #

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

Methods

Overloaded methods

getPage

webEditorGetPage Source #

Arguments

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

editor: a WebEditor

-> m WebPage

Returns: the associated WebPage

Gets the WebPage that is associated with the WebEditor that can be used to access the DOMDocument currently loaded into it.

Since: 2.10

Signals

selectionChanged

type C_WebEditorSelectionChangedCallback = Ptr () -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type WebEditorSelectionChangedCallback = IO () Source #

This signal is emitted for every selection change inside a WebPage as well as for every caret position change as the caret is a collapsed selection.

Since: 2.10

afterWebEditorSelectionChanged :: (IsWebEditor a, MonadIO m) => a -> WebEditorSelectionChangedCallback -> m SignalHandlerId Source #

Connect a signal handler for the selectionChanged signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after webEditor #selectionChanged callback

onWebEditorSelectionChanged :: (IsWebEditor a, MonadIO m) => a -> WebEditorSelectionChangedCallback -> m SignalHandlerId Source #

Connect a signal handler for the selectionChanged signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on webEditor #selectionChanged callback