gecko-dev/dom/base/nsWindowRoot.h

66 строки
1.9 KiB
C
Исходник Обычный вид История

2000-11-04 11:21:20 +03:00
/* -*- Mode: C++; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
2012-05-21 15:12:37 +04:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2000-11-04 11:21:20 +03:00
#ifndef nsWindowRoot_h__
#define nsWindowRoot_h__
class nsPIDOMWindow;
2000-11-04 11:21:20 +03:00
class nsIDOMEventListener;
class nsEventListenerManager;
2000-11-04 11:21:20 +03:00
class nsIDOMEvent;
class nsEventChainPreVisitor;
class nsEventChainPostVisitor;
2000-11-04 11:21:20 +03:00
#include "nsIDOMEventTarget.h"
#include "nsEventListenerManager.h"
2000-11-04 11:21:20 +03:00
#include "nsPIWindowRoot.h"
#include "nsCycleCollectionParticipant.h"
2000-11-04 11:21:20 +03:00
class nsWindowRoot : public nsPIWindowRoot
2000-11-04 11:21:20 +03:00
{
public:
nsWindowRoot(nsPIDOMWindow* aWindow);
2000-11-04 11:21:20 +03:00
virtual ~nsWindowRoot();
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_NSIDOMEVENTTARGET
2000-11-04 11:21:20 +03:00
// nsPIWindowRoot
virtual nsPIDOMWindow* GetWindow();
virtual nsresult GetControllers(nsIControllers** aResult);
virtual nsresult GetControllerForCommand(const char * aCommand,
nsIController** _retval);
virtual nsIDOMNode* GetPopupNode();
virtual void SetPopupNode(nsIDOMNode* aNode);
virtual void SetParentTarget(nsIDOMEventTarget* aTarget)
{
mParent = aTarget;
}
virtual nsIDOMEventTarget* GetParentTarget() { return mParent; }
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsWindowRoot, nsIDOMEventTarget)
2000-11-04 11:21:20 +03:00
protected:
// Members
nsPIDOMWindow* mWindow; // [Weak]. The window will hold on to us and let go when it dies.
nsRefPtr<nsEventListenerManager> mListenerManager; // [Strong]. We own the manager, which owns event listeners attached
2000-11-04 11:21:20 +03:00
// to us.
nsCOMPtr<nsIDOMNode> mPopupNode; // [OWNER]
nsCOMPtr<nsIDOMEventTarget> mParent;
2000-11-04 11:21:20 +03:00
};
extern nsresult
NS_NewWindowRoot(nsPIDOMWindow* aWindow,
nsIDOMEventTarget** aResult);
2000-11-04 11:21:20 +03:00
#endif