Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef nsContextMenuInfo_h__ |
michael@0 | 8 | #define nsContextMenuInfo_h__ |
michael@0 | 9 | |
michael@0 | 10 | #include "nsCOMPtr.h" |
michael@0 | 11 | #include "nsIContextMenuListener2.h" |
michael@0 | 12 | #include "nsIDOMNode.h" |
michael@0 | 13 | #include "nsIDOMEvent.h" |
michael@0 | 14 | #include "imgIContainer.h" |
michael@0 | 15 | #include "imgIRequest.h" |
michael@0 | 16 | |
michael@0 | 17 | class ChromeContextMenuListener; |
michael@0 | 18 | class imgRequestProxy; |
michael@0 | 19 | |
michael@0 | 20 | //***************************************************************************** |
michael@0 | 21 | // class nsContextMenuInfo |
michael@0 | 22 | // |
michael@0 | 23 | // Helper class for implementors of nsIContextMenuListener2 |
michael@0 | 24 | //***************************************************************************** |
michael@0 | 25 | |
michael@0 | 26 | class nsContextMenuInfo : public nsIContextMenuInfo |
michael@0 | 27 | { |
michael@0 | 28 | friend class ChromeContextMenuListener; |
michael@0 | 29 | |
michael@0 | 30 | public: |
michael@0 | 31 | nsContextMenuInfo(); |
michael@0 | 32 | |
michael@0 | 33 | NS_DECL_ISUPPORTS |
michael@0 | 34 | NS_DECL_NSICONTEXTMENUINFO |
michael@0 | 35 | |
michael@0 | 36 | private: |
michael@0 | 37 | virtual ~nsContextMenuInfo(); |
michael@0 | 38 | |
michael@0 | 39 | void SetMouseEvent(nsIDOMEvent *aEvent) |
michael@0 | 40 | { mMouseEvent = aEvent; } |
michael@0 | 41 | |
michael@0 | 42 | void SetDOMNode(nsIDOMNode *aNode) |
michael@0 | 43 | { mDOMNode = aNode; } |
michael@0 | 44 | |
michael@0 | 45 | void SetAssociatedLink(nsIDOMNode *aLink) |
michael@0 | 46 | { mAssociatedLink = aLink; } |
michael@0 | 47 | |
michael@0 | 48 | nsresult GetImageRequest(nsIDOMNode *aDOMNode, |
michael@0 | 49 | imgIRequest **aRequest); |
michael@0 | 50 | |
michael@0 | 51 | bool HasBackgroundImage(nsIDOMNode *aDOMNode); |
michael@0 | 52 | |
michael@0 | 53 | nsresult GetBackgroundImageRequest(nsIDOMNode *aDOMNode, |
michael@0 | 54 | imgRequestProxy **aRequest); |
michael@0 | 55 | |
michael@0 | 56 | nsresult GetBackgroundImageRequestInternal(nsIDOMNode *aDOMNode, |
michael@0 | 57 | imgRequestProxy **aRequest); |
michael@0 | 58 | |
michael@0 | 59 | private: |
michael@0 | 60 | nsCOMPtr<nsIDOMEvent> mMouseEvent; |
michael@0 | 61 | nsCOMPtr<nsIDOMNode> mDOMNode; |
michael@0 | 62 | nsCOMPtr<nsIDOMNode> mAssociatedLink; |
michael@0 | 63 | |
michael@0 | 64 | }; // class nsContextMenuInfo |
michael@0 | 65 | |
michael@0 | 66 | |
michael@0 | 67 | #endif // nsContextMenuInfo_h__ |