mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:48:12 +02:00
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;
|
|
|