
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6103 8e941d3f-bd1b-0410-a28a-d453659cc2b4
15 lines
278 B
PHP
15 lines
278 B
PHP
{%MainUnit lclvlc.pp}
|
|
|
|
uses qt45;
|
|
|
|
Function GetXHandle(AWinControl : TWinControl) : culong;
|
|
|
|
var
|
|
Widget: PGtkWidget;
|
|
begin
|
|
Result:=0;
|
|
if (AWinControl=nil) or (not AWinControl.HandleAllocated) then exit;
|
|
Result:=QWidget_winID(TQtWidget(AWinControl.Handle).Widget);
|
|
end;
|
|
|