nsIWindowCreator.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * DO NOT EDIT. THIS FILE IS GENERATED FROM c:/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__ */