mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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 "nsIClipboard.h"
|
|
#include "nsITransferable.h"
|
|
#include "nsIClipboardOwner.h"
|
|
#include "nsClipboardPrivacyHandler.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include <qclipboard.h>
|
|
|
|
/* Native Qt Clipboard wrapper */
|
|
class nsClipboard : public nsIClipboard
|
|
{
|
|
public:
|
|
nsClipboard();
|
|
virtual ~nsClipboard();
|
|
|
|
//nsISupports
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// nsIClipboard
|
|
NS_DECL_NSICLIPBOARD
|
|
|
|
protected:
|
|
NS_IMETHOD SetNativeClipboardData(nsITransferable *aTransferable,
|
|
QClipboard::Mode cbMode);
|
|
NS_IMETHOD GetNativeClipboardData(nsITransferable *aTransferable,
|
|
QClipboard::Mode cbMode);
|
|
|
|
nsCOMPtr<nsIClipboardOwner> mSelectionOwner;
|
|
nsCOMPtr<nsIClipboardOwner> mGlobalOwner;
|
|
nsCOMPtr<nsITransferable> mSelectionTransferable;
|
|
nsCOMPtr<nsITransferable> mGlobalTransferable;
|
|
nsRefPtr<nsClipboardPrivacyHandler> mPrivacyHandler;
|
|
};
|
|
|
|
#endif // nsClipboard_h__
|