mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 19:19:19 +02:00
lcl: declare THelpInfo structure
git-svn-id: trunk@20825 -
This commit is contained in:
parent
21337fbfae
commit
9afd4bf495
@ -564,7 +564,7 @@ end;
|
|||||||
------------------------------------------------------------------------------}
|
------------------------------------------------------------------------------}
|
||||||
function TApplication.ValidateHelpSystem: Boolean;
|
function TApplication.ValidateHelpSystem: Boolean;
|
||||||
begin
|
begin
|
||||||
Result:=HelpManager<>nil;
|
Result := HelpManager <> nil;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{------------------------------------------------------------------------------
|
{------------------------------------------------------------------------------
|
||||||
|
@ -1154,6 +1154,17 @@ type
|
|||||||
TDIBSection = tagDIBSECTION;
|
TDIBSection = tagDIBSECTION;
|
||||||
DIBSECTION = tagDIBSECTION;
|
DIBSECTION = tagDIBSECTION;
|
||||||
|
|
||||||
|
tagHELPINFO = record
|
||||||
|
cbSize: DWORD;
|
||||||
|
iContextType: Integer;
|
||||||
|
iCtrlId: Integer;
|
||||||
|
hItemHandle: THandle;
|
||||||
|
dwContextId: DWORD;
|
||||||
|
MousePos: TPOINT;
|
||||||
|
end;
|
||||||
|
THelpInfo = tagHelpInfo;
|
||||||
|
PHelpInfo = ^THelpInfo;
|
||||||
|
|
||||||
const
|
const
|
||||||
RASTER_FONTTYPE = 1;
|
RASTER_FONTTYPE = 1;
|
||||||
DEVICE_FONTTYPE = 2;
|
DEVICE_FONTTYPE = 2;
|
||||||
@ -1161,6 +1172,9 @@ const
|
|||||||
|
|
||||||
GCP_DBCS = 1;
|
GCP_DBCS = 1;
|
||||||
|
|
||||||
|
// context type
|
||||||
|
HELPINFO_WINDOW = $0001;
|
||||||
|
HELPINFO_MENUITEM = $0002;
|
||||||
|
|
||||||
//==============================================
|
//==============================================
|
||||||
// Background Modes
|
// Background Modes
|
||||||
|
Loading…
Reference in New Issue
Block a user