mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Backed out changeset bb6c6889b802 (bug 1261842) Backed out changeset c14ccfac7b4b (bug 1261842) Backed out changeset d6ffc9db5346 (bug 1261842) Backed out changeset 2a1acfd17baf (bug 1261842) Backed out changeset 968e7b3b73fb (bug 1261842) Backed out changeset 8d708922e47a (bug 1261842) Backed out changeset 0a08398b5087 (bug 1261842) Backed out changeset b2e910bb1d72 (bug 1261842) Backed out changeset f6062f113911 (bug 1261842) Backed out changeset 07b259eb7121 (bug 1261842) Backed out changeset 970cbbb3a658 (bug 1261842) Backed out changeset b6f7395d2bbf (bug 1261842) Backed out changeset 20eb3987a721 (bug 1261842) Backed out changeset 6eaa642a93e1 (bug 1261842) Backed out changeset 855931929739 (bug 1261842) Backed out changeset 1240345f5624 (bug 1261842) Backed out changeset ce46ebf231c1 (bug 1261842) Backed out changeset 8d34b61fbfb3 (bug 1261842) Backed out changeset 9d8a382c5b1d (bug 1261842) Backed out changeset e2472a4cc209 (bug 1261842) Backed out changeset e91913cd64b8 (bug 1261842) Backed out changeset 4cf843a05a68 (bug 1261842) Backed out changeset cbdc0deb92bd (bug 1261842) Backed out changeset a94e6a85c931 (bug 1261842) Backed out changeset 3b5b92f04ea5 (bug 1278985)
135 lines
5.9 KiB
Text
135 lines
5.9 KiB
Text
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
/* Private "control" methods on the Window Watcher. These are annoying
|
|
bookkeeping methods, not part of the public (embedding) interface.
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface mozIDOMWindowProxy;
|
|
interface nsIDOMWindow;
|
|
interface nsISimpleEnumerator;
|
|
interface nsIWebBrowserChrome;
|
|
interface nsIDocShellTreeItem;
|
|
interface nsIArray;
|
|
interface nsITabParent;
|
|
|
|
[uuid(d162f9c4-19d5-4723-931f-f1e51bfa9f68)]
|
|
|
|
interface nsPIWindowWatcher : nsISupports
|
|
{
|
|
/** A window has been created. Add it to our list.
|
|
@param aWindow the window to add
|
|
@param aChrome the corresponding chrome window. The DOM window
|
|
and chrome will be mapped together, and the corresponding
|
|
chrome can be retrieved using the (not private)
|
|
method getChromeForWindow. If null, any extant mapping
|
|
will be cleared.
|
|
*/
|
|
void addWindow(in mozIDOMWindowProxy aWindow,
|
|
in nsIWebBrowserChrome aChrome);
|
|
|
|
/** A window has been closed. Remove it from our list.
|
|
@param aWindow the window to remove
|
|
*/
|
|
void removeWindow(in mozIDOMWindowProxy aWindow);
|
|
|
|
/** Like the public interface's open(), but can handle openDialog-style
|
|
arguments and calls which shouldn't result in us navigating the window.
|
|
|
|
@param aParent parent window, if any. Null if no parent. If it is
|
|
impossible to get to an nsIWebBrowserChrome from aParent, this
|
|
method will effectively act as if aParent were null.
|
|
@param aURL url to which to open the new window. Must already be
|
|
escaped, if applicable. can be null.
|
|
@param aName window name from JS window.open. can be null. If a window
|
|
with this name already exists, the openWindow call may just load
|
|
aUrl in it (if aUrl is not null) and return it.
|
|
@param aFeatures window features from JS window.open. can be null.
|
|
@param aCalledFromScript true if we were called from script.
|
|
@param aDialog use dialog defaults (see nsIDOMWindow::openDialog)
|
|
@param aNavigate true if we should navigate the new window to the
|
|
specified URL.
|
|
@param aArgs Window argument
|
|
@param aOpenerFullZoom the full zoom multiplier for the opener window.
|
|
this can be null in the single process case where
|
|
the opener full zoom is obtained from aParent.
|
|
@return the new window
|
|
|
|
@note This method may examine the JS context stack for purposes of
|
|
determining the security context to use for the search for a given
|
|
window named aName.
|
|
@note This method should try to set the default charset for the new
|
|
window to the default charset of the document in the calling window
|
|
(which is determined based on the JS stack and the value of
|
|
aParent). This is not guaranteed, however.
|
|
*/
|
|
[optional_argc]
|
|
mozIDOMWindowProxy openWindow2(in mozIDOMWindowProxy aParent, in string aUrl,
|
|
in string aName, in string aFeatures,
|
|
in boolean aCalledFromScript,
|
|
in boolean aDialog,
|
|
in boolean aNavigate,
|
|
in nsISupports aArgs,
|
|
[optional] in float aOpenerFullZoom);
|
|
|
|
/**
|
|
* Opens a new window using the most recent non-private browser
|
|
* window as its parent.
|
|
*
|
|
* @return the nsITabParent of the initial browser for the newly opened
|
|
* window.
|
|
*/
|
|
nsITabParent openWindowWithoutParent();
|
|
|
|
/**
|
|
* Opens a new window so that the window that aOpeningTab belongs to
|
|
* is set as the parent window. The newly opened window will also
|
|
* inherit load context information from aOpeningTab.
|
|
*
|
|
* @param aOpeningTab
|
|
* The nsITabParent that is requesting the new window be opened.
|
|
* @param aFeatures
|
|
* Window features if called with window.open or similar.
|
|
* @param aCalledFromJS
|
|
* True if called via window.open or similar.
|
|
* @param aOpenerFullZoom
|
|
* The current zoom multiplier for the opener tab. This is then
|
|
* applied to the newly opened window.
|
|
*
|
|
* @return the nsITabParent of the initial browser for the newly opened
|
|
* window.
|
|
*/
|
|
nsITabParent openWindowWithTabParent(in nsITabParent aOpeningTab,
|
|
in ACString aFeatures,
|
|
in boolean aCalledFromJS,
|
|
in float aOpenerFullZoom);
|
|
|
|
/**
|
|
* Find a named docshell tree item amongst all windows registered
|
|
* with the window watcher. This may be a subframe in some window,
|
|
* for example.
|
|
*
|
|
* @param aName the name of the window. Must not be null.
|
|
* @param aRequestor the tree item immediately making the request.
|
|
* We should make sure to not recurse down into its findItemWithName
|
|
* method.
|
|
* @param aOriginalRequestor the original treeitem that made the request.
|
|
* Used for security checks.
|
|
* @return the tree item with aName as the name, or null if there
|
|
* isn't one. "Special" names, like _self, _top, etc, will be
|
|
* treated specially only if aRequestor is null; in that case they
|
|
* will be resolved relative to the first window the windowwatcher
|
|
* knows about.
|
|
* @see findItemWithName methods on nsIDocShellTreeItem and
|
|
* nsIDocShellTreeOwner
|
|
*/
|
|
nsIDocShellTreeItem findItemWithName(in wstring aName,
|
|
in nsIDocShellTreeItem aRequestor,
|
|
in nsIDocShellTreeItem aOriginalRequestor);
|
|
};
|
|
|