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"
12 class nsITransferable
;
14 class nsIClipboardOwner
;
18 * Native Win32 BaseClipboard wrapper
21 class nsBaseClipboard
: public nsIClipboard
34 virtual ~nsBaseClipboard();
36 NS_IMETHOD
SetNativeClipboardData ( int32_t aWhichClipboard
) = 0;
37 NS_IMETHOD
GetNativeClipboardData ( nsITransferable
* aTransferable
, int32_t aWhichClipboard
) = 0;
39 bool mEmptyingForSetData
;
40 bool mIgnoreEmptyNotification
;
41 nsIClipboardOwner
* mClipboardOwner
;
42 nsITransferable
* mTransferable
;
46 #endif // nsBaseClipboard_h__