You've already forked lazarus-ccr
In this new version the gecko-interfaces are generated directly from the idl-files of the gecko-sdk using the idlparser utility. The generated include files are kept as closely to the original as possible. For now by defaule Gecko 9 is used, as Gecko 10 has a bug which makes it impossible to embed it on Linux systems. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2349 8e941d3f-bd1b-0410-a28a-d453659cc2b4
54 lines
2.7 KiB
PHP
54 lines
2.7 KiB
PHP
type
|
|
nsIntRect = record
|
|
end;
|
|
|
|
type
|
|
|
|
nsIContentViewer = interface(nsISupports)
|
|
['{26b2380b-4a1a-46cd-b7d8-7600e41c1688}']
|
|
{ procedure init(aParentWidget: nsIWidgetPtr; aBounds: nsIntRectRef); safecall;
|
|
function Getcontainer(): nsISupports; safecall;
|
|
procedure Setcontainer(acontainer: nsISupports); safecall;
|
|
property container : nsISupports read Getcontainer write Setcontainer;
|
|
procedure loadStart(aDoc: nsISupports); safecall;
|
|
procedure loadComplete(aStatus: idlulong); safecall;
|
|
function permitUnload(aCallerClosesWindow: longbool) : longbool; safecall;
|
|
procedure resetCloseWindow(); safecall;
|
|
procedure pageHide(isUnload: longbool); safecall;
|
|
procedure close(ahistoryEntry: nsISHEntry); safecall;
|
|
procedure destroy(); safecall;
|
|
procedure stop(); safecall;
|
|
function GetDOMDocument(): nsIDOMDocument; safecall;
|
|
procedure SetDOMDocument(aDOMDocument: nsIDOMDocument); safecall;
|
|
property DOMDocument : nsIDOMDocument read GetDOMDocument write SetDOMDocument;
|
|
function getDocument() : nsIDocumentPtr; safecall;
|
|
procedure getBounds(aBounds: nsIntRectRef); safecall;
|
|
procedure setBounds(aBounds: nsIntRectRef); safecall;
|
|
function GetpreviousViewer(): nsIContentViewer; safecall;
|
|
procedure SetpreviousViewer(apreviousViewer: nsIContentViewer); safecall;
|
|
property previousViewer : nsIContentViewer read GetpreviousViewer write SetpreviousViewer;
|
|
procedure move(aX: idllong; aY: idllong); safecall;
|
|
procedure show(); safecall;
|
|
procedure hide(); safecall;
|
|
function Getsticky(): longbool; safecall;
|
|
procedure Setsticky(asticky: longbool); safecall;
|
|
property sticky : longbool read Getsticky write Setsticky;
|
|
function requestWindowClose() : longbool; safecall;
|
|
procedure open(aState: nsISupports; aSHEntry: nsISHEntry); safecall;
|
|
procedure clearHistoryEntry(); safecall;
|
|
procedure setPageMode(aPageMode: longbool; aPrintSettings: nsIPrintSettings); safecall;
|
|
function GethistoryEntry(): nsISHEntry; safecall;
|
|
property historyEntry : nsISHEntry read GethistoryEntry;
|
|
function GetisTabModalPromptAllowed(): longbool; safecall;
|
|
property isTabModalPromptAllowed : longbool read GetisTabModalPromptAllowed;
|
|
function GetpresShell(): nsIPresShellPtr; safecall;
|
|
property presShell : nsIPresShellPtr read GetpresShell;
|
|
function GetpresContext(): nsPresContextPtr; safecall;
|
|
property presContext : nsPresContextPtr read GetpresContext;
|
|
procedure setDocumentInternal(aDocument: nsIDocumentPtr; aForceReuseInnerWindow: longbool); safecall;
|
|
function findContainerView() : nsIViewPtr; safecall;
|
|
procedure setNavigationTiming(aTiming: nsDOMNavigationTimingPtr); safecall;
|
|
}
|
|
end;
|
|
|