gi-webkit2-4.0.28: WebKit2 bindings
CopyrightWill Thompson and Iñaki García Etxebarria
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.WebKit2.Structs.UserStyleSheet

Description

No description available in the introspection data.

Synopsis

Exported types

Methods

Click to display all available methods, including inherited ones

Expand

Methods

ref, unref.

Getters

None.

Setters

None.

new

userStyleSheetNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Text

source: Source code of the user style sheet.

-> UserContentInjectedFrames

injectedFrames: A UserContentInjectedFrames value

-> UserStyleLevel

level: A UserStyleLevel

-> Maybe [Text]

allowList: An allow_list of URI patterns or Nothing

-> Maybe [Text]

blockList: A block_list of URI patterns or Nothing

-> m UserStyleSheet

Returns: A new UserStyleSheet

Creates a new user style sheet. Style sheets can be applied to some URIs only by passing non-null values for allowList or blockList. Passing a Nothing allow_list implies that all URIs are on the allow_list. The style sheet is applied if an URI matches the allow_list and not the block_list. URI patterns must be of the form [protocol]://[host]/[path], where the *host* and *path* components can contain the wildcard character (*) to represent zero or more other characters.

Since: 2.6

newForWorld

userStyleSheetNewForWorld Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Text

source: Source code of the user style sheet.

-> UserContentInjectedFrames

injectedFrames: A UserContentInjectedFrames value

-> UserStyleLevel

level: A UserStyleLevel

-> Text

worldName: the name of a WebKitScriptWorld

-> Maybe [Text]

allowList: An allow_list of URI patterns or Nothing

-> Maybe [Text]

blockList: A block_list of URI patterns or Nothing

-> m UserStyleSheet

Returns: A new UserStyleSheet

Creates a new user style sheet for script world with name worldName. See userStyleSheetNew for a full description.

Since: 2.22

ref

userStyleSheetRef Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> UserStyleSheet

userStyleSheet: a UserStyleSheet

-> m UserStyleSheet

Returns: The passed UserStyleSheet

Atomically increments the reference count of userStyleSheet by one. This function is MT-safe and may be called from any thread.

Since: 2.6

unref

userStyleSheetUnref Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> UserStyleSheet

userStyleSheet: a UserStyleSheet

-> m () 

Atomically decrements the reference count of userStyleSheet by one. If the reference count drops to 0, all memory allocated by UserStyleSheet is released. This function is MT-safe and may be called from any thread.

Since: 2.6