/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIBrowserInstance.idl */ #ifndef __gen_nsIBrowserInstance_h__ #define __gen_nsIBrowserInstance_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsIDOMWindowInternal; /* forward declaration */ /* starting interface: nsIBrowserInstance */ #define NS_IBROWSERINSTANCE_IID_STR "8af0fa40-598d-11d3-806a-00600811a9c3" #define NS_IBROWSERINSTANCE_IID \ {0x8af0fa40, 0x598d, 0x11d3, \ { 0x80, 0x6a, 0x00, 0x60, 0x08, 0x11, 0xa9, 0xc3 }} class NS_NO_VTABLE nsIBrowserInstance : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IBROWSERINSTANCE_IID) /* boolean startPageCycler (); */ NS_IMETHOD StartPageCycler(PRBool *_retval) = 0; /* attribute boolean cmdLineURLUsed; */ NS_IMETHOD GetCmdLineURLUsed(PRBool *aCmdLineURLUsed) = 0; NS_IMETHOD SetCmdLineURLUsed(PRBool aCmdLineURLUsed) = 0; /* void init (); */ NS_IMETHOD Init(void) = 0; /* void setWebShellWindow (in nsIDOMWindowInternal aWindow); */ NS_IMETHOD SetWebShellWindow(nsIDOMWindowInternal *aWindow) = 0; /* void close (); */ NS_IMETHOD Close(void) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIBROWSERINSTANCE \ NS_IMETHOD StartPageCycler(PRBool *_retval); \ NS_IMETHOD GetCmdLineURLUsed(PRBool *aCmdLineURLUsed); \ NS_IMETHOD SetCmdLineURLUsed(PRBool aCmdLineURLUsed); \ NS_IMETHOD Init(void); \ NS_IMETHOD SetWebShellWindow(nsIDOMWindowInternal *aWindow); \ NS_IMETHOD Close(void); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIBROWSERINSTANCE(_to) \ NS_IMETHOD StartPageCycler(PRBool *_retval) { return _to StartPageCycler(_retval); } \ NS_IMETHOD GetCmdLineURLUsed(PRBool *aCmdLineURLUsed) { return _to GetCmdLineURLUsed(aCmdLineURLUsed); } \ NS_IMETHOD SetCmdLineURLUsed(PRBool aCmdLineURLUsed) { return _to SetCmdLineURLUsed(aCmdLineURLUsed); } \ NS_IMETHOD Init(void) { return _to Init(); } \ NS_IMETHOD SetWebShellWindow(nsIDOMWindowInternal *aWindow) { return _to SetWebShellWindow(aWindow); } \ NS_IMETHOD Close(void) { return _to Close(); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIBROWSERINSTANCE(_to) \ NS_IMETHOD StartPageCycler(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->StartPageCycler(_retval); } \ NS_IMETHOD GetCmdLineURLUsed(PRBool *aCmdLineURLUsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCmdLineURLUsed(aCmdLineURLUsed); } \ NS_IMETHOD SetCmdLineURLUsed(PRBool aCmdLineURLUsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCmdLineURLUsed(aCmdLineURLUsed); } \ NS_IMETHOD Init(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(); } \ NS_IMETHOD SetWebShellWindow(nsIDOMWindowInternal *aWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWebShellWindow(aWindow); } \ NS_IMETHOD Close(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Close(); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsBrowserInstance : public nsIBrowserInstance { public: NS_DECL_ISUPPORTS NS_DECL_NSIBROWSERINSTANCE nsBrowserInstance(); virtual ~nsBrowserInstance(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsBrowserInstance, nsIBrowserInstance) nsBrowserInstance::nsBrowserInstance() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsBrowserInstance::~nsBrowserInstance() { /* destructor code */ } /* boolean startPageCycler (); */ NS_IMETHODIMP nsBrowserInstance::StartPageCycler(PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean cmdLineURLUsed; */ NS_IMETHODIMP nsBrowserInstance::GetCmdLineURLUsed(PRBool *aCmdLineURLUsed) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsBrowserInstance::SetCmdLineURLUsed(PRBool aCmdLineURLUsed) { return NS_ERROR_NOT_IMPLEMENTED; } /* void init (); */ NS_IMETHODIMP nsBrowserInstance::Init() { return NS_ERROR_NOT_IMPLEMENTED; } /* void setWebShellWindow (in nsIDOMWindowInternal aWindow); */ NS_IMETHODIMP nsBrowserInstance::SetWebShellWindow(nsIDOMWindowInternal *aWindow) { return NS_ERROR_NOT_IMPLEMENTED; } /* void close (); */ NS_IMETHODIMP nsBrowserInstance::Close() { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #define NS_BROWSERINSTANCE_CONTRACTID "@mozilla.org/appshell/component/browser/instance;1" #define NS_BROWSERSTARTUPHANDLER_CONTRACTID "@mozilla.org/commandlinehandler/general-startup;1?type=browser" // {c7bee75a-1dd1-11b2-9333-a38e085287cf} #define NS_BROWSERCONTROLLER_CID { 0xc7bee75a, 0x1dd1, 0x11b2, { 0x93, 0x33, 0xa3, 0x8e, 0x08, 0x52, 0x87, 0xcf } } // {5551A1E0-5A66-11d3-806A-00600811A9C3} #define NS_BROWSERINSTANCE_CID { 0x5551a1e0, 0x5a66, 0x11d3, { 0x80, 0x6a, 0x0, 0x60, 0x08, 0x11, 0xa9, 0xc3 } } // {C2343730-DC2C-11d3-98B3-001083010E9B} #define NS_BROWSERCONTENTHANDLER_CID { 0xc2343730, 0xdc2c, 0x11d3, { 0x98, 0xb3, 0x0, 0x10, 0x83, 0x1, 0xe, 0x9b } } #endif /* __gen_nsIBrowserInstance_h__ */ .