Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDragService.idl
*/
#ifndef __gen_nsIDragService_h__
#define __gen_nsIDragService_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsISupportsArray_h__
#include "nsISupportsArray.h"
#endif
#ifndef __gen_nsIDragSession_h__
#include "nsIDragSession.h"
#endif
#ifndef __gen_nsIScriptableRegion_h__
#include "nsIScriptableRegion.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMNode; /* forward declaration */
class nsIDOMDragEvent; /* forward declaration */
class nsIDOMDataTransfer; /* forward declaration */
class nsISelection; /* forward declaration */
#include "mozilla/EventForwards.h"
namespace mozilla {
namespace dom {
class ContentParent;
} // namespace dom
} // namespace mozilla
/* starting interface: nsIDragService */
#define NS_IDRAGSERVICE_IID_STR "ebd6b3a2-af16-43af-a698-3091a087dd62"
#define NS_IDRAGSERVICE_IID \
{0xebd6b3a2, 0xaf16, 0x43af, \
{ 0xa6, 0x98, 0x30, 0x91, 0xa0, 0x87, 0xdd, 0x62 }}
class NS_NO_VTABLE nsIDragService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDRAGSERVICE_IID)
enum {
DRAGDROP_ACTION_NONE = 0,
DRAGDROP_ACTION_COPY = 1,
DRAGDROP_ACTION_MOVE = 2,
DRAGDROP_ACTION_LINK = 4,
DRAGDROP_ACTION_UNINITIALIZED = 64
};
/* void invokeDragSession (in nsIDOMNode aDOMNode, in nsISupportsArray aTransferables, in nsIScriptableRegion aRegion, in unsigned long aActionType); */
NS_IMETHOD InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferables, nsIScriptableRegion *aRegion, uint32_t aActionType) = 0;
/* void invokeDragSessionWithImage (in nsIDOMNode aDOMNode, in nsISupportsArray aTransferableArray, in nsIScriptableRegion aRegion, in unsigned long aActionType, in nsIDOMNode aImage, in long aImageX, in long aImageY, in nsIDOMDragEvent aDragEvent, in nsIDOMDataTransfer aDataTransfer); */
NS_IMETHOD InvokeDragSessionWithImage(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferableArray, nsIScriptableRegion *aRegion, uint32_t aActionType, nsIDOMNode *aImage, int32_t aImageX, int32_t aImageY, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) = 0;
/* void invokeDragSessionWithSelection (in nsISelection aSelection, in nsISupportsArray aTransferableArray, in unsigned long aActionType, in nsIDOMDragEvent aDragEvent, in nsIDOMDataTransfer aDataTransfer); */
NS_IMETHOD InvokeDragSessionWithSelection(nsISelection *aSelection, nsISupportsArray *aTransferableArray, uint32_t aActionType, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) = 0;
/* nsIDragSession getCurrentSession (); */
NS_IMETHOD GetCurrentSession(nsIDragSession * *_retval) = 0;
/* void startDragSession (); */
NS_IMETHOD StartDragSession(void) = 0;
/* void endDragSession (in boolean aDoneDrag); */
NS_IMETHOD EndDragSession(bool aDoneDrag) = 0;
/* [noscript] void fireDragEventAtSource (in EventMessage aEventMessage); */
NS_IMETHOD FireDragEventAtSource(mozilla::EventMessage aEventMessage) = 0;
/* void suppress (); */
NS_IMETHOD Suppress(void) = 0;
/* void unsuppress (); */
NS_IMETHOD Unsuppress(void) = 0;
/* [noscript] void dragMoved (in long aX, in long aY); */
NS_IMETHOD DragMoved(int32_t aX, int32_t aY) = 0;
/* [nostdcall,notxpcom] boolean maybeAddChildProcess (in ContentParentPtr aChild); */
virtual bool MaybeAddChildProcess(mozilla::dom::ContentParent *aChild) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDragService, NS_IDRAGSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDRAGSERVICE \
NS_IMETHOD InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferables, nsIScriptableRegion *aRegion, uint32_t aActionType) override; \
NS_IMETHOD InvokeDragSessionWithImage(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferableArray, nsIScriptableRegion *aRegion, uint32_t aActionType, nsIDOMNode *aImage, int32_t aImageX, int32_t aImageY, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) override; \
NS_IMETHOD InvokeDragSessionWithSelection(nsISelection *aSelection, nsISupportsArray *aTransferableArray, uint32_t aActionType, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) override; \
NS_IMETHOD GetCurrentSession(nsIDragSession * *_retval) override; \
NS_IMETHOD StartDragSession(void) override; \
NS_IMETHOD EndDragSession(bool aDoneDrag) override; \
NS_IMETHOD FireDragEventAtSource(mozilla::EventMessage aEventMessage) override; \
NS_IMETHOD Suppress(void) override; \
NS_IMETHOD Unsuppress(void) override; \
NS_IMETHOD DragMoved(int32_t aX, int32_t aY) override; \
virtual bool MaybeAddChildProcess(mozilla::dom::ContentParent *aChild) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIDRAGSERVICE \
NS_METHOD InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferables, nsIScriptableRegion *aRegion, uint32_t aActionType); \
NS_METHOD InvokeDragSessionWithImage(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferableArray, nsIScriptableRegion *aRegion, uint32_t aActionType, nsIDOMNode *aImage, int32_t aImageX, int32_t aImageY, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer); \
NS_METHOD InvokeDragSessionWithSelection(nsISelection *aSelection, nsISupportsArray *aTransferableArray, uint32_t aActionType, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer); \
NS_METHOD GetCurrentSession(nsIDragSession * *_retval); \
NS_METHOD StartDragSession(void); \
NS_METHOD EndDragSession(bool aDoneDrag); \
NS_METHOD FireDragEventAtSource(mozilla::EventMessage aEventMessage); \
NS_METHOD Suppress(void); \
NS_METHOD Unsuppress(void); \
NS_METHOD DragMoved(int32_t aX, int32_t aY); \
bool MaybeAddChildProcess(mozilla::dom::ContentParent *aChild);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDRAGSERVICE(_to) \
NS_IMETHOD InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferables, nsIScriptableRegion *aRegion, uint32_t aActionType) override { return _to InvokeDragSession(aDOMNode, aTransferables, aRegion, aActionType); } \
NS_IMETHOD InvokeDragSessionWithImage(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferableArray, nsIScriptableRegion *aRegion, uint32_t aActionType, nsIDOMNode *aImage, int32_t aImageX, int32_t aImageY, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) override { return _to InvokeDragSessionWithImage(aDOMNode, aTransferableArray, aRegion, aActionType, aImage, aImageX, aImageY, aDragEvent, aDataTransfer); } \
NS_IMETHOD InvokeDragSessionWithSelection(nsISelection *aSelection, nsISupportsArray *aTransferableArray, uint32_t aActionType, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) override { return _to InvokeDragSessionWithSelection(aSelection, aTransferableArray, aActionType, aDragEvent, aDataTransfer); } \
NS_IMETHOD GetCurrentSession(nsIDragSession * *_retval) override { return _to GetCurrentSession(_retval); } \
NS_IMETHOD StartDragSession(void) override { return _to StartDragSession(); } \
NS_IMETHOD EndDragSession(bool aDoneDrag) override { return _to EndDragSession(aDoneDrag); } \
NS_IMETHOD FireDragEventAtSource(mozilla::EventMessage aEventMessage) override { return _to FireDragEventAtSource(aEventMessage); } \
NS_IMETHOD Suppress(void) override { return _to Suppress(); } \
NS_IMETHOD Unsuppress(void) override { return _to Unsuppress(); } \
NS_IMETHOD DragMoved(int32_t aX, int32_t aY) override { return _to DragMoved(aX, aY); } \
virtual bool MaybeAddChildProcess(mozilla::dom::ContentParent *aChild) override { return _to MaybeAddChildProcess(aChild); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDRAGSERVICE(_to) \
NS_IMETHOD InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferables, nsIScriptableRegion *aRegion, uint32_t aActionType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InvokeDragSession(aDOMNode, aTransferables, aRegion, aActionType); } \
NS_IMETHOD InvokeDragSessionWithImage(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferableArray, nsIScriptableRegion *aRegion, uint32_t aActionType, nsIDOMNode *aImage, int32_t aImageX, int32_t aImageY, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InvokeDragSessionWithImage(aDOMNode, aTransferableArray, aRegion, aActionType, aImage, aImageX, aImageY, aDragEvent, aDataTransfer); } \
NS_IMETHOD InvokeDragSessionWithSelection(nsISelection *aSelection, nsISupportsArray *aTransferableArray, uint32_t aActionType, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InvokeDragSessionWithSelection(aSelection, aTransferableArray, aActionType, aDragEvent, aDataTransfer); } \
NS_IMETHOD GetCurrentSession(nsIDragSession * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCurrentSession(_retval); } \
NS_IMETHOD StartDragSession(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->StartDragSession(); } \
NS_IMETHOD EndDragSession(bool aDoneDrag) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EndDragSession(aDoneDrag); } \
NS_IMETHOD FireDragEventAtSource(mozilla::EventMessage aEventMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FireDragEventAtSource(aEventMessage); } \
NS_IMETHOD Suppress(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Suppress(); } \
NS_IMETHOD Unsuppress(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Unsuppress(); } \
NS_IMETHOD DragMoved(int32_t aX, int32_t aY) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DragMoved(aX, aY); } \
virtual bool MaybeAddChildProcess(mozilla::dom::ContentParent *aChild) override;
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDragService : public nsIDragService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDRAGSERVICE
nsDragService();
private:
~nsDragService();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDragService, nsIDragService)
nsDragService::nsDragService()
{
/* member initializers and constructor code */
}
nsDragService::~nsDragService()
{
/* destructor code */
}
/* void invokeDragSession (in nsIDOMNode aDOMNode, in nsISupportsArray aTransferables, in nsIScriptableRegion aRegion, in unsigned long aActionType); */
NS_IMETHODIMP nsDragService::InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferables, nsIScriptableRegion *aRegion, uint32_t aActionType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void invokeDragSessionWithImage (in nsIDOMNode aDOMNode, in nsISupportsArray aTransferableArray, in nsIScriptableRegion aRegion, in unsigned long aActionType, in nsIDOMNode aImage, in long aImageX, in long aImageY, in nsIDOMDragEvent aDragEvent, in nsIDOMDataTransfer aDataTransfer); */
NS_IMETHODIMP nsDragService::InvokeDragSessionWithImage(nsIDOMNode *aDOMNode, nsISupportsArray *aTransferableArray, nsIScriptableRegion *aRegion, uint32_t aActionType, nsIDOMNode *aImage, int32_t aImageX, int32_t aImageY, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void invokeDragSessionWithSelection (in nsISelection aSelection, in nsISupportsArray aTransferableArray, in unsigned long aActionType, in nsIDOMDragEvent aDragEvent, in nsIDOMDataTransfer aDataTransfer); */
NS_IMETHODIMP nsDragService::InvokeDragSessionWithSelection(nsISelection *aSelection, nsISupportsArray *aTransferableArray, uint32_t aActionType, nsIDOMDragEvent *aDragEvent, nsIDOMDataTransfer *aDataTransfer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDragSession getCurrentSession (); */
NS_IMETHODIMP nsDragService::GetCurrentSession(nsIDragSession * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void startDragSession (); */
NS_IMETHODIMP nsDragService::StartDragSession()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void endDragSession (in boolean aDoneDrag); */
NS_IMETHODIMP nsDragService::EndDragSession(bool aDoneDrag)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void fireDragEventAtSource (in EventMessage aEventMessage); */
NS_IMETHODIMP nsDragService::FireDragEventAtSource(mozilla::EventMessage aEventMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void suppress (); */
NS_IMETHODIMP nsDragService::Suppress()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void unsuppress (); */
NS_IMETHODIMP nsDragService::Unsuppress()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void dragMoved (in long aX, in long aY); */
NS_IMETHODIMP nsDragService::DragMoved(int32_t aX, int32_t aY)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [nostdcall,notxpcom] boolean maybeAddChildProcess (in ContentParentPtr aChild); */
bool nsDragService::MaybeAddChildProcess(mozilla::dom::ContentParent *aChild)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDragService_h__ */