Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef __inLayoutUtils_h__ |
michael@0 | 7 | #define __inLayoutUtils_h__ |
michael@0 | 8 | |
michael@0 | 9 | class nsIDocument; |
michael@0 | 10 | class nsIDOMDocument; |
michael@0 | 11 | class nsIDOMElement; |
michael@0 | 12 | class nsIDOMNode; |
michael@0 | 13 | class nsIDOMWindow; |
michael@0 | 14 | class nsIFrame; |
michael@0 | 15 | class nsIPresShell; |
michael@0 | 16 | class nsISupports; |
michael@0 | 17 | |
michael@0 | 18 | namespace mozilla { |
michael@0 | 19 | class EventStateManager; |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | class inLayoutUtils |
michael@0 | 23 | { |
michael@0 | 24 | public: |
michael@0 | 25 | static nsIDOMWindow* GetWindowFor(nsIDOMNode* aNode); |
michael@0 | 26 | static nsIDOMWindow* GetWindowFor(nsIDOMDocument* aDoc); |
michael@0 | 27 | static nsIPresShell* GetPresShellFor(nsISupports* aThing); |
michael@0 | 28 | static nsIFrame* GetFrameFor(nsIDOMElement* aElement); |
michael@0 | 29 | static mozilla::EventStateManager* |
michael@0 | 30 | GetEventStateManagerFor(nsIDOMElement *aElement); |
michael@0 | 31 | static nsIDOMDocument* GetSubDocumentFor(nsIDOMNode* aNode); |
michael@0 | 32 | static nsIDOMNode* GetContainerFor(const nsIDocument& aDoc); |
michael@0 | 33 | }; |
michael@0 | 34 | |
michael@0 | 35 | #endif // __inLayoutUtils_h__ |