|
| Graphics.UI.Gtk.WebKit.WebBackForwardList | | Portability | portable (depends on GHC) | | Stability | provisional | | Maintainer | gtk2hs-users@lists.sourceforge.net |
|
|
|
|
|
| Description |
| The history of a WebView
|
|
| Synopsis |
|
|
|
|
| Types
|
|
| data WebBackForwardList | Source |
|
|
| Constructors
|
|
|
| Create an WebBackForwardList with a controlling WebView.
|
|
| Methods
|
|
| webBackForwardListGoForward :: WebBackForwardListClass self => self -> IO () | Source |
|
| Steps forward in the back forward list.
|
|
| webBackForwardListGoBack :: WebBackForwardListClass self => self -> IO () | Source |
|
| Steps back in the back forward list.
|
|
| webBackForwardListContainsItem :: (WebBackForwardListClass self, WebHistoryItemClass item) => self -> item -> IO Bool | Source |
|
| Check if an history item in the back forward list.
|
|
| webBackForwardListGoToItem :: (WebBackForwardListClass self, WebHistoryItemClass item) => self -> item -> IO () | Source |
|
| Go to the specified history item in the back forward list.
|
|
| webBackForwardListGetBackItem | Source |
|
| :: WebBackForwardListClass self | | | => self | A WebHistoryItem or Nothing
if there is nothing precedes the current item.
| | -> IO (Maybe WebHistoryItem) | | | Return the history item that precedes the current history item.
|
|
|
|
| Return the current history item of the back forward list
|
|
| webBackForwardListGetForwardItem | Source |
|
| :: WebBackForwardListClass self | | | => self | A WebHistoryItem or Nothing
if there is nothing succeeds the current item.
| | -> IO (Maybe WebHistoryItem) | | | Return the item that succeeds the current item
|
|
|
| webBackForwardListGetNthItem | Source |
|
| :: WebBackForwardListClass self | | | => self | index - the index of the item
| | -> Int | | | -> IO WebHistoryItem | | | Return the history item at a given index relative to the current item.
|
|
|
| webBackForwardListGetBackLength :: WebBackForwardListClass self => self -> IO Int | Source |
|
| Return the number of items that preced the current item.
|
|
| webBackForwardListGetForwardLength :: WebBackForwardListClass self => self -> IO Int | Source |
|
| Return the number of items that succeed the current item.
|
|
| webBackForwardListGetLimit :: WebBackForwardListClass self => self -> IO Int | Source |
|
| Return the maximum limit of the back forward list.
|
|
| webBackForwardListSetLimit :: WebBackForwardListClass self => self -> Int -> IO () | Source |
|
Set the maximum limit of the back forward list.
if the back forward list exceeds its capacity,
items will be removed everytime a new item had been added.
|
|
| webBackForwardListAddItem :: (WebBackForwardListClass self, WebHistoryItemClass item) => self -> item -> IO () | Source |
|
| Add the item to the back forward list.
|
|
| webBackForwardListGetForwardListWithLimit | Source |
|
| :: WebBackForwardListClass self | | | => self | the number of items to retrieve
| | -> Int | a List of items succeeding the current item, limited by limit.
| | -> IO [WebHistoryItem] | | | Return a list of items that succeed the current item, limited by limit.
|
|
|
| webBackForwardListGetBackListWithLimit | Source |
|
| :: WebBackForwardListClass self | | | => self | the number of items to retrieve
| | -> Int | a List of items preceding the current item, limited by limit
| | -> IO [WebHistoryItem] | | | Return a list of items that preced the current item.
limited by limit.
|
|
|
| Produced by Haddock version 2.6.0 |