/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * 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 the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Original Author: David W. Hyatt (hyatt@netscape.com) * * * 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 ***** */ #include "nsCOMPtr.h" #include "nsIXBLBinding.h" #include "nsAutoPtr.h" #include "nsXBLPrototypeBinding.h" class nsIContent; class nsIAtom; class nsIDocument; class nsIScriptContext; class nsISupportsArray; class nsObjectHashtable; class nsIXBLService; class nsFixedSizeAllocator; class nsXBLEventHandler; struct JSContext; // *********************************************************************/ // The XBLBinding class class nsXBLBinding: public nsIXBLBinding { NS_DECL_ISUPPORTS // nsIXBLBinding NS_IMETHOD GetPrototypeBinding(nsXBLPrototypeBinding** aResult); NS_IMETHOD SetPrototypeBinding(nsXBLPrototypeBinding* aProtoBinding); NS_IMETHOD GetBaseBinding(nsIXBLBinding** aResult); NS_IMETHOD SetBaseBinding(nsIXBLBinding* aBinding); NS_IMETHOD GetAnonymousContent(nsIContent** aParent); NS_IMETHOD SetAnonymousContent(nsIContent* aParent); NS_IMETHOD GetBindingElement(nsIContent** aResult); NS_IMETHOD SetBindingElement(nsIContent* aElement); NS_IMETHOD GetBoundElement(nsIContent** aResult); NS_IMETHOD SetBoundElement(nsIContent* aElement); NS_IMETHOD GenerateAnonymousContent(); NS_IMETHOD InstallEventHandlers(); NS_IMETHOD InstallImplementation(); NS_IMETHOD HasStyleSheets(PRBool* aResolveStyle); NS_IMETHOD GetFirstBindingWithConstructor(nsIXBLBinding** aResult); NS_IMETHOD GetBaseTag(PRInt32* aNameSpaceID, nsIAtom** aResult); NS_IMETHOD AttributeChanged(nsIAtom* aAttribute, PRInt32 aNameSpaceID, PRBool aRemoveFlag, PRBool aNotify); NS_IMETHOD ExecuteAttachedHandler(); NS_IMETHOD ExecuteDetachedHandler(); NS_IMETHOD UnhookEventHandlers(); NS_IMETHOD ChangeDocument(nsIDocument* aOldDocument, nsIDocument* aNewDocument); NS_IMETHOD_(nsIURI*) BindingURI() const; NS_IMETHOD_(nsIURI*) DocURI() const; NS_IMETHOD GetID(nsACString& aResult) const; NS_IMETHOD GetInsertionPointsFor(nsIContent* aParent, nsVoidArray** aResult); NS_IMETHOD GetInsertionPoint(nsIContent* aChild, nsIContent** aResult, PRUint32* aIndex, nsIContent** aDefaultContent); NS_IMETHOD GetSingleInsertionPoint(nsIContent** aResult, PRUint32* aIndex, PRBool* aMultipleInsertionPoints, nsIContent** aDefaultContent); NS_IMETHOD IsStyleBinding(PRBool* aResult) { *aResult = mIsStyleBinding; return NS_OK; }; NS_IMETHOD SetIsStyleBinding(PRBool aIsStyle) { mIsStyleBinding = aIsStyle; return NS_OK; }; NS_IMETHOD GetRootBinding(nsIXBLBinding** aResult); NS_IMETHOD GetFirstStyleBinding(nsIXBLBinding** aResult); NS_IMETHOD InheritsStyle(PRBool* aResult); NS_IMETHOD WalkRules(nsIStyleRuleProcessor::EnumFunc aFunc, void* aData); NS_IMETHOD MarkForDeath(); NS_IMETHOD MarkedForDeath(PRBool* aResult); NS_IMETHOD ImplementsInterface(REFNSIID aIID, PRBool* aResult); NS_IMETHOD GetAnonymousNodes(nsIDOMNodeList** aResult); NS_IMETHOD ShouldBuildChildFrames(PRBool* aResult); public: nsXBLBinding(nsXBLPrototypeBinding* aProtoBinding); virtual ~nsXBLBinding(); NS_IMETHOD AddScriptEventListener(nsIContent* aElement, nsIAtom* aName, const nsString& aValue); PRBool AllowScripts(); void InstallAnonymousContent(nsIContent* aAnonParent, nsIContent* aElement); static nsresult GetTextData(nsIContent *aParent, nsString& aResult); static nsresult DoInitJSClass(JSContext *cx, JSObject *global, JSObject *obj, const nsAFlatCString& aClassName, void **aClassObject); // Internal member functions protected: nsresult InitClass(const nsCString& aClassName, nsIScriptContext* aContext, nsIDocument* aDocument, void** aScriptObject, void** aClassObject); void GetImmediateChild(nsIAtom* aTag, nsIContent** aResult); PRBool IsInExcludesList(nsIAtom* aTag, const nsString& aList); // MEMBER VARIABLES protected: nsXBLPrototypeBinding* mPrototypeBinding; // Weak, but we're holding a ref to the docinfo nsCOMPtr mContent; // Strong. Our anonymous content stays around with us. nsCOMPtr mNextBinding; // Strong. The derived binding owns the base class bindings. nsIContent* mBoundElement; // [WEAK] We have a reference, but we don't own it. nsObjectHashtable* mInsertionPointTable; // A hash from nsIContent* -> (a sorted array of nsXBLInsertionPoint*) PRPackedBool mIsStyleBinding; PRPackedBool mMarkedForDeath; };