mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 04:39:36 +02:00
LCL: made DoOnShowHint virtual
git-svn-id: trunk@25968 -
This commit is contained in:
parent
67e574cfdb
commit
bdb7a1945e
@ -1036,7 +1036,7 @@ type
|
||||
procedure CalculatePreferredSize(
|
||||
var PreferredWidth, PreferredHeight: integer;
|
||||
WithThemeSpace: Boolean); virtual;
|
||||
procedure DoOnResize; virtual;// call OnReresize
|
||||
procedure DoOnResize; virtual;// call OnResize
|
||||
procedure DoOnChangeBounds; virtual;// call OnChangeBounds
|
||||
procedure CheckOnChangeBounds;// checks for changes and calls DoOnChangeBounds
|
||||
procedure Resize; virtual;// checks for changes and calls DoOnResize
|
||||
@ -1179,7 +1179,7 @@ type
|
||||
function GetDeviceContext(var WindowHandle: HWND): HDC; virtual;
|
||||
function GetEnabled: Boolean; virtual;
|
||||
function GetPopupMenu: TPopupMenu; virtual;
|
||||
procedure DoOnShowHint(HintInfo: Pointer);
|
||||
procedure DoOnShowHint(HintInfo: PHintInfo); virtual;
|
||||
function DoMouseWheel(Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint): Boolean; virtual;
|
||||
function DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint): Boolean; virtual;
|
||||
function DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint): Boolean; virtual;
|
||||
|
@ -1294,7 +1294,7 @@ end;
|
||||
{------------------------------------------------------------------------------
|
||||
procedure TControl.DoOnShowHint(HintInfo: Pointer);
|
||||
------------------------------------------------------------------------------}
|
||||
procedure TControl.DoOnShowHint(HintInfo: Pointer);
|
||||
procedure TControl.DoOnShowHint(HintInfo: PHintInfo);
|
||||
begin
|
||||
if Assigned(OnShowHint) then
|
||||
OnShowHint(Self,HintInfo);
|
||||
|
Loading…
Reference in New Issue
Block a user