GObject.Object
WebKit.WebBackForwardList
Import line: | WebKit = imports.gi.WebKit; |
GIR File: | WebKit-3.0.gir |
C documentation: | WebKitWebBackForwardList |
Class : | WebBackForwardList |
Extends: | GObject.Object |
Properties | Defined By | |
---|---|---|
parent_instance : GObject.Object
read only
|
WebKit.WebBackForwardList | |
priv : WebKit.WebBackForwardListPrivate
read only
|
WebKit.WebBackForwardList |
Method / Constructor | Defined By | |
---|---|---|
new WebKit.WebBackForwardList
(Object properties)
Create a new WebKit.WebBackForwardList
Create a new WebKit.WebBackForwardList
|
||
add_item
(WebHistoryItem history_item)
:
none
Adds the item to the WebKitWebBackForwardList.
Adds the item to the WebKitWebBackForwardList.
The webBackForwardList will add a reference to the webHistoryItem, so you don't need to keep a reference once you've added it to the list.
|
WebKit.WebBackForwardList | |
clear
()
:
none
Clears the webBackForwardList by removing all its elements.
Clears the webBackForwardList by removing all its elements. Note that not even
the current page is kept in list when cleared so you would have to add it later.
|
WebKit.WebBackForwardList | |
contains_item
(WebHistoryItem history_item)
:
gboolean
Checks if web_history_item is in the back forward list
Checks if web_history_item is in the back forward list
|
WebKit.WebBackForwardList | |
get_back_item
()
:
WebKit.WebHistoryItem
Returns the item that precedes the current item
Returns the item that precedes the current item
|
WebKit.WebBackForwardList | |
get_back_length
()
:
gint32
Returns the number of items that preced the current item.
Returns the number of items that preced the current item.
|
WebKit.WebBackForwardList | |
WebKit.WebBackForwardList | ||
get_current_item
()
:
WebKit.WebHistoryItem
Returns the current item.
Returns the current item.
Returns a NULL value if the back forward list is empty
|
WebKit.WebBackForwardList | |
get_forward_item
()
:
WebKit.WebHistoryItem
Returns the item that succeeds the current item.
Returns the item that succeeds the current item.
Returns a NULL value if there nothing that succeeds the current item
|
WebKit.WebBackForwardList | |
get_forward_length
()
:
gint32
Returns the number of items that succeed the current item.
Returns the number of items that succeed the current item.
|
WebKit.WebBackForwardList | |
WebKit.WebBackForwardList | ||
get_limit
()
:
gint32
Returns the maximum limit of the back forward list.
Returns the maximum limit of the back forward list.
|
WebKit.WebBackForwardList | |
get_nth_item
(gint32 index)
:
WebKit.WebHistoryItem
Returns the item at a given index relative to the current item.
Returns the item at a given index relative to the current item.
|
WebKit.WebBackForwardList | |
go_back
()
:
none
Steps backward in the back forward list
Steps backward in the back forward list
|
WebKit.WebBackForwardList | |
go_forward
()
:
none
Steps forward in the back forward list
Steps forward in the back forward list
|
WebKit.WebBackForwardList | |
go_to_item
(WebHistoryItem history_item)
:
none
Go to the specified web_history_item in the back forward list
Go to the specified web_history_item in the back forward list
|
WebKit.WebBackForwardList | |
set_limit
(gint32 limit)
:
none
Sets the maximum limit of the back forward list.
Sets the maximum limit of the back forward list. If the back forward list
exceeds its capacity, items will be removed everytime a new item has been added.
|
WebKit.WebBackForwardList |
None |
Class / Namespace | Method / Signal / Properties |
---|---|
WebKit.WebView
Method |
get_back_forward_list
()
:
WebKit.WebBackForwardList
Obtains the WebKitWebBackForwardList associated with the given WebKitWebView.
|