Struct xpcom::interfaces::nsIImageLoadingContent [] [src]

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

interface nsIImageLoadingContent : imgINotificationObserver

/**
 * This interface represents a content node that loads images.  The interface
 * exists to allow getting information on the images that the content node
 * loads and to allow registration of observers for the image loads.
 *
 * Implementors of this interface should handle all the mechanics of actually
 * loading an image -- getting the URI, checking with content policies and
 * the security manager to see whether loading the URI is allowed, performing
 * the load, firing any DOM events as needed.
 *
 * An implementation of this interface may support the concepts of a
 * "current" image and a "pending" image.  If it does, a request to change
 * the currently loaded image will start a "pending" request which will
 * become current only when the image is loaded.  It is the responsibility of
 * observers to check which request they are getting notifications for.
 *
 * Please make sure to update the MozImageLoadingContent WebIDL
 * interface to mirror this interface when changing it.
 */

Methods

impl nsIImageLoadingContent
[src]

[src]

Cast this nsIImageLoadingContent to one of its base interfaces.

impl nsIImageLoadingContent
[src]

UNKNOWN_REQUEST: i64 = -1
/**
   * Request types.  Image loading content nodes attempt to do atomic
   * image changes when the image url is changed.  This means that
   * when the url changes the new image load will start, but the old
   * image will remain the "current" request until the new image is
   * fully loaded.  At that point, the old "current" request will be
   * discarded and the "pending" request will become "current".
   */

CURRENT_REQUEST: i64 = 0

PENDING_REQUEST: i64 = 1

[src]

/**
   * loadingEnabled is used to enable and disable loading in
   * situations where loading images is unwanted.  Note that enabling
   * loading will *not* automatically trigger an image load.
   */

attribute boolean loadingEnabled;

[src]

/**
   * loadingEnabled is used to enable and disable loading in
   * situations where loading images is unwanted.  Note that enabling
   * loading will *not* automatically trigger an image load.
   */

attribute boolean loadingEnabled;

[src]

/**
   * Returns the image blocking status (@see nsIContentPolicy).  This
   * will always be an nsIContentPolicy REJECT_* status for cases when
   * the image was blocked.  This status always refers to the
   * CURRENT_REQUEST load.
   */

readonly attribute short imageBlockingStatus;

[src]

/**
   * Used to register an image decoder observer.  Typically, this will
   * be a proxy for a frame that wants to paint the image.
   * Notifications from ongoing image loads will be passed to all
   * registered observers.  Notifications for all request types,
   * current and pending, will be passed through.
   *
   * @param aObserver the observer to register
   *
   * @throws NS_ERROR_OUT_OF_MEMORY
   */

[notxpcom] nsresult addNativeObserver (in imgINotificationObserver aObserver);

[src]

/**
   * Used to unregister an image decoder observer.
   *
   * @param aObserver the observer to unregister
   */

[notxpcom] nsresult removeNativeObserver (in imgINotificationObserver aObserver);

[src]

/**
   * Same as addNativeObserver but intended for scripted observers or observers
   * from another or without a document.
   */

void addObserver (in imgINotificationObserver aObserver);

[src]

/**
   * Same as removeNativeObserver but intended for scripted observers or
   * observers from another or without a document.
   */

void removeObserver (in imgINotificationObserver aObserver);

[src]

/**
   * Accessor to get the image requests
   *
   * @param aRequestType a value saying which request is wanted
   *
   * @return the imgIRequest object (may be null, even when no error
   * is thrown)
   *
   * @throws NS_ERROR_UNEXPECTED if the request type requested is not
   * known
   */

imgIRequest getRequest (in long aRequestType);

[src]

/**
   * Call this function when the request was blocked by any of the
   * security policies enforced.
   *
   * @param aContentDecision the decision returned from nsIContentPolicy
   *                         (any of the types REJECT_*)
   */

void setBlockedRequest (in int16_t aContentDecision);

[src]

/**
   * @return true if the current request's size is available.
   */

[noscript,notxpcom] boolean currentRequestHasSize ();

[src]

/**
   * Used to find out what type of request one is dealing with (eg
   * which request got passed through to the imgINotificationObserver
   * interface of an observer)
   *
   * @param aRequest the request whose type we want to know
   *
   * @return an enum value saying what type this request is
   *
   * @throws NS_ERROR_UNEXPECTED if aRequest is not known
   */

long getRequestType (in imgIRequest aRequest);

[src]

/**
   * Gets the URI of the current request, if available.
   * Otherwise, returns the last URI that this content tried to load, or
   * null if there haven't been any such attempts.
   */

readonly attribute nsIURI currentURI;

[src]

/**
   * loadImageWithChannel allows data from an existing channel to be
   * used as the image data for this content node.
   *
   * @param aChannel the channel that will deliver the data
   *
   * @return a stream listener to pump the image data into
   *
   * @see imgILoader::loadImageWithChannel
   *
   * @throws NS_ERROR_NULL_POINTER if aChannel is null
   */

nsIStreamListener loadImageWithChannel (in nsIChannel aChannel);

[src]

/**
   * Enables/disables image state forcing. When |aForce| is PR_TRUE, we force
   * nsImageLoadingContent::ImageState() to return |aState|. Call again with |aForce|
   * as PR_FALSE to revert ImageState() to its original behaviour.
   */

void forceImageState (in boolean aForce, in unsigned long long aState);

[src]

/**
   * The intrinsic size and width of this content. May differ from actual image
   * size due to things like responsive image density.
   */

readonly attribute unsigned long naturalWidth;

[src]

readonly attribute unsigned long naturalHeight;

Methods from Deref<Target = imgINotificationObserver>

[src]

Cast this imgINotificationObserver to one of its base interfaces.

Trait Implementations

impl XpCom for nsIImageLoadingContent
[src]

IID: nsIID = nsID(56037949, 37412, 19730, [164, 126, 134, 140, 50, 104, 151, 119])

[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 nsIImageLoadingContent
[src]

[src]

Increment the reference count.

[src]

Decrement the reference count, potentially freeing backing memory.

impl Deref for nsIImageLoadingContent
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.