Bug 1746870: part 1) Minorly extend documentation in <jsactors.rst>. r=hsivonen
[gecko.git] / widget / nsBaseClipboard.h
blob49dd748c0ff60039aba2c9394fef00d68628e406
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsBaseClipboard_h__
7 #define nsBaseClipboard_h__
9 #include "nsIClipboard.h"
10 #include "nsITransferable.h"
11 #include "nsCOMPtr.h"
13 class nsITransferable;
14 class nsIClipboardOwner;
15 class nsIWidget;
17 /**
18 * Native Win32 BaseClipboard wrapper
21 class nsBaseClipboard : public nsIClipboard {
22 public:
23 nsBaseClipboard();
25 // nsISupports
26 NS_DECL_ISUPPORTS
28 // nsIClipboard
29 NS_DECL_NSICLIPBOARD
31 protected:
32 virtual ~nsBaseClipboard();
34 NS_IMETHOD SetNativeClipboardData(int32_t aWhichClipboard) = 0;
35 NS_IMETHOD GetNativeClipboardData(nsITransferable* aTransferable,
36 int32_t aWhichClipboard) = 0;
38 bool mEmptyingForSetData;
39 bool mIgnoreEmptyNotification;
40 nsCOMPtr<nsIClipboardOwner> mClipboardOwner;
41 nsCOMPtr<nsITransferable> mTransferable;
44 #endif // nsBaseClipboard_h__