1999-03-19 15:57:10 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsIClipboard_h__
|
|
|
|
#define nsIClipboard_h__
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
|
|
|
|
class nsITransferable;
|
1999-03-23 15:22:03 +00:00
|
|
|
class nsIClipboardOwner;
|
|
|
|
class nsIDataFlavor;
|
1999-03-19 15:57:10 +00:00
|
|
|
|
|
|
|
// {8B5314BA-DB01-11d2-96CE-0060B0FB9956}
|
|
|
|
#define NS_ICLIPBOARD_IID \
|
|
|
|
{ 0x8b5314ba, 0xdb01, 0x11d2, { 0x96, 0xce, 0x0, 0x60, 0xb0, 0xfb, 0x99, 0x56 } }
|
|
|
|
|
|
|
|
class nsIClipboard : public nsISupports {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
1999-03-23 15:22:03 +00:00
|
|
|
* Set the transferable object onto the clipboard,
|
|
|
|
* it is used to get and set the data from the native clipboard
|
1999-03-19 15:57:10 +00:00
|
|
|
*
|
|
|
|
* @param aTransferable The transferable
|
1999-03-23 15:22:03 +00:00
|
|
|
* @param anOwner The owner of the transferable
|
1999-03-19 15:57:10 +00:00
|
|
|
* @result NS_Ok if no errors
|
|
|
|
*/
|
|
|
|
|
1999-03-23 15:22:03 +00:00
|
|
|
NS_IMETHOD SetTransferable(nsITransferable * aTransferable, nsIClipboardOwner * anOwner) = 0;
|
1999-03-19 15:57:10 +00:00
|
|
|
|
|
|
|
/**
|
1999-03-23 15:22:03 +00:00
|
|
|
* Gets the data from the clipboard and put it into the transferable object
|
1999-03-19 15:57:10 +00:00
|
|
|
*
|
|
|
|
* @param aTransferable The transferable
|
|
|
|
* @result NS_Ok if no errors
|
|
|
|
*/
|
|
|
|
|
1999-03-23 15:22:03 +00:00
|
|
|
NS_IMETHOD GetClipboard() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the clipboard from the transferable object
|
|
|
|
*
|
|
|
|
* @param aTransferable The transferable
|
|
|
|
* @result NS_Ok if no errors
|
|
|
|
*/
|
|
|
|
|
|
|
|
NS_IMETHOD SetClipboard() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check to set if ant of the native data on the clipboard matches this data flavor
|
|
|
|
*
|
|
|
|
* @result NS_Ok if if the data flavor is supported and, NS_ERROR_FAILURE is it is not
|
|
|
|
*/
|
|
|
|
|
|
|
|
NS_IMETHOD IsDataFlavorSupported(nsIDataFlavor * aDataFlavor) = 0;
|
1999-03-19 15:57:10 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|