mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-15 02:19:50 +02:00
added ShowWindow
git-svn-id: trunk@2129 -
This commit is contained in:
parent
acbb613ac5
commit
2a146b5934
@ -7047,7 +7047,8 @@ end;
|
|||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------}
|
------------------------------------------------------------------------------}
|
||||||
function TgtkObject.ShowScrollBar(Handle: HWND; wBar: Integer; bShow: Boolean): Boolean;
|
function TgtkObject.ShowScrollBar(Handle: HWND; wBar: Integer;
|
||||||
|
bShow: Boolean): Boolean;
|
||||||
{const
|
{const
|
||||||
POLICY: array[BOOLEAN] of TGTKPolicyType = (GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);}
|
POLICY: array[BOOLEAN] of TGTKPolicyType = (GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);}
|
||||||
begin
|
begin
|
||||||
@ -7075,6 +7076,17 @@ begin
|
|||||||
}
|
}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{------------------------------------------------------------------------------
|
||||||
|
function ShowWindow(hWnd: HWND; nCmdShow: Integer): Boolean;
|
||||||
|
|
||||||
|
nCmdShow:
|
||||||
|
SW_SHOWNORMAL, SW_MINIMIZE, SW_SHOWMAXIMIZED
|
||||||
|
------------------------------------------------------------------------------}
|
||||||
|
function TgtkObject.ShowWindow(hWnd: HWND; nCmdShow: Integer): Boolean;
|
||||||
|
begin
|
||||||
|
Result:=false;
|
||||||
|
end;
|
||||||
|
|
||||||
{------------------------------------------------------------------------------
|
{------------------------------------------------------------------------------
|
||||||
Function: StretchBlt
|
Function: StretchBlt
|
||||||
Params: DestDC: The destination devicecontext
|
Params: DestDC: The destination devicecontext
|
||||||
@ -7830,6 +7842,9 @@ end;
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.212 2003/02/28 19:54:05 mattias
|
||||||
|
added ShowWindow
|
||||||
|
|
||||||
Revision 1.211 2003/02/23 10:42:06 mattias
|
Revision 1.211 2003/02/23 10:42:06 mattias
|
||||||
implemented changing TMenuItem.GroupIndex at runtime
|
implemented changing TMenuItem.GroupIndex at runtime
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user