mirror of https://gitlab.com/basile.b/dexed.git
move TPoint operator to common unit
This commit is contained in:
parent
cc7f54e894
commit
b47c43d38a
|
@ -328,6 +328,14 @@ type
|
||||||
// Converts the delta between two calls to GetTickCount64 to a string indicating a duration.
|
// Converts the delta between two calls to GetTickCount64 to a string indicating a duration.
|
||||||
function formatTicksAsDuration(ticks: UInt64): string;
|
function formatTicksAsDuration(ticks: UInt64): string;
|
||||||
|
|
||||||
|
(**
|
||||||
|
* Compares two TPoints.
|
||||||
|
*)
|
||||||
|
operator = (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
operator > (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
operator < (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
operator <= (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
|
||||||
var
|
var
|
||||||
// additional directories to find background tools
|
// additional directories to find background tools
|
||||||
additionalPath: string;
|
additionalPath: string;
|
||||||
|
@ -337,6 +345,26 @@ var
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
operator = (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
begin
|
||||||
|
exit((lhs.y = rhs.y) and (lhs.x = rhs.x));
|
||||||
|
end;
|
||||||
|
|
||||||
|
operator > (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
begin
|
||||||
|
exit((lhs.y > rhs.y) or ((lhs.y = rhs.y) and (lhs.x > rhs.x)));
|
||||||
|
end;
|
||||||
|
|
||||||
|
operator < (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
begin
|
||||||
|
exit(rhs > lhs);
|
||||||
|
end;
|
||||||
|
|
||||||
|
operator <= (lhs: TPoint; rhs: TPoint): boolean;
|
||||||
|
begin
|
||||||
|
exit((lhs = rhs) or (lhs < rhs));
|
||||||
|
end;
|
||||||
|
|
||||||
function GetIconScaledSize: TIconScaledSize;
|
function GetIconScaledSize: TIconScaledSize;
|
||||||
var
|
var
|
||||||
h : integer;
|
h : integer;
|
||||||
|
|
|
@ -5,7 +5,7 @@ unit u_dlang;
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, u_dlangutils, u_dlangmaps;
|
Classes, SysUtils, u_common, u_dlangutils, u_dlangmaps;
|
||||||
|
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -153,37 +153,9 @@ procedure getImports(list: TLexTokenList; imports: TStrings);
|
||||||
*)
|
*)
|
||||||
function getIndexOfTokenLeftTo(tokens: TLexTokenList; caretPos: TPoint): integer;
|
function getIndexOfTokenLeftTo(tokens: TLexTokenList; caretPos: TPoint): integer;
|
||||||
|
|
||||||
(**
|
|
||||||
* Compares two TPoints.
|
|
||||||
*)
|
|
||||||
operator = (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
operator > (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
operator < (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
operator <= (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
{$REGION TReaderHead -----------------------------------------------------------}
|
{$REGION TReaderHead -----------------------------------------------------------}
|
||||||
operator = (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
begin
|
|
||||||
exit((lhs.y = rhs.y) and (lhs.x = rhs.x));
|
|
||||||
end;
|
|
||||||
|
|
||||||
operator > (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
begin
|
|
||||||
exit((lhs.y > rhs.y) or ((lhs.y = rhs.y) and (lhs.x > rhs.x)));
|
|
||||||
end;
|
|
||||||
|
|
||||||
operator < (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
begin
|
|
||||||
exit(rhs > lhs);
|
|
||||||
end;
|
|
||||||
|
|
||||||
operator <= (lhs: TPoint; rhs: TPoint): boolean;
|
|
||||||
begin
|
|
||||||
exit((lhs = rhs) or (lhs < rhs));
|
|
||||||
end;
|
|
||||||
|
|
||||||
constructor TReaderHead.Create(const text: PChar; const colAndLine: TPoint);
|
constructor TReaderHead.Create(const text: PChar; const colAndLine: TPoint);
|
||||||
begin
|
begin
|
||||||
setReader(text, colAndLine);
|
setReader(text, colAndLine);
|
||||||
|
|
Loading…
Reference in New Issue