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
28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
type
|
|
|
|
nsIDOMScreen = interface(nsISupports)
|
|
['{77947960-b4af-11d2-bd93-00805f8ae3f4}']
|
|
function Gettop(): idllong; safecall;
|
|
property top : idllong read Gettop;
|
|
function Getleft(): idllong; safecall;
|
|
property left : idllong read Getleft;
|
|
function Getwidth(): idllong; safecall;
|
|
property width : idllong read Getwidth;
|
|
function Getheight(): idllong; safecall;
|
|
property height : idllong read Getheight;
|
|
function GetpixelDepth(): idllong; safecall;
|
|
property pixelDepth : idllong read GetpixelDepth;
|
|
function GetcolorDepth(): idllong; safecall;
|
|
property colorDepth : idllong read GetcolorDepth;
|
|
function GetavailWidth(): idllong; safecall;
|
|
property availWidth : idllong read GetavailWidth;
|
|
function GetavailHeight(): idllong; safecall;
|
|
property availHeight : idllong read GetavailHeight;
|
|
function GetavailLeft(): idllong; safecall;
|
|
property availLeft : idllong read GetavailLeft;
|
|
function GetavailTop(): idllong; safecall;
|
|
property availTop : idllong read GetavailTop;
|
|
|
|
end;
|
|
|