You've already forked lazarus-ccr
Fixed drawing problem when using scrollbars or mouse wheel
Implemented checkbuttons git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@57 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@@ -36,6 +36,7 @@ end;
|
||||
// TBaseVirtualTree.CollectSelectedNodesRTL, TBaseVirtualTree.DetermineHitPositionRTL
|
||||
// TBaseVirtualTree.UpdateEditBounds, TBaseVirtualTree.GetDisplayRect, PaintTree,
|
||||
// TStringEditLink.PrepareEdit, TCustomVirtualStringTree.ComputeNodeHeight etc
|
||||
|
||||
procedure ChangeBiDiModeAlignment(var Alignment: TAlignment);
|
||||
begin
|
||||
case Alignment of
|
||||
@@ -77,6 +78,16 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
function InvalidateRect(aHandle : HWND; ARect : pRect; bErase : Boolean) : Boolean;
|
||||
begin
|
||||
Logger.EnterMethod(lcPaint,'InvalidateRect');
|
||||
Logger.Send(lcPaint,'Rect',ARect^);
|
||||
Logger.SendCallStack(lcPaint,'CallStack');
|
||||
Result:=Windows.InvalidateRect(aHandle,ARect,bErase);
|
||||
Logger.ExitMethod(lcPaint,'InvalidateRect');
|
||||
end;
|
||||
|
||||
{$ifndef NeedWindows}
|
||||
|
||||
//Dummy function. Used in many places
|
||||
|
||||
Reference in New Issue
Block a user