2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-10-30 01:46:18 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
1999-10-30 01:46:18 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-10-30 01:46:18 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-10-30 01:46:18 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
1999-11-05 09:00:36 +03:00
|
|
|
|
1999-10-30 01:46:18 +04:00
|
|
|
interface nsIURIContentListener;
|
|
|
|
interface nsIURI;
|
2000-01-29 09:02:36 +03:00
|
|
|
interface nsILoadGroup;
|
|
|
|
interface nsIDocumentLoader;
|
1999-11-10 09:22:29 +03:00
|
|
|
interface nsIProgressEventSink;
|
1999-11-05 09:00:36 +03:00
|
|
|
interface nsIChannel;
|
2001-02-21 23:38:08 +03:00
|
|
|
interface nsIRequest;
|
1999-11-16 00:35:40 +03:00
|
|
|
interface nsIStreamListener;
|
1999-11-30 00:00:14 +03:00
|
|
|
interface nsIInputStream;
|
2004-04-17 01:06:07 +04:00
|
|
|
interface nsIInterfaceRequestor;
|
1999-10-30 01:46:18 +04:00
|
|
|
|
2003-10-04 00:54:01 +04:00
|
|
|
/**
|
|
|
|
* The uri dispatcher is responsible for taking uri's, determining
|
|
|
|
* the content and routing the opened url to the correct content
|
|
|
|
* handler.
|
|
|
|
*
|
|
|
|
* When you encounter a url you want to open, you typically call
|
|
|
|
* openURI, passing it the content listener for the window the uri is
|
|
|
|
* originating from. The uri dispatcher opens the url to discover the
|
|
|
|
* content type. It then gives the content listener first crack at
|
|
|
|
* handling the content. If it doesn't want it, the dispatcher tries
|
|
|
|
* to hand it off one of the registered content listeners. This allows
|
|
|
|
* running applications the chance to jump in and handle the content.
|
|
|
|
*
|
|
|
|
* If that also fails, then the uri dispatcher goes to the registry
|
|
|
|
* looking for the preferred content handler for the content type
|
|
|
|
* of the uri. The content handler may create an app instance
|
|
|
|
* or it may hand the contents off to a platform specific plugin
|
|
|
|
* or helper app. Or it may hand the url off to an OS registered
|
|
|
|
* application.
|
|
|
|
*/
|
2004-04-17 01:06:07 +04:00
|
|
|
[scriptable, uuid(59432929-288b-4fa9-83c9-a5bc8d7ca3bd)]
|
1999-11-02 22:36:43 +03:00
|
|
|
interface nsIURILoader : nsISupports
|
1999-10-30 01:46:18 +04:00
|
|
|
{
|
2003-10-04 00:54:01 +04:00
|
|
|
/**
|
|
|
|
* As applications such as messenger and the browser are instantiated,
|
|
|
|
* they register content listener's with the uri dispatcher corresponding
|
|
|
|
* to content windows within that application.
|
|
|
|
*
|
|
|
|
* Note to self: we may want to optimize things a bit more by requiring
|
|
|
|
* the content types the registered content listener cares about.
|
|
|
|
*
|
|
|
|
* @param aContentListener the listener to register
|
|
|
|
*
|
|
|
|
* @see the nsIURILoader class description
|
|
|
|
*/
|
1999-10-30 01:46:18 +04:00
|
|
|
void registerContentListener (in nsIURIContentListener aContentListener);
|
|
|
|
void unRegisterContentListener (in nsIURIContentListener aContentListener);
|
|
|
|
|
2003-10-04 00:54:01 +04:00
|
|
|
/**
|
|
|
|
* OpenURI requires the following parameters.....
|
|
|
|
* @param aChannel
|
|
|
|
* The channel that should be opened. This must not be asyncOpen'd yet!
|
|
|
|
* @param aIsContentPreferred
|
|
|
|
* Should the content be displayed in a container that prefers the
|
|
|
|
* content-type, or will any container do.
|
|
|
|
* @param aWindowContext
|
|
|
|
* If you are running the url from a doc shell or a web shell, this is
|
|
|
|
* your window context. If you have a content listener you want to
|
|
|
|
* give first crack to, the uri loader needs to be able to get it
|
2004-04-17 01:06:07 +04:00
|
|
|
* from the window context. We will also be using the window context
|
|
|
|
* to get at the progress event sink interface.
|
|
|
|
* <b>Must not be null!</b>
|
2003-10-04 00:54:01 +04:00
|
|
|
*/
|
2001-10-27 06:52:39 +04:00
|
|
|
void openURI(in nsIChannel aChannel,
|
|
|
|
in boolean aIsContentPreferred,
|
2004-04-17 01:06:07 +04:00
|
|
|
in nsIInterfaceRequestor aWindowContext);
|
1999-11-10 09:22:29 +03:00
|
|
|
|
1999-11-06 02:03:58 +03:00
|
|
|
|
2003-10-04 00:54:01 +04:00
|
|
|
/**
|
|
|
|
* Stops an in progress load
|
2001-10-27 06:52:39 +04:00
|
|
|
*/
|
2000-02-14 13:12:55 +03:00
|
|
|
void stop(in nsISupports aLoadCookie);
|
2000-01-29 09:02:36 +03:00
|
|
|
|
2003-10-04 00:54:01 +04:00
|
|
|
/**
|
|
|
|
* dirty little back door for sneaking the load group out in case you need
|
|
|
|
* it to create the channel before calling openURI
|
2001-10-27 06:52:39 +04:00
|
|
|
*/
|
2004-04-17 01:06:07 +04:00
|
|
|
nsILoadGroup getLoadGroupForContext(in nsIInterfaceRequestor aWindowContext);
|
|
|
|
nsIDocumentLoader getDocumentLoaderForContext (in nsIInterfaceRequestor aWindowContext);
|
1999-11-05 09:00:36 +03:00
|
|
|
};
|
1999-11-30 00:00:14 +03:00
|
|
|
|