|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/xul/nsIDOMXULTreeElement.idl
*/
#ifndef __gen_nsIDOMXULTreeElement_h__
#define __gen_nsIDOMXULTreeElement_h__
#ifndef __gen_nsIDOMXULElement_h__
#include "nsIDOMXULElement.h"
#endif
#ifndef __gen_nsIDOMElement_h__
#include "nsIDOMElement.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsITreeColumns; /* forward declaration */
class nsITreeView; /* forward declaration */
class nsIDOMXULTextBoxElement; /* forward declaration */
/* starting interface: nsIDOMXULTreeElement */
#define NS_IDOMXULTREEELEMENT_IID_STR "cba7143b-73fc-4974-b93d-7e3f6b18d645"
#define NS_IDOMXULTREEELEMENT_IID \
{0xcba7143b, 0x73fc, 0x4974, \
{ 0xb9, 0x3d, 0x7e, 0x3f, 0x6b, 0x18, 0xd6, 0x45 }}
class NS_NO_VTABLE nsIDOMXULTreeElement : public nsIDOMXULElement {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMXULTREEELEMENT_IID)
/* readonly attribute nsITreeColumns columns; */
NS_IMETHOD GetColumns(nsITreeColumns * *aColumns) = 0;
/* attribute nsITreeView view; */
NS_IMETHOD GetView(nsITreeView * *aView) = 0;
NS_IMETHOD SetView(nsITreeView *aView) = 0;
/* readonly attribute nsIDOMElement body; */
NS_IMETHOD GetBody(nsIDOMElement * *aBody) = 0;
/* attribute boolean editable; */
NS_IMETHOD GetEditable(bool *aEditable) = 0;
NS_IMETHOD SetEditable(bool aEditable) = 0;
/* readonly attribute nsIDOMXULTextBoxElement inputField; */
NS_IMETHOD GetInputField(nsIDOMXULTextBoxElement * *aInputField) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMXULTreeElement, NS_IDOMXULTREEELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMXULTREEELEMENT \
NS_IMETHOD GetColumns(nsITreeColumns * *aColumns); \
NS_IMETHOD GetView(nsITreeView * *aView); \
NS_IMETHOD SetView(nsITreeView *aView); \
NS_IMETHOD GetBody(nsIDOMElement * *aBody); \
NS_IMETHOD GetEditable(bool *aEditable); \
NS_IMETHOD SetEditable(bool aEditable); \
NS_IMETHOD GetInputField(nsIDOMXULTextBoxElement * *aInputField);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMXULTREEELEMENT(_to) \
NS_IMETHOD GetColumns(nsITreeColumns * *aColumns) { return _to GetColumns(aColumns); } \
NS_IMETHOD GetView(nsITreeView * *aView) { return _to GetView(aView); } \
NS_IMETHOD SetView(nsITreeView *aView) { return _to SetView(aView); } \
NS_IMETHOD GetBody(nsIDOMElement * *aBody) { return _to GetBody(aBody); } \
NS_IMETHOD GetEditable(bool *aEditable) { return _to GetEditable(aEditable); } \
NS_IMETHOD SetEditable(bool aEditable) { return _to SetEditable(aEditable); } \
NS_IMETHOD GetInputField(nsIDOMXULTextBoxElement * *aInputField) { return _to GetInputField(aInputField); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMXULTREEELEMENT(_to) \
NS_IMETHOD GetColumns(nsITreeColumns * *aColumns) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColumns(aColumns); } \
NS_IMETHOD GetView(nsITreeView * *aView) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetView(aView); } \
NS_IMETHOD SetView(nsITreeView *aView) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetView(aView); } \
NS_IMETHOD GetBody(nsIDOMElement * *aBody) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBody(aBody); } \
NS_IMETHOD GetEditable(bool *aEditable) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEditable(aEditable); } \
NS_IMETHOD SetEditable(bool aEditable) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEditable(aEditable); } \
NS_IMETHOD GetInputField(nsIDOMXULTextBoxElement * *aInputField) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInputField(aInputField); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMXULTreeElement : public nsIDOMXULTreeElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMXULTREEELEMENT
nsDOMXULTreeElement();
private:
~nsDOMXULTreeElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMXULTreeElement, nsIDOMXULTreeElement)
nsDOMXULTreeElement::nsDOMXULTreeElement()
{
/* member initializers and constructor code */
}
nsDOMXULTreeElement::~nsDOMXULTreeElement()
{
/* destructor code */
}
/* readonly attribute nsITreeColumns columns; */
NS_IMETHODIMP nsDOMXULTreeElement::GetColumns(nsITreeColumns * *aColumns)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsITreeView view; */
NS_IMETHODIMP nsDOMXULTreeElement::GetView(nsITreeView * *aView)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTreeElement::SetView(nsITreeView *aView)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMElement body; */
NS_IMETHODIMP nsDOMXULTreeElement::GetBody(nsIDOMElement * *aBody)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean editable; */
NS_IMETHODIMP nsDOMXULTreeElement::GetEditable(bool *aEditable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTreeElement::SetEditable(bool aEditable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMXULTextBoxElement inputField; */
NS_IMETHODIMP nsDOMXULTreeElement::GetInputField(nsIDOMXULTextBoxElement * *aInputField)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMXULTreeElement_h__ */