mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef _nsClipboard_h
|
|
#define _nsClipboard_h
|
|
|
|
#include "nsBaseClipboard.h"
|
|
class nsITransferable;
|
|
|
|
/**
|
|
* Native OS/2 Clipboard wrapper
|
|
*/
|
|
|
|
struct FormatRecord;
|
|
|
|
class nsClipboard : public nsBaseClipboard
|
|
{
|
|
|
|
public:
|
|
nsClipboard();
|
|
virtual ~nsClipboard();
|
|
|
|
// nsIClipboard
|
|
NS_IMETHOD HasDataMatchingFlavors(const char** aFlavorList, PRUint32 aLength,
|
|
PRInt32 aWhichClipboard, bool *_retval);
|
|
|
|
protected:
|
|
NS_IMETHOD SetNativeClipboardData(PRInt32 aWhichClipboard);
|
|
NS_IMETHOD GetNativeClipboardData(nsITransferable *aTransferable, PRInt32 aWhichClipboard);
|
|
|
|
enum ClipboardAction
|
|
{
|
|
Read,
|
|
Write
|
|
};
|
|
|
|
PRUint32 GetFormatID(const char *aMimeStr);
|
|
bool GetClipboardData(const char *aFlavour);
|
|
bool GetClipboardDataByID(PRUint32 aFormatID, const char *aFlavor);
|
|
void SetClipboardData(const char *aFlavour);
|
|
nsresult DoClipboardAction(ClipboardAction aAction);
|
|
};
|
|
|
|
#endif
|