Struct xpcom::interfaces::nsISHistory [] [src]

#[repr(C)]
pub struct nsISHistory { /* fields omitted */ }

interface nsISHistory : nsISupports

/**
 * 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.
 */

Methods

impl nsISHistory
[src]

[src]

Cast this nsISHistory to one of its base interfaces.

impl nsISHistory
[src]

VIEWER_WINDOW: i64 = 3
/**
   * The size of the window of SHEntries which can have alive viewers in the
   * bfcache around the currently active SHEntry.
   *
   * We try to keep viewers for SHEntries between index - VIEWER_WINDOW and
   * index + VIEWER_WINDOW alive.
   */

[src]

/**
   * An attribute denoting whether the nsISHistory is associated to a grouped
   * session history.
   *
   * The abstraction of grouped session history is implemented at
   * nsIWebNavigation level, so those canGoBack / canGoForward / gotoIndex
   * functions work transparently;
   *
   * On the other hand, nsISHistory works on partial session history directly.
   * Unless otherwise specified, count / index attributes and parameters all
   * indicate local count / index, so we won't mess up docshell.
   */

readonly attribute bool isPartial;

[src]

/**
   * A readonly property of the interface that returns
   * the number of toplevel documents currently available
   * in session history.
   */

readonly attribute long count;

[src]

/**
   * If isPartial, globalCount denotes the total number of entries in the
   * grouped session history; Otherwise it has the same value as count.
   */

readonly attribute long globalCount;

[src]

/**
   * A readonly property which represents the difference between global indices
   * of grouped session history and local indices of this particular session
   * history object.
   */

readonly attribute long globalIndexOffset;

[src]

/**
   * A readonly property of the interface that returns
   * the index of the current document in session history.
   */

readonly attribute long index;

[src]

/**
   * A readonly property which equals index + globalIndexOffset.
   */

readonly attribute long globalIndex;

[src]

/**
   * 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.
   */

readonly attribute long requestedIndex;

[src]

/**
   * A read/write property of the interface, used to Get/Set
   * the maximum number of toplevel documents, session history
   * can hold for each instance.
   */

attribute long maxLength;

[src]

/**
   * A read/write property of the interface, used to Get/Set
   * the maximum number of toplevel documents, session history
   * can hold for each instance.
   */

attribute long maxLength;

[src]

/**
   * Called to obtain handle to the history entry at a
   * given index.
   *
   * @param index             The index value whose entry is requested.
   *                          The oldest entry is located at index == 0.
   * @param modifyIndex       A boolean flag that indicates if the current
   *                          index of session history should be modified
   *                          to the parameter index.
   *
   * @return                  <code>NS_OK</code> history entry for
   *                          the index is obtained successfully.
   *                          <code>NS_ERROR_FAILURE</code> Error in obtaining
   *                          history entry for the given index.
   */

nsISHEntry getEntryAtIndex (in long index, in boolean modifyIndex);

[src]

/**
   * Load the entry at given index to root docshell directly in order to
   * restore to an entry in grouped session history navigation or session
   * restore case. This function will not notify nsISHistoryListener, as it's
   * not considered a normal history navigation.
   */

void restoreToEntryAtIndex (in long index);

[src]

/**
   * 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...
   *
   * @param 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                  <code>NS_SUCCESS_LOSS_OF_INSIGNIFICANT_DATA</code> Purge was vetod.
   * @throws                  <code>NS_ERROR_FAILURE</code> numEntries is
   *                          invalid or out of bounds with the size of history.
   *
   */

void PurgeHistory (in long numEntries);

[src]

/**
   * Called to register a listener for the session history component.
   * Listeners are notified when pages are loaded or purged from history.
   *
   * @param aListener         Listener object to be notified for all
   *                          page loads that initiate in session history.
   *
   * @note                    A listener object must implement
   *                          nsISHistoryListener and nsSupportsWeakReference
   *
   * @see nsISHistoryListener
   * @see nsSupportsWeakReference
   */

void addSHistoryListener (in nsISHistoryListener aListener);

[src]

/**
   * Called to remove a listener for the session history component.
   * Listeners are notified when pages are loaded from history.
   *
   * @param aListener         Listener object to be removed from
   *                          session history.
   *
   * @note                    A listener object must implement
   *                          nsISHistoryListener and nsSupportsWeakReference
   * @see nsISHistoryListener
   * @see nsSupportsWeakReference
   */

void removeSHistoryListener (in nsISHistoryListener aListener);

[src]

/**
   * Set the listener to handle cross nsISHistory navigation when it works
   * in "partial" mode.
   */

void setPartialSHistoryListener (in nsIPartialSHistoryListener aListener);

[src]

/**
   * 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()
   */

readonly attribute nsISimpleEnumerator SHistoryEnumerator;

[src]

void reloadCurrentEntry ();

[src]

/**
   * Called to obtain the index to a given history entry.
   *
   * @param aEntry            The entry to obtain the index of.
   *
   * @return                  <code>NS_OK</code> index for the history entry
   *                          is obtained successfully.
   *                          <code>NS_ERROR_FAILURE</code> Error in obtaining
   *                          index for the given history entry.
   */

long getIndexOfEntry (in nsISHEntry aEntry);

[src]

/**
   * Called when this nsISHistory has became the active history of a grouped
   * session history.
   *
   * @param globalLength      The up to date number of entries in the grouped
   *                          session history.
   * @param targetIndex       The local index to navigate to.
   */

void onPartialSHistoryActive (in long globalLength, in long targetIndex);

[src]

/**
   * Called when this nsISHistory has became inactive history of a grouped
   * session history.
   */

void onPartialSHistoryDeactive ();

[src]

/**
   * Called when it's attached to a nsIGroupedSHistory instance.
   *
   * @param offset            The number of entries in the grouped session
   *                          history before this session history object.
   */

void onAttachGroupedSHistory (in long offset);

Methods from Deref<Target = nsISupports>

[src]

Cast this nsISupports to one of its base interfaces.

[src]

void QueryInterface (in nsIIDRef uuid, [iid_is (uuid), retval] out nsQIResult result);

[src]

[noscript,notxpcom] nsrefcnt AddRef ();

[src]

[noscript,notxpcom] nsrefcnt Release ();

Trait Implementations

impl XpCom for nsISHistory
[src]

IID: nsIID = nsID(2072014913, 58890, 17284, [147, 95, 175, 48, 97, 216, 184, 21])

[src]

Perform a QueryInterface call on this object, attempting to dynamically cast it to the requested interface type. Returns Some(RefPtr) if the cast succeeded, and None otherwise. Read more

impl RefCounted for nsISHistory
[src]

[src]

Increment the reference count.

[src]

Decrement the reference count, potentially freeing backing memory.

impl Deref for nsISHistory
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.