An interface to the primary properties of the Session History
component. In an embedded browser environment, the nsIWebBrowser
object creates an instance of session history for each open window.
A handle to the session history object can be obtained from
nsIWebNavigation. In a non-embedded situation, the owner of the
session history component must create a instance of it and set
it in the nsIWebNavigation object.
This interface is accessible from javascript.
Called to obtain handle to the history entry at a
given index.
index | The index value whose entry is requested. The oldest entry is located at index == 0. |
modifyIndex | A boolean flag that indicates if the current index of session history should be modified to the parameter index. |
NS_OK history entry for
the index is obtained successfully.
NS_ERROR_FAILURE Error in obtaining
history entry for the given index.
|
Called to purge older documents from history.
Documents can be removed from session history for various
reasons. For example to control memory usage of the browser, to
prevent users from loading documents from history, to erase evidence of
prior page loads etc…
numEntries | The number of toplevel documents to be
purged from history. During purge operation,
the latest documents are maintained and older
'numEntries' documents are removed from history.
@throws NS_SUCCESS_LOSS_OF_INSIGNIFICANT_DATA Purge was vetod.
@throws NS_ERROR_FAILURE numEntries is
invalid or out of bounds with the size of history.
|
Called to register a listener for the session history component.
Listeners are notified when pages are loaded or purged from history.
@note A listener object must implement
nsISHistoryListener and nsSupportsWeakReference
@see nsISHistoryListener
@see nsSupportsWeakReference
aListener | Listener object to be notified for all page loads that initiate in session history. |
Called to remove a listener for the session history component.
Listeners are notified when pages are loaded from history.
@note A listener object must implement
nsISHistoryListener and nsSupportsWeakReference
@see nsISHistoryListener
@see nsSupportsWeakReference
aListener | Listener object to be removed from session history. |
Called to obtain the index to a given history entry.
aEntry | The entry to obtain the index of. |
NS_OK index for the history entry
is obtained successfully.
NS_ERROR_FAILURE Error in obtaining
index for the given history entry.
|
A readonly property of the interface that returns
the number of toplevel documents currently available
in session history.
A readonly property of the interface that returns
the index of the current document in session history.
A readonly property of the interface that returns
the index of the last document that started to load and
didn’t finished yet. When document finishes the loading
value -1 is returned.
A read/write property of the interface, used to Get/Set
the maximum number of toplevel documents, session history
can hold for each instance.
Called to obtain a enumerator for all the documents stored in
session history. The enumerator object thus returned by this method
can be traversed using nsISimpleEnumerator.
@note To access individual history entries of the enumerator, perform the
following steps:
1) Call nsISHistory->GetSHistoryEnumerator() to obtain handle
the nsISimpleEnumerator object.
2) Use nsISimpleEnumerator->GetNext() on the object returned
by step #1 to obtain handle to the next object in the list.
The object returned by this step is of type nsISupports.
3) Perform a QueryInterface on the object returned by step #2
to nsISHEntry.
4) Use nsISHEntry to access properties of each history entry.
@see nsISimpleEnumerator
@see nsISHEntry
@see QueryInterface()
@see do_QueryInterface()