view dwt/internal/mozilla/nsIWindowCreator.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
line wrap: on
line source

module dwt.internal.mozilla.nsIWindowCreator;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;

import dwt.internal.mozilla.nsIWebBrowserChrome;

const char[] NS_IWINDOWCREATOR_IID_STR = "30465632-a777-44cc-90f9-8145475ef999";

const nsIID NS_IWINDOWCREATOR_IID= 
  {0x30465632, 0xa777, 0x44cc, 
    [ 0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99 ]};

extern(System)

interface nsIWindowCreator : nsISupports {

  static const char[] IID_STR = NS_IWINDOWCREATOR_IID_STR;
  static const nsIID IID = NS_IWINDOWCREATOR_IID;

  nsresult CreateChromeWindow(nsIWebBrowserChrome parent, PRUint32 chromeFlags, nsIWebBrowserChrome *_retval);

}