2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
class nsPIDOMWindowOuter;
|
2010-02-20 19:07:03 +03:00
|
|
|
class nsIControllers;
|
|
|
|
class nsIController;
|
2018-01-31 22:49:26 +03:00
|
|
|
class nsINode;
|
2000-11-04 11:21:20 +03:00
|
|
|
|
2015-06-08 08:39:39 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class TabParent;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2015-06-08 08:39:39 +03:00
|
|
|
|
2000-11-04 11:21:20 +03:00
|
|
|
#define NS_IWINDOWROOT_IID \
|
2015-09-17 13:16:20 +03:00
|
|
|
{ 0xb8724c49, 0xc398, 0x4f9b, \
|
|
|
|
{ 0x82, 0x59, 0x87, 0x27, 0xa6, 0x47, 0xdd, 0x0f } }
|
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
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
virtual nsPIDOMWindowOuter* 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
|
2018-01-31 22:49:26 +03:00
|
|
|
virtual already_AddRefed<nsINode> GetPopupNode() = 0;
|
|
|
|
virtual void SetPopupNode(nsINode* aNode) = 0;
|
2010-02-20 19:07:03 +03:00
|
|
|
|
2017-09-07 16:54:49 +03:00
|
|
|
/**
|
|
|
|
* @param aForVisibleWindow true if caller needs controller which is
|
|
|
|
* associated with visible window.
|
|
|
|
*/
|
2010-02-20 19:07:03 +03:00
|
|
|
virtual nsresult GetControllerForCommand(const char *aCommand,
|
2017-09-07 16:54:49 +03:00
|
|
|
bool aForVisibleWindow,
|
2010-02-20 19:07:03 +03:00
|
|
|
nsIController** aResult) = 0;
|
2017-09-07 16:54:49 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param aForVisibleWindow true if caller needs controllers which are
|
|
|
|
* associated with visible window.
|
|
|
|
*/
|
|
|
|
virtual nsresult GetControllers(bool aForVisibleWindow,
|
|
|
|
nsIControllers** aResult) = 0;
|
2010-02-20 20:05:20 +03:00
|
|
|
|
2014-12-09 18:48:27 +03:00
|
|
|
virtual void GetEnabledDisabledCommands(nsTArray<nsCString>& aEnabledCommands,
|
|
|
|
nsTArray<nsCString>& aDisabledCommands) = 0;
|
|
|
|
|
2013-04-06 04:44:15 +04:00
|
|
|
virtual void SetParentTarget(mozilla::dom::EventTarget* aTarget) = 0;
|
|
|
|
virtual mozilla::dom::EventTarget* GetParentTarget() = 0;
|
2015-06-08 08:39:39 +03:00
|
|
|
|
|
|
|
// Stores a weak reference to the browser.
|
|
|
|
virtual void AddBrowser(mozilla::dom::TabParent* aBrowser) = 0;
|
|
|
|
virtual void RemoveBrowser(mozilla::dom::TabParent* aBrowser) = 0;
|
|
|
|
|
|
|
|
typedef void (*BrowserEnumerator)(mozilla::dom::TabParent* aTab, void* aArg);
|
|
|
|
|
|
|
|
// Enumerate all stored browsers that for which the weak reference is valid.
|
|
|
|
virtual void EnumerateBrowsers(BrowserEnumerator aEnumFunc, void* aArg) = 0;
|
2016-06-09 14:59:31 +03:00
|
|
|
|
|
|
|
virtual bool ShowAccelerators() = 0;
|
|
|
|
virtual bool ShowFocusRings() = 0;
|
|
|
|
virtual void SetShowAccelerators(bool aEnable) = 0;
|
|
|
|
virtual void SetShowFocusRings(bool aEnable) = 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__
|