- Adding the nsIWebShellServices interface that will be used by external services to access the webshell.

- Also, adding a method to nsIDocumentLoader that maps a document ID into an nsIContentViewerContainer.
This commit is contained in:
nisheeth%netscape.com 1999-05-06 01:55:10 +00:00
Родитель 95980cc7e0
Коммит 6d73a13ebb
5 изменённых файлов: 48 добавлений и 0 удалений

Просмотреть файл

@ -12,5 +12,6 @@ nsIDocumentViewer.h
nsILinkHandler.h
nsIThrobber.h
nsIWebShell.h
nsIWebShellServices.h
nsIClipboardCommands.h
nsweb.h

Просмотреть файл

@ -34,6 +34,7 @@ EXPORTS = \
nsILinkHandler.h \
nsIThrobber.h \
nsIWebShell.h \
nsIWebShellServices.h \
nsIClipboardCommands.h \
nsweb.h \
nsIDocStreamLoaderFactory.h \

Просмотреть файл

@ -32,6 +32,7 @@ EXPORTS = \
nsILinkHandler.h \
nsIThrobber.h \
nsIWebShell.h \
nsIWebShellServices.h \
nsIClipboardCommands.h \
nsweb.h \
$(NULL)

Просмотреть файл

@ -103,6 +103,8 @@ public:
NS_IMETHOD SetContainer(nsIContentViewerContainer* aContainer) = 0;
NS_IMETHOD GetContainer(nsIContentViewerContainer** aResult) = 0;
NS_IMETHOD GetContentViewerContainer(PRUint32 aDocumentID, nsIContentViewerContainer** aResult) = 0;
};
/* 057b04d0-0ccf-11d2-beba-00805f8a66dc */

Просмотреть файл

@ -0,0 +1,43 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (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/
*
* 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.
*
* The Original Code is Mozilla Communicator client code.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are Copyright (C) 1998
* Netscape Communications Corporation. All Rights Reserved.
*/
#ifndef nsIWebShellServices_h___
#define nsIWebShellServices_h___
#include "nsISupports.h"
// Interface ID for nsIWebShellServices
/* 8b26a346-031e-11d3-aeea-00108300ff91 */
#define NS_IWEB_SHELL_SERVICES_IID \
{ 0x8b26a346, 0x031e, 0x11d3, {0xae, 0xea, 0x00, 0x10, 0x83, 0x00, 0xff, 0x91} }
//----------------------------------------------------------------------
class nsIWebShellServices : public nsISupports {
public:
static const nsIID& GetIID() { static nsIID iid = NS_IWEB_SHELL_SERVICES_IID; return iid; }
NS_IMETHOD LoadDocument(const char* aURL) = 0;
NS_IMETHOD StopDocumentLoad(void) = 0;
NS_IMETHOD SetRendering(PRBool aRender) = 0;
};
#endif /* nsIWebShellServices_h___ */