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
45 lines
2.3 KiB
PHP
45 lines
2.3 KiB
PHP
type
|
|
|
|
nsIWebBrowserFind = interface(nsISupports)
|
|
['{2f977d44-5485-11d4-87e2-0010a4e75ef2}']
|
|
function findNext() : longbool; safecall;
|
|
function GetsearchString(): PWideChar; safecall;
|
|
procedure SetsearchString(asearchString: PWideChar); safecall;
|
|
property searchString : PWideChar read GetsearchString write SetsearchString;
|
|
function GetfindBackwards(): longbool; safecall;
|
|
procedure SetfindBackwards(afindBackwards: longbool); safecall;
|
|
property findBackwards : longbool read GetfindBackwards write SetfindBackwards;
|
|
function GetwrapFind(): longbool; safecall;
|
|
procedure SetwrapFind(awrapFind: longbool); safecall;
|
|
property wrapFind : longbool read GetwrapFind write SetwrapFind;
|
|
function GetentireWord(): longbool; safecall;
|
|
procedure SetentireWord(aentireWord: longbool); safecall;
|
|
property entireWord : longbool read GetentireWord write SetentireWord;
|
|
function GetmatchCase(): longbool; safecall;
|
|
procedure SetmatchCase(amatchCase: longbool); safecall;
|
|
property matchCase : longbool read GetmatchCase write SetmatchCase;
|
|
function GetsearchFrames(): longbool; safecall;
|
|
procedure SetsearchFrames(asearchFrames: longbool); safecall;
|
|
property searchFrames : longbool read GetsearchFrames write SetsearchFrames;
|
|
|
|
end;
|
|
|
|
|
|
nsIWebBrowserFindInFrames = interface(nsISupports)
|
|
['{e0f5d182-34bc-11d5-be5b-b760676c6ebc}']
|
|
function GetcurrentSearchFrame(): nsIDOMWindow; safecall;
|
|
procedure SetcurrentSearchFrame(acurrentSearchFrame: nsIDOMWindow); safecall;
|
|
property currentSearchFrame : nsIDOMWindow read GetcurrentSearchFrame write SetcurrentSearchFrame;
|
|
function GetrootSearchFrame(): nsIDOMWindow; safecall;
|
|
procedure SetrootSearchFrame(arootSearchFrame: nsIDOMWindow); safecall;
|
|
property rootSearchFrame : nsIDOMWindow read GetrootSearchFrame write SetrootSearchFrame;
|
|
function GetsearchSubframes(): longbool; safecall;
|
|
procedure SetsearchSubframes(asearchSubframes: longbool); safecall;
|
|
property searchSubframes : longbool read GetsearchSubframes write SetsearchSubframes;
|
|
function GetsearchParentFrames(): longbool; safecall;
|
|
procedure SetsearchParentFrames(asearchParentFrames: longbool); safecall;
|
|
property searchParentFrames : longbool read GetsearchParentFrames write SetsearchParentFrames;
|
|
|
|
end;
|
|
|