Bug 1073336 part 5 - Add AnimationPlayerCollection::PlayerUpdated; r=dbaron
[gecko.git] / widget / nsBaseClipboard.h
blob8ceafdb1301f20a62fd2b52718c407a51cd65aec
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;
13 class nsDataObj;
14 class nsIClipboardOwner;
15 class nsIWidget;
17 /**
18 * Native Win32 BaseClipboard wrapper
21 class nsBaseClipboard : public nsIClipboard
24 public:
25 nsBaseClipboard();
27 //nsISupports
28 NS_DECL_ISUPPORTS
30 // nsIClipboard
31 NS_DECL_NSICLIPBOARD
33 protected:
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__