зеркало из https://github.com/mozilla/pjs.git
63 строки
1.9 KiB
C++
63 строки
1.9 KiB
C++
/* -*- 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.
|
|
*
|
|
* Original Author: David W. Hyatt (hyatt@netscape.com)
|
|
*
|
|
* 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.
|
|
NS_IMETHOD LoadBindings(nsIContent* aContent, const nsString& aURL) = 0;
|
|
|
|
// 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) = 0;
|
|
|
|
// Retrieves our base class (e.g., tells us what type of frame and content node to build)
|
|
NS_IMETHOD GetBaseTag(nsIContent* aContent, nsIAtom** aResult) = 0;
|
|
|
|
};
|
|
|
|
#endif // nsIXBLService_h__
|