mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 21:40:25 +02:00
LCL, win, implemented GetRgnBox
git-svn-id: trunk@11924 -
This commit is contained in:
parent
ed062327ae
commit
02f5d81c2d
@ -1964,6 +1964,11 @@ begin
|
|||||||
Result := Windows.GetROP2(DC);
|
Result := Windows.GetROP2(DC);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TWin32WidgetSet.GetRGNBox(Rgn: HRGN; lpRect: PRect): Longint;
|
||||||
|
begin
|
||||||
|
Result:= Windows.GetRgnBox(Rgn, Windows.LPRECT(lpRect));
|
||||||
|
end;
|
||||||
|
|
||||||
{------------------------------------------------------------------------------
|
{------------------------------------------------------------------------------
|
||||||
Method: GetScrollInfo
|
Method: GetScrollInfo
|
||||||
Params: Handle - handle of window with scroll bar
|
Params: Handle - handle of window with scroll bar
|
||||||
|
@ -110,6 +110,7 @@ function GetObject(GDIObj: HGDIOBJ; BufSize: Integer; Buf: Pointer): Integer; Ov
|
|||||||
function GetParent(Handle: HWND): HWND; Override;
|
function GetParent(Handle: HWND): HWND; Override;
|
||||||
function GetProp(Handle: HWND; Str: PChar): Pointer; Override;
|
function GetProp(Handle: HWND; Str: PChar): Pointer; Override;
|
||||||
function GetROP2(DC: HDC): Integer; override;
|
function GetROP2(DC: HDC): Integer; override;
|
||||||
|
function GetRGNBox(Rgn: HRGN; lpRect : PRect) : Longint; override;
|
||||||
function GetScrollInfo(Handle: HWND; BarFlag: Integer; Var ScrollInfo: TScrollInfo): Boolean; Override;
|
function GetScrollInfo(Handle: HWND; BarFlag: Integer; Var ScrollInfo: TScrollInfo): Boolean; Override;
|
||||||
function GetStockObject(Value: Integer): THandle; Override;
|
function GetStockObject(Value: Integer): THandle; Override;
|
||||||
function GetSysColor(NIndex: Integer): DWORD; Override;
|
function GetSysColor(NIndex: Integer): DWORD; Override;
|
||||||
|
Loading…
Reference in New Issue
Block a user