gecko-dev/content/xbl/public/nsIXBLBinding.h

119 строки
4.0 KiB
C
Исходник Обычный вид История

2000-01-13 05:23:54 +03:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* 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/
*
* 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.
*
2000-03-21 16:14:34 +03:00
* Original Author: David W. Hyatt (hyatt@netscape.com)
*
2000-01-13 05:23:54 +03:00
* Contributor(s):
*/
/*
Private interface to the XBL Binding
*/
#ifndef nsIXBLBinding_h__
#define nsIXBLBinding_h__
#include "nsString.h"
#include "nsISupports.h"
#include "nsISupportsArray.h"
2000-01-13 05:23:54 +03:00
class nsIContent;
class nsIDocument;
class nsIDOMNodeList;
class nsIScriptContext;
2000-09-28 00:23:49 +04:00
class nsIXBLPrototypeBinding;
2000-01-13 05:23:54 +03:00
// {DDDBAD20-C8DF-11d3-97FB-00400553EEF0}
#define NS_IXBLBINDING_IID \
{ 0xdddbad20, 0xc8df, 0x11d3, { 0x97, 0xfb, 0x0, 0x40, 0x5, 0x53, 0xee, 0xf0 } }
class nsIXBLBinding : public nsISupports
{
public:
static const nsIID& GetIID() { static nsIID iid = NS_IXBLBINDING_IID; return iid; }
2000-09-28 00:23:49 +04:00
NS_IMETHOD GetPrototypeBinding(nsIXBLPrototypeBinding** aResult)=0;
NS_IMETHOD SetPrototypeBinding(nsIXBLPrototypeBinding* aProtoBinding)=0;
2000-01-13 05:23:54 +03:00
NS_IMETHOD GetBaseBinding(nsIXBLBinding** aResult) = 0;
NS_IMETHOD SetBaseBinding(nsIXBLBinding* aBinding) = 0;
NS_IMETHOD GetAnonymousContent(nsIContent** aParent) = 0;
NS_IMETHOD SetAnonymousContent(nsIContent* aParent) = 0;
NS_IMETHOD GetBindingElement(nsIContent** aResult) = 0;
NS_IMETHOD SetBindingElement(nsIContent* aElement) = 0;
2000-06-02 12:13:29 +04:00
NS_IMETHOD GetBoundElement(nsIContent** aResult) = 0;
NS_IMETHOD SetBoundElement(nsIContent* aElement) = 0;
NS_IMETHOD GenerateAnonymousContent() = 0;
NS_IMETHOD InstallEventHandlers(nsIXBLBinding** aBinding) = 0;
NS_IMETHOD InstallProperties() = 0;
NS_IMETHOD LoadResources()=0;
NS_IMETHOD HasStyleSheets(PRBool* aResolveStyle) = 0;
2000-05-24 12:19:10 +04:00
NS_IMETHOD GetBaseTag(PRInt32* aNameSpaceID, nsIAtom** aResult) = 0;
2000-03-11 13:36:39 +03:00
// Called when an attribute changes on a binding.
NS_IMETHOD AttributeChanged(nsIAtom* aAttribute, PRInt32 aNameSpaceID, PRBool aRemoveFlag) = 0;
2000-07-28 04:35:02 +04:00
NS_IMETHOD ExecuteAttachedHandler()=0;
NS_IMETHOD ExecuteDetachedHandler()=0;
2000-06-22 04:36:19 +04:00
NS_IMETHOD UnhookEventHandlers() = 0;
NS_IMETHOD ChangeDocument(nsIDocument* aOldDocument, nsIDocument* aNewDocument) = 0;
2000-04-27 06:08:35 +04:00
NS_IMETHOD GetBindingURI(nsCString& aResult) = 0;
NS_IMETHOD GetDocURI(nsCString& aResult) = 0;
NS_IMETHOD GetID(nsCString& aResult) = 0;
2001-02-02 03:54:47 +03:00
NS_IMETHOD GetInsertionPointsFor(nsIContent* aParent, nsISupportsArray** aResult)=0;
2001-03-07 04:46:13 +03:00
NS_IMETHOD GetInsertionPoint(nsIContent* aChild, nsIContent** aResult, PRUint32* aIndex,
nsIContent** aDefaultContent) = 0;
NS_IMETHOD GetSingleInsertionPoint(nsIContent** aResult, PRUint32* aIndex,
PRBool* aMultipleInsertionPoints, nsIContent** aDefaultContent) = 0;
2000-06-02 12:13:29 +04:00
NS_IMETHOD IsStyleBinding(PRBool* aResult) = 0;
NS_IMETHOD SetIsStyleBinding(PRBool aIsStyle) = 0;
NS_IMETHOD GetRootBinding(nsIXBLBinding** aResult) = 0;
NS_IMETHOD GetFirstStyleBinding(nsIXBLBinding** aResult) = 0;
NS_IMETHOD InheritsStyle(PRBool* aResult)=0;
NS_IMETHOD WalkRules(nsISupportsArrayEnumFunc aFunc, void* aData)=0;
NS_IMETHOD MarkForDeath()=0;
NS_IMETHOD MarkedForDeath(PRBool* aResult)=0;
NS_IMETHOD ImplementsInterface(REFNSIID aIID, PRBool* aResult)=0;
2001-02-02 03:54:47 +03:00
NS_IMETHOD GetAnonymousNodes(nsIDOMNodeList** aResult)=0;
NS_IMETHOD ShouldBuildChildFrames(PRBool* aResult)=0;
2000-01-13 05:23:54 +03:00
};
extern nsresult
2000-09-28 00:23:49 +04:00
NS_NewXBLBinding(nsIXBLPrototypeBinding* aProtoBinding, nsIXBLBinding** aResult);
2000-01-13 05:23:54 +03:00
#endif // nsIXBLBinding_h__