Files
lazarus-ccr/components/geckoport/version2/gecko10/nsiwebbrowser.inc
loesje_ 9c2b80b5c4 * Re-generated .inc files with new version from the idlparser.
* Some string-types are now not returned as function result but as parameter. Solves several string issues.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2357 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-03-19 14:43:54 +00:00

21 lines
1.1 KiB
PHP

type
nsIWebBrowser = interface(nsISupports)
['{33e9d001-caab-4ba9-8961-54902f197202}']
procedure addWebBrowserListener(aListener: nsIWeakReference; constref aIID: TGuid); safecall;
procedure removeWebBrowserListener(aListener: nsIWeakReference; constref aIID: TGuid); safecall;
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;