gi-webkit2-4.0.14: WebKit2 bindings

CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (garetxe@gmail.com)
Safe HaskellNone
LanguageHaskell2010

GI.WebKit2.Objects.BackForwardList

Contents

Description

 

Synopsis

Exported types

Methods

getBackItem

backForwardListGetBackItem Source #

Arguments

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

backForwardList: a BackForwardList

-> m BackForwardListItem

Returns: the BackForwardListItem preceding the current item or Nothing.

Returns the item that precedes the current item.

getBackList

backForwardListGetBackList Source #

Arguments

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

backForwardList: a BackForwardList

-> m [BackForwardListItem]

Returns: a List of items preceding the current item.

No description available in the introspection data.

getBackListWithLimit

backForwardListGetBackListWithLimit Source #

Arguments

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

backForwardList: a BackForwardList

-> Word32

limit: the number of items to retrieve

-> m [BackForwardListItem]

Returns: a List of items preceding the current item limited by limit.

No description available in the introspection data.

getCurrentItem

backForwardListGetCurrentItem Source #

Arguments

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

backForwardList: a BackForwardList

-> m BackForwardListItem

Returns: a BackForwardListItem or Nothing if backForwardList is empty.

Returns the current item in backForwardList.

getForwardItem

backForwardListGetForwardItem Source #

Arguments

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

backForwardList: a BackForwardList

-> m BackForwardListItem

Returns: the BackForwardListItem following the current item or Nothing.

Returns the item that follows the current item.

getForwardList

backForwardListGetForwardList Source #

Arguments

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

backForwardList: a BackForwardList

-> m [BackForwardListItem]

Returns: a List of items following the current item.

No description available in the introspection data.

getForwardListWithLimit

backForwardListGetForwardListWithLimit Source #

Arguments

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

backForwardList: a BackForwardList

-> Word32

limit: the number of items to retrieve

-> m [BackForwardListItem]

Returns: a List of items following the current item limited by limit.

No description available in the introspection data.

getLength

backForwardListGetLength Source #

Arguments

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

backForwardList: a BackForwardList

-> m Word32

Returns: the length of backForwardList.

No description available in the introspection data.

getNthItem

backForwardListGetNthItem Source #

Arguments

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

backForwardList: a BackForwardList

-> Int32

index: the index of the item

-> m BackForwardListItem

Returns: the BackForwardListItem located at the specified index relative to the current item.

Returns the item at a given index relative to the current item.

Signals

changed