Qt: implemented SWP_SHOWWINDOW and SWP_HIDEWINDOW in TQtWidgetSet.SetWindowPos.

git-svn-id: trunk@43333 -
This commit is contained in:
zeljko 2013-10-28 08:32:52 +00:00
parent 6b7452699a
commit daca74abed

View File

@ -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