2012-03-17 10:50:10 +00:00
|
|
|
type
|
|
|
|
|
|
|
|
nsIWebBrowser = interface(nsISupports)
|
|
|
|
['{33e9d001-caab-4ba9-8961-54902f197202}']
|
|
|
|
procedure addWebBrowserListener(aListener: nsIWeakReference; constref aIID: TGuid); safecall;
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure removeWebBrowserListener(aListener: nsIWeakReference; constref aIID: TGuid); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
function GetcontainerWindow(): nsIWebBrowserChrome; safecall;
|
|
|
|
procedure SetcontainerWindow(acontainerWindow: nsIWebBrowserChrome); safecall;
|
|
|
|
property containerWindow : nsIWebBrowserChrome read GetcontainerWindow write SetcontainerWindow;
|
|
|
|
function GetparentURIContentListener(): nsIURIContentListener; safecall;
|
|
|
|
procedure SetparentURIContentListener(aparentURIContentListener: nsIURIContentListener); safecall;
|
|
|
|
property parentURIContentListener : nsIURIContentListener read GetparentURIContentListener write SetparentURIContentListener;
|
|
|
|
function GetcontentDOMWindow(): nsIDOMWindow; safecall;
|
|
|
|
property contentDOMWindow : nsIDOMWindow read GetcontentDOMWindow;
|
|
|
|
function GetisActive(): longbool; safecall;
|
|
|
|
procedure SetisActive(aisActive: longbool); safecall;
|
|
|
|
property isActive : longbool read GetisActive write SetisActive;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|