michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /** michael@0: * nsIWindowCreator is a callback interface used by Gecko to create michael@0: * new browser windows. The application, either Mozilla or an embedding app, michael@0: * must provide an implementation of the Window Watcher component and michael@0: * notify the WindowWatcher during application initialization. michael@0: * @see nsIWindowWatcher michael@0: */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface nsIWebBrowserChrome; michael@0: michael@0: [scriptable, uuid(30465632-A777-44cc-90F9-8145475EF999)] michael@0: michael@0: interface nsIWindowCreator : nsISupports { michael@0: michael@0: /** Create a new window. Gecko will/may call this method, if made michael@0: available to it, to create new windows. michael@0: @param parent parent window, if any. null if not. the newly created michael@0: window should be made a child/dependent window of michael@0: the parent, if any (and if the concept applies michael@0: to the underlying OS). michael@0: @param chromeFlags chrome features from nsIWebBrowserChrome michael@0: @return the new window michael@0: */ michael@0: nsIWebBrowserChrome createChromeWindow(in nsIWebBrowserChrome parent, michael@0: in uint32_t chromeFlags); michael@0: }; michael@0: michael@0: %{C++ michael@0: // {30465632-A777-44cc-90F9-8145475EF999} michael@0: #define NS_WINDOWCREATOR_IID \ michael@0: {0x30465632, 0xa777, 0x44cc, {0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99}} michael@0: %} michael@0: