mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-18 11:59:20 +02:00
Qt: implemented SWP_SHOWWINDOW and SWP_HIDEWINDOW in TQtWidgetSet.SetWindowPos.
git-svn-id: trunk@43333 -
This commit is contained in:
parent
6b7452699a
commit
daca74abed
@ -5999,6 +5999,12 @@ begin
|
||||
if (SWP_NOSIZE and uFlags) = 0 then
|
||||
TQtWidget(Hwnd).resize(CX, CY);
|
||||
|
||||
if (SWP_SHOWWINDOW and uFlags) <> 0 then
|
||||
TQtWidget(Hwnd).Show;
|
||||
|
||||
if (SWP_HIDEWINDOW and uFlags) <> 0 then
|
||||
TQtWidget(Hwnd).Hide;
|
||||
|
||||
if (SWP_NOZORDER and uFlags) = 0 then
|
||||
begin
|
||||
case hWndInsertAfter of
|
||||
|
Loading…
Reference in New Issue
Block a user