PageRenderTime 142ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/gecko_api/include/nsIWindowCreator.h

http://firefox-mac-pdf.googlecode.com/
C Header | 105 lines | 51 code | 27 blank | 27 comment | 0 complexity | e8ff45bf7979c11ea96e641bedc29dae MD5 | raw file
  1. /*
  2. * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/tinderbox/XR-Trunk/Darwin_8.8.4_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 NS_SCRIPTABLE nsIWindowCreator : public nsISupports {
  20. public:
  21. NS_DECLARE_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_SCRIPTABLE NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval) = 0;
  33. };
  34. NS_DEFINE_STATIC_IID_ACCESSOR(nsIWindowCreator, NS_IWINDOWCREATOR_IID)
  35. /* Use this macro when declaring classes that implement this interface. */
  36. #define NS_DECL_NSIWINDOWCREATOR \
  37. NS_SCRIPTABLE NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval);
  38. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  39. #define NS_FORWARD_NSIWINDOWCREATOR(_to) \
  40. NS_SCRIPTABLE NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval) { return _to CreateChromeWindow(parent, chromeFlags, _retval); }
  41. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  42. #define NS_FORWARD_SAFE_NSIWINDOWCREATOR(_to) \
  43. NS_SCRIPTABLE NS_IMETHOD CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateChromeWindow(parent, chromeFlags, _retval); }
  44. #if 0
  45. /* Use the code below as a template for the implementation class for this interface. */
  46. /* Header file */
  47. class nsWindowCreator : public nsIWindowCreator
  48. {
  49. public:
  50. NS_DECL_ISUPPORTS
  51. NS_DECL_NSIWINDOWCREATOR
  52. nsWindowCreator();
  53. private:
  54. ~nsWindowCreator();
  55. protected:
  56. /* additional members */
  57. };
  58. /* Implementation file */
  59. NS_IMPL_ISUPPORTS1(nsWindowCreator, nsIWindowCreator)
  60. nsWindowCreator::nsWindowCreator()
  61. {
  62. /* member initializers and constructor code */
  63. }
  64. nsWindowCreator::~nsWindowCreator()
  65. {
  66. /* destructor code */
  67. }
  68. /* nsIWebBrowserChrome createChromeWindow (in nsIWebBrowserChrome parent, in PRUint32 chromeFlags); */
  69. NS_IMETHODIMP nsWindowCreator::CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags, nsIWebBrowserChrome **_retval)
  70. {
  71. return NS_ERROR_NOT_IMPLEMENTED;
  72. }
  73. /* End of implementation class template. */
  74. #endif
  75. // {30465632-A777-44cc-90F9-8145475EF999}
  76. #define NS_WINDOWCREATOR_IID \
  77. {0x30465632, 0xa777, 0x44cc, {0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99}}
  78. #endif /* __gen_nsIWindowCreator_h__ */