|
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/21572/root/usr/lib64/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/widget/nsIClipboard.idl
*/
#ifndef __gen_nsIClipboard_h__
#define __gen_nsIClipboard_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsITransferable_h__
#include "nsITransferable.h"
#endif
#ifndef __gen_nsIClipboardOwner_h__
#include "nsIClipboardOwner.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIArray; /* forward declaration */
/* starting interface: nsIClipboard */
#define NS_ICLIPBOARD_IID_STR "38984945-8674-4d04-b786-5c0ca9434457"
#define NS_ICLIPBOARD_IID \
{0x38984945, 0x8674, 0x4d04, \
{ 0xb7, 0x86, 0x5c, 0x0c, 0xa9, 0x43, 0x44, 0x57 }}
class NS_NO_VTABLE nsIClipboard : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICLIPBOARD_IID)
enum {
kSelectionClipboard = 0,
kGlobalClipboard = 1
};
/* void setData (in nsITransferable aTransferable, in nsIClipboardOwner anOwner, in long aWhichClipboard); */
NS_IMETHOD SetData(nsITransferable *aTransferable, nsIClipboardOwner *anOwner, int32_t aWhichClipboard) = 0;
/* void getData (in nsITransferable aTransferable, in long aWhichClipboard); */
NS_IMETHOD GetData(nsITransferable *aTransferable, int32_t aWhichClipboard) = 0;
/* void emptyClipboard (in long aWhichClipboard); */
NS_IMETHOD EmptyClipboard(int32_t aWhichClipboard) = 0;
/* boolean hasDataMatchingFlavors ([array, size_is (aLength)] in string aFlavorList, in unsigned long aLength, in long aWhichClipboard); */
NS_IMETHOD HasDataMatchingFlavors(const char * *aFlavorList, uint32_t aLength, int32_t aWhichClipboard, bool *_retval) = 0;
/* boolean supportsSelectionClipboard (); */
NS_IMETHOD SupportsSelectionClipboard(bool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIClipboard, NS_ICLIPBOARD_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICLIPBOARD \
NS_IMETHOD SetData(nsITransferable *aTransferable, nsIClipboardOwner *anOwner, int32_t aWhichClipboard); \
NS_IMETHOD GetData(nsITransferable *aTransferable, int32_t aWhichClipboard); \
NS_IMETHOD EmptyClipboard(int32_t aWhichClipboard); \
NS_IMETHOD HasDataMatchingFlavors(const char * *aFlavorList, uint32_t aLength, int32_t aWhichClipboard, bool *_retval); \
NS_IMETHOD SupportsSelectionClipboard(bool *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICLIPBOARD(_to) \
NS_IMETHOD SetData(nsITransferable *aTransferable, nsIClipboardOwner *anOwner, int32_t aWhichClipboard) { return _to SetData(aTransferable, anOwner, aWhichClipboard); } \
NS_IMETHOD GetData(nsITransferable *aTransferable, int32_t aWhichClipboard) { return _to GetData(aTransferable, aWhichClipboard); } \
NS_IMETHOD EmptyClipboard(int32_t aWhichClipboard) { return _to EmptyClipboard(aWhichClipboard); } \
NS_IMETHOD HasDataMatchingFlavors(const char * *aFlavorList, uint32_t aLength, int32_t aWhichClipboard, bool *_retval) { return _to HasDataMatchingFlavors(aFlavorList, aLength, aWhichClipboard, _retval); } \
NS_IMETHOD SupportsSelectionClipboard(bool *_retval) { return _to SupportsSelectionClipboard(_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_NSICLIPBOARD(_to) \
NS_IMETHOD SetData(nsITransferable *aTransferable, nsIClipboardOwner *anOwner, int32_t aWhichClipboard) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetData(aTransferable, anOwner, aWhichClipboard); } \
NS_IMETHOD GetData(nsITransferable *aTransferable, int32_t aWhichClipboard) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetData(aTransferable, aWhichClipboard); } \
NS_IMETHOD EmptyClipboard(int32_t aWhichClipboard) { return !_to ? NS_ERROR_NULL_POINTER : _to->EmptyClipboard(aWhichClipboard); } \
NS_IMETHOD HasDataMatchingFlavors(const char * *aFlavorList, uint32_t aLength, int32_t aWhichClipboard, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->HasDataMatchingFlavors(aFlavorList, aLength, aWhichClipboard, _retval); } \
NS_IMETHOD SupportsSelectionClipboard(bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->SupportsSelectionClipboard(_retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsClipboard : public nsIClipboard
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICLIPBOARD
nsClipboard();
private:
~nsClipboard();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsClipboard, nsIClipboard)
nsClipboard::nsClipboard()
{
/* member initializers and constructor code */
}
nsClipboard::~nsClipboard()
{
/* destructor code */
}
/* void setData (in nsITransferable aTransferable, in nsIClipboardOwner anOwner, in long aWhichClipboard); */
NS_IMETHODIMP nsClipboard::SetData(nsITransferable *aTransferable, nsIClipboardOwner *anOwner, int32_t aWhichClipboard)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getData (in nsITransferable aTransferable, in long aWhichClipboard); */
NS_IMETHODIMP nsClipboard::GetData(nsITransferable *aTransferable, int32_t aWhichClipboard)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void emptyClipboard (in long aWhichClipboard); */
NS_IMETHODIMP nsClipboard::EmptyClipboard(int32_t aWhichClipboard)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean hasDataMatchingFlavors ([array, size_is (aLength)] in string aFlavorList, in unsigned long aLength, in long aWhichClipboard); */
NS_IMETHODIMP nsClipboard::HasDataMatchingFlavors(const char * *aFlavorList, uint32_t aLength, int32_t aWhichClipboard, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean supportsSelectionClipboard (); */
NS_IMETHODIMP nsClipboard::SupportsSelectionClipboard(bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIClipboard_h__ */