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 nsPIWindowRoot_h__
|
|
|
|
#define nsPIWindowRoot_h__
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
2013-01-29 17:44:01 +04:00
|
|
|
#include "mozilla/dom/EventTarget.h"
|
2000-11-04 11:21:20 +03:00
|
|
|
|
2010-02-20 19:07:03 +03:00
|
|
|
class nsPIDOMWindow;
|
|
|
|
class nsIControllers;
|
|
|
|
class nsIController;
|
2000-11-04 11:21:20 +03:00
|
|
|
|
|
|
|
#define NS_IWINDOWROOT_IID \
|
2013-05-31 01:46:39 +04:00
|
|
|
{ 0x3f71f50c, 0xa7e0, 0x43bc, \
|
|
|
|
{ 0xac, 0x25, 0x4d, 0xbb, 0x88, 0x7b, 0x21, 0x09 } }
|
2000-11-04 11:21:20 +03:00
|
|
|
|
2013-01-29 17:44:01 +04:00
|
|
|
class nsPIWindowRoot : public mozilla::dom::EventTarget
|
2011-06-24 06:17:58 +04:00
|
|
|
{
|
2000-11-04 11:21:20 +03:00
|
|
|
public:
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWINDOWROOT_IID)
|
2000-11-04 11:21:20 +03:00
|
|
|
|
2010-02-20 19:07:03 +03:00
|
|
|
virtual nsPIDOMWindow* GetWindow()=0;
|
2007-07-06 17:47:50 +04:00
|
|
|
|
2010-08-09 20:17:19 +04:00
|
|
|
// get and set the node that is the context of a popup menu
|
|
|
|
virtual nsIDOMNode* GetPopupNode() = 0;
|
2010-02-20 19:07:03 +03:00
|
|
|
virtual void SetPopupNode(nsIDOMNode* aNode) = 0;
|
|
|
|
|
|
|
|
virtual nsresult GetControllerForCommand(const char *aCommand,
|
|
|
|
nsIController** aResult) = 0;
|
|
|
|
virtual nsresult GetControllers(nsIControllers** aResult) = 0;
|
2010-02-20 20:05:20 +03:00
|
|
|
|
2013-04-06 04:44:15 +04:00
|
|
|
virtual void SetParentTarget(mozilla::dom::EventTarget* aTarget) = 0;
|
|
|
|
virtual mozilla::dom::EventTarget* GetParentTarget() = 0;
|
2013-05-31 01:46:39 +04:00
|
|
|
virtual nsIDOMWindow* GetOwnerGlobal() MOZ_OVERRIDE = 0;
|
2000-11-04 11:21:20 +03:00
|
|
|
};
|
|
|
|
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsPIWindowRoot, NS_IWINDOWROOT_IID)
|
|
|
|
|
2000-11-04 11:21:20 +03:00
|
|
|
#endif // nsPIWindowRoot_h__
|