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

71 lines
2.4 KiB
C
Raw Normal View History

2000-01-11 08:25:59 +00: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 13:14:34 +00:00
* Original Author: David W. Hyatt (hyatt@netscape.com)
*
2000-01-11 08:25:59 +00:00
* Contributor(s):
*/
/*
Private interface to the XBL service
*/
#ifndef nsIXBLService_h__
#define nsIXBLService_h__
#include "nsString.h"
#include "nsISupports.h"
class nsIContent;
class nsISupportsArray;
// {0E7903E1-C7BB-11d3-97FB-00400553EEF0}
#define NS_IXBLSERVICE_IID \
{ 0xe7903e1, 0xc7bb, 0x11d3, { 0x97, 0xfb, 0x0, 0x40, 0x5, 0x53, 0xee, 0xf0 } }
class nsIXBLService : public nsISupports
{
public:
static const nsIID& GetIID() { static nsIID iid = NS_IXBLSERVICE_IID; return iid; }
// This function loads a particular XBL file and installs all of the bindings
// onto the element.
2000-06-02 08:13:29 +00:00
NS_IMETHOD LoadBindings(nsIContent* aContent, const nsString& aURL, PRBool aAugmentFlag) = 0;
2000-01-11 08:25:59 +00:00
2000-03-28 00:41:33 +00:00
// This function clears out the bindings on a given content node.
2000-06-02 08:13:29 +00:00
NS_IMETHOD FlushStyleBindings(nsIContent* aContent) = 0;
2000-03-28 00:41:33 +00:00
2000-04-27 02:08:35 +00:00
// This function clears out the binding documents in our cache.
NS_IMETHOD FlushBindingDocuments() = 0;
2000-01-11 08:25:59 +00:00
// For a given element, returns a flat list of all the anonymous children that need
// frames built.
NS_IMETHOD GetContentList(nsIContent* aContent, nsISupportsArray** aResult, nsIContent** aChildElement,
PRBool* aMultipleInsertionPoints) = 0;
2000-03-11 10:36:39 +00:00
// Retrieves our base class (e.g., tells us what type of frame and content node to build)
2000-05-24 08:19:10 +00:00
NS_IMETHOD ResolveTag(nsIContent* aContent, PRInt32* aNameSpaceID, nsIAtom** aResult) = 0;
2000-03-11 10:36:39 +00:00
NS_IMETHOD AllowScripts(nsIContent* aContent, PRBool* aAllowScripts) = 0;
2000-01-11 08:25:59 +00:00
};
#endif // nsIXBLService_h__