|
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/21571/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/widget/nsIDragSession.idl
*/
#ifndef __gen_nsIDragSession_h__
#define __gen_nsIDragSession_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsISupportsArray_h__
#include "nsISupportsArray.h"
#endif
#ifndef __gen_nsITransferable_h__
#include "nsITransferable.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
#include "nsSize.h"
class nsIDOMDocument; /* forward declaration */
class nsIDOMNode; /* forward declaration */
class nsIDOMDataTransfer; /* forward declaration */
/* starting interface: nsIDragSession */
#define NS_IDRAGSESSION_IID_STR "fde41f6a-c710-46f8-a0a8-1ff76ca4ff57"
#define NS_IDRAGSESSION_IID \
{0xfde41f6a, 0xc710, 0x46f8, \
{ 0xa0, 0xa8, 0x1f, 0xf7, 0x6c, 0xa4, 0xff, 0x57 }}
class NS_NO_VTABLE nsIDragSession : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDRAGSESSION_IID)
/* attribute boolean canDrop; */
NS_IMETHOD GetCanDrop(bool *aCanDrop) = 0;
NS_IMETHOD SetCanDrop(bool aCanDrop) = 0;
/* attribute boolean onlyChromeDrop; */
NS_IMETHOD GetOnlyChromeDrop(bool *aOnlyChromeDrop) = 0;
NS_IMETHOD SetOnlyChromeDrop(bool aOnlyChromeDrop) = 0;
/* attribute unsigned long dragAction; */
NS_IMETHOD GetDragAction(uint32_t *aDragAction) = 0;
NS_IMETHOD SetDragAction(uint32_t aDragAction) = 0;
/* [noscript] attribute nsSize targetSize; */
NS_IMETHOD GetTargetSize(nsSize *aTargetSize) = 0;
NS_IMETHOD SetTargetSize(nsSize aTargetSize) = 0;
/* readonly attribute unsigned long numDropItems; */
NS_IMETHOD GetNumDropItems(uint32_t *aNumDropItems) = 0;
/* readonly attribute nsIDOMDocument sourceDocument; */
NS_IMETHOD GetSourceDocument(nsIDOMDocument * *aSourceDocument) = 0;
/* readonly attribute nsIDOMNode sourceNode; */
NS_IMETHOD GetSourceNode(nsIDOMNode * *aSourceNode) = 0;
/* attribute nsIDOMDataTransfer dataTransfer; */
NS_IMETHOD GetDataTransfer(nsIDOMDataTransfer * *aDataTransfer) = 0;
NS_IMETHOD SetDataTransfer(nsIDOMDataTransfer *aDataTransfer) = 0;
/* void getData (in nsITransferable aTransferable, in unsigned long aItemIndex); */
NS_IMETHOD GetData(nsITransferable *aTransferable, uint32_t aItemIndex) = 0;
/* boolean isDataFlavorSupported (in string aDataFlavor); */
NS_IMETHOD IsDataFlavorSupported(const char * aDataFlavor, bool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDragSession, NS_IDRAGSESSION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDRAGSESSION \
NS_IMETHOD GetCanDrop(bool *aCanDrop); \
NS_IMETHOD SetCanDrop(bool aCanDrop); \
NS_IMETHOD GetOnlyChromeDrop(bool *aOnlyChromeDrop); \
NS_IMETHOD SetOnlyChromeDrop(bool aOnlyChromeDrop); \
NS_IMETHOD GetDragAction(uint32_t *aDragAction); \
NS_IMETHOD SetDragAction(uint32_t aDragAction); \
NS_IMETHOD GetTargetSize(nsSize *aTargetSize); \
NS_IMETHOD SetTargetSize(nsSize aTargetSize); \
NS_IMETHOD GetNumDropItems(uint32_t *aNumDropItems); \
NS_IMETHOD GetSourceDocument(nsIDOMDocument * *aSourceDocument); \
NS_IMETHOD GetSourceNode(nsIDOMNode * *aSourceNode); \
NS_IMETHOD GetDataTransfer(nsIDOMDataTransfer * *aDataTransfer); \
NS_IMETHOD SetDataTransfer(nsIDOMDataTransfer *aDataTransfer); \
NS_IMETHOD GetData(nsITransferable *aTransferable, uint32_t aItemIndex); \
NS_IMETHOD IsDataFlavorSupported(const char * aDataFlavor, bool *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDRAGSESSION(_to) \
NS_IMETHOD GetCanDrop(bool *aCanDrop) { return _to GetCanDrop(aCanDrop); } \
NS_IMETHOD SetCanDrop(bool aCanDrop) { return _to SetCanDrop(aCanDrop); } \
NS_IMETHOD GetOnlyChromeDrop(bool *aOnlyChromeDrop) { return _to GetOnlyChromeDrop(aOnlyChromeDrop); } \
NS_IMETHOD SetOnlyChromeDrop(bool aOnlyChromeDrop) { return _to SetOnlyChromeDrop(aOnlyChromeDrop); } \
NS_IMETHOD GetDragAction(uint32_t *aDragAction) { return _to GetDragAction(aDragAction); } \
NS_IMETHOD SetDragAction(uint32_t aDragAction) { return _to SetDragAction(aDragAction); } \
NS_IMETHOD GetTargetSize(nsSize *aTargetSize) { return _to GetTargetSize(aTargetSize); } \
NS_IMETHOD SetTargetSize(nsSize aTargetSize) { return _to SetTargetSize(aTargetSize); } \
NS_IMETHOD GetNumDropItems(uint32_t *aNumDropItems) { return _to GetNumDropItems(aNumDropItems); } \
NS_IMETHOD GetSourceDocument(nsIDOMDocument * *aSourceDocument) { return _to GetSourceDocument(aSourceDocument); } \
NS_IMETHOD GetSourceNode(nsIDOMNode * *aSourceNode) { return _to GetSourceNode(aSourceNode); } \
NS_IMETHOD GetDataTransfer(nsIDOMDataTransfer * *aDataTransfer) { return _to GetDataTransfer(aDataTransfer); } \
NS_IMETHOD SetDataTransfer(nsIDOMDataTransfer *aDataTransfer) { return _to SetDataTransfer(aDataTransfer); } \
NS_IMETHOD GetData(nsITransferable *aTransferable, uint32_t aItemIndex) { return _to GetData(aTransferable, aItemIndex); } \
NS_IMETHOD IsDataFlavorSupported(const char * aDataFlavor, bool *_retval) { return _to IsDataFlavorSupported(aDataFlavor, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDRAGSESSION(_to) \
NS_IMETHOD GetCanDrop(bool *aCanDrop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanDrop(aCanDrop); } \
NS_IMETHOD SetCanDrop(bool aCanDrop) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCanDrop(aCanDrop); } \
NS_IMETHOD GetOnlyChromeDrop(bool *aOnlyChromeDrop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOnlyChromeDrop(aOnlyChromeDrop); } \
NS_IMETHOD SetOnlyChromeDrop(bool aOnlyChromeDrop) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOnlyChromeDrop(aOnlyChromeDrop); } \
NS_IMETHOD GetDragAction(uint32_t *aDragAction) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDragAction(aDragAction); } \
NS_IMETHOD SetDragAction(uint32_t aDragAction) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDragAction(aDragAction); } \
NS_IMETHOD GetTargetSize(nsSize *aTargetSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTargetSize(aTargetSize); } \
NS_IMETHOD SetTargetSize(nsSize aTargetSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTargetSize(aTargetSize); } \
NS_IMETHOD GetNumDropItems(uint32_t *aNumDropItems) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNumDropItems(aNumDropItems); } \
NS_IMETHOD GetSourceDocument(nsIDOMDocument * *aSourceDocument) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSourceDocument(aSourceDocument); } \
NS_IMETHOD GetSourceNode(nsIDOMNode * *aSourceNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSourceNode(aSourceNode); } \
NS_IMETHOD GetDataTransfer(nsIDOMDataTransfer * *aDataTransfer) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDataTransfer(aDataTransfer); } \
NS_IMETHOD SetDataTransfer(nsIDOMDataTransfer *aDataTransfer) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDataTransfer(aDataTransfer); } \
NS_IMETHOD GetData(nsITransferable *aTransferable, uint32_t aItemIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetData(aTransferable, aItemIndex); } \
NS_IMETHOD IsDataFlavorSupported(const char * aDataFlavor, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsDataFlavorSupported(aDataFlavor, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDragSession : public nsIDragSession
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDRAGSESSION
nsDragSession();
private:
~nsDragSession();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDragSession, nsIDragSession)
nsDragSession::nsDragSession()
{
/* member initializers and constructor code */
}
nsDragSession::~nsDragSession()
{
/* destructor code */
}
/* attribute boolean canDrop; */
NS_IMETHODIMP nsDragSession::GetCanDrop(bool *aCanDrop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDragSession::SetCanDrop(bool aCanDrop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean onlyChromeDrop; */
NS_IMETHODIMP nsDragSession::GetOnlyChromeDrop(bool *aOnlyChromeDrop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDragSession::SetOnlyChromeDrop(bool aOnlyChromeDrop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long dragAction; */
NS_IMETHODIMP nsDragSession::GetDragAction(uint32_t *aDragAction)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDragSession::SetDragAction(uint32_t aDragAction)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] attribute nsSize targetSize; */
NS_IMETHODIMP nsDragSession::GetTargetSize(nsSize *aTargetSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDragSession::SetTargetSize(nsSize aTargetSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long numDropItems; */
NS_IMETHODIMP nsDragSession::GetNumDropItems(uint32_t *aNumDropItems)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMDocument sourceDocument; */
NS_IMETHODIMP nsDragSession::GetSourceDocument(nsIDOMDocument * *aSourceDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMNode sourceNode; */
NS_IMETHODIMP nsDragSession::GetSourceNode(nsIDOMNode * *aSourceNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsIDOMDataTransfer dataTransfer; */
NS_IMETHODIMP nsDragSession::GetDataTransfer(nsIDOMDataTransfer * *aDataTransfer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDragSession::SetDataTransfer(nsIDOMDataTransfer *aDataTransfer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getData (in nsITransferable aTransferable, in unsigned long aItemIndex); */
NS_IMETHODIMP nsDragSession::GetData(nsITransferable *aTransferable, uint32_t aItemIndex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isDataFlavorSupported (in string aDataFlavor); */
NS_IMETHODIMP nsDragSession::IsDataFlavorSupported(const char * aDataFlavor, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDragSession_h__ */