Ignore:
Timestamp:
Dec 17, 2024, 11:10:31 PM (4 days ago)
Author:
chronos
Message:
  • Added: Mouse API support.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Independent/SystemApi.pas

    r67 r68  
    2525    procedure SetWindowRect(Handle: THandle; Rect: TRect); override;
    2626    procedure SetWindowVisible(Handle: THandle; Visible: Boolean); override;
     27    function GetMousePosition: TPoint; override;
    2728  end;
    2829
     
    101102end;
    102103
     104function TSystemApi.GetMousePosition: TPoint;
     105begin
     106  Result := System.Mouse.GetPosition;
     107end;
     108
    103109end.
    104110
Note: See TracChangeset for help on using the changeset viewer.