nsIWindowCreator.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:4k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0-Release/WINNT_5.2_Depend/mozilla/embedding/base/nsIWindowCreator.idl
  3.  */
  4. #ifndef __gen_nsIWindowCreator_h__
  5. #define __gen_nsIWindowCreator_h__
  6. #ifndef __gen_nsISupports_h__
  7. #include "nsISupports.h"
  8. #endif
  9. /* For IDL files that don't want to include root IDL files. */
  10. #ifndef NS_NO_VTABLE
  11. #define NS_NO_VTABLE
  12. #endif
  13. class nsIWebBrowserChrome; /* forward declaration */
  14. /* starting interface:    nsIWindowCreator */
  15. #define NS_IWINDOWCREATOR_IID_STR "30465632-a777-44cc-90f9-8145475ef999"
  16. #define NS_IWINDOWCREATOR_IID 
  17.   {0x30465632, 0xa777, 0x44cc, 
  18.     { 0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99 }}
  19. class NS_NO_VTABLE nsIWindowCreator : public nsISupports {
  20.  public: 
  21.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IWINDOWCREATOR_IID)
  22.   /** Create a new window. Gecko will/may call this method, if made
  23.       available to it, to create new windows.
  24.       @param parent parent window, if any. null if not. the newly created
  25.                     window should be made a child/dependent window of
  26.                     the parent, if any (and if the concept applies
  27.                     to the underlying OS).
  28.       @param chromeFlags chrome features from nsIWebBrowserChrome
  29.       @return the new window
  30.   */
  31.   /* nsIWebBrowserChrome createChromeWindow (in nsIWebBrowserChrome parent, in PRUint32 chromeFlags); */
  32.   NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval) = 0;
  33. };
  34. /* Use this macro when declaring classes that implement this interface. */
  35. #define NS_DECL_NSIWINDOWCREATOR 
  36.   NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval); 
  37. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  38. #define NS_FORWARD_NSIWINDOWCREATOR(_to) 
  39.   NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval) { return _to CreateChromeWindow(parent, chromeFlags, _retval); } 
  40. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  41. #define NS_FORWARD_SAFE_NSIWINDOWCREATOR(_to) 
  42.   NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateChromeWindow(parent, chromeFlags, _retval); } 
  43. #if 0
  44. /* Use the code below as a template for the implementation class for this interface. */
  45. /* Header file */
  46. class nsWindowCreator : public nsIWindowCreator
  47. {
  48. public:
  49.   NS_DECL_ISUPPORTS
  50.   NS_DECL_NSIWINDOWCREATOR
  51.   nsWindowCreator();
  52. private:
  53.   ~nsWindowCreator();
  54. protected:
  55.   /* additional members */
  56. };
  57. /* Implementation file */
  58. NS_IMPL_ISUPPORTS1(nsWindowCreator, nsIWindowCreator)
  59. nsWindowCreator::nsWindowCreator()
  60. {
  61.   /* member initializers and constructor code */
  62. }
  63. nsWindowCreator::~nsWindowCreator()
  64. {
  65.   /* destructor code */
  66. }
  67. /* nsIWebBrowserChrome createChromeWindow (in nsIWebBrowserChrome parent, in PRUint32 chromeFlags); */
  68. NS_IMETHODIMP nsWindowCreator::CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval)
  69. {
  70.     return NS_ERROR_NOT_IMPLEMENTED;
  71. }
  72. /* End of implementation class template. */
  73. #endif
  74. // {30465632-A777-44cc-90F9-8145475EF999}
  75. #define NS_WINDOWCREATOR_IID 
  76.  {0x30465632, 0xa777, 0x44cc, {0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99}}
  77. #endif /* __gen_nsIWindowCreator_h__ */