{------------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is: SynEditMiscProcs.pas, released 2000-04-07. The Original Code is based on the mwSupportProcs.pas file from the mwEdit component suite by Martin Waldenburg and other developers, the Initial Author of this file is Michael Hieke. All Rights Reserved. Contributors to the SynEdit and mwEdit projects are listed in the Contributors.txt file. Alternatively, the contents of this file may be used under the terms of the GNU General Public License Version 2 or later (the "GPL"), in which case the provisions of the GPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the GPL and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the GPL. $Id$ You may retrieve the latest version of this file at the SynEdit home page, located at http://SynEdit.SourceForge.net Known Issues: -------------------------------------------------------------------------------} unit SynEditMiscProcs; {$I synedit.inc} interface uses {$IFDEF SYN_LAZARUS} LCLIntf, LCLType, {$ELSE} Windows, {$ENDIF} Classes, SynEditTypes, Graphics; type PIntArray = ^TIntArray; TIntArray = array[0..MaxListSize - 1] of integer; {$IFDEF FPC} function MulDiv(Factor1,Factor2,Divisor:integer):integer;{$IFDEF HasInline}inline;{$ENDIF} {$ENDIF} function Max(x, y: integer): integer;{$IFDEF HasInline}inline;{$ENDIF} function Min(x, y: integer): integer;{$IFDEF HasInline}inline;{$ENDIF} function MinMax(x, mi, ma: integer): integer;{$IFDEF HasInline}inline;{$ENDIF} procedure SwapInt(var l, r: integer);{$IFDEF HasInline}inline;{$ENDIF} function maxPoint(P1, P2: TPoint): TPoint; function minPoint(P1, P2: TPoint): TPoint; {$IFDEF SYN_LAZARUS} function eqPoint(P1, P2: TPoint): Boolean; procedure SwapPoint(var P1, P2: TPoint); {$ENDIF} function GetIntArray(Count: Cardinal; InitialValue: integer): PIntArray; procedure InternalFillRect(dc: HDC; const rcPaint: TRect); // search for the first char of set AChars in Line, starting at index Start function StrScanForCharInSet(const Line: string; Start: integer; AChars: TSynIdentChars): integer; function GetEOL(Line: PChar): PChar; {begin} //gp 2000-06-24 // Remove all '/' characters from string by changing them into '\.'. // Change all '\' characters into '\\' to allow for unique decoding. function EncodeString(s: string): string; {$IFDEF SYN_LAZARUS} function EncodeStringLength(s: string): integer; function CompareCarets(const FirstCaret, SecondCaret: TPoint): integer; {$ENDIF} // Decodes string, encoded with EncodeString. function DecodeString(s: string): string; {end} //gp 2000-06-24 function fsNot (s : TFontStyles) : TFontStyles; inline; function fsXor (s1,s2 : TFontStyles) : TFontStyles; inline; function CreateTabsAndSpaces(StartPos, SpaceLen, TabWidth: integer; UseTabs: boolean): string; implementation uses SysUtils; {* fontstyle utilities *} function fsNot (s : TFontStyles) : TFontStyles; inline; begin Result := [low(TFontStyle)..High(TFontStyle)] - s; end; function fsXor (s1,s2 : TFontStyles) : TFontStyles; inline; begin Result := s1 + s2 - (s1*s2); end; {***} {$IFDEF FPC} function MulDiv(Factor1,Factor2,Divisor:integer):integer; begin Result:=(int64(Factor1)*int64(Factor2)) div Divisor; end; {$ENDIF} function Max(x, y: integer): integer; begin if x > y then Result := x else Result := y; end; function Min(x, y: integer): integer; begin if x < y then Result := x else Result := y; end; function MinMax(x, mi, ma: integer): integer; begin if (x < mi) then Result := mi else if (x > ma) then Result := ma else Result := x; end; procedure SwapInt(var l, r: integer); var tmp: integer; begin tmp := r; r := l; l := tmp; end; function maxPoint(P1, P2: TPoint): TPoint; begin Result := P1; if (P2.y > P1.y) or ((P2.y = P1.y) and (P2.x > P1.x)) then Result := P2; end; function minPoint(P1, P2: TPoint): TPoint; begin Result := P1; if (P2.y < P1.y) or ((P2.y = P1.y) and (P2.x < P1.x)) then Result := P2; end; {$IFDEF SYN_LAZARUS} function eqPoint(P1, P2: TPoint): Boolean; begin Result := (P2.y = P1.y) and (P2.x = P1.x); end; procedure SwapPoint(var P1, P2: TPoint); var tmp : TPoint; begin tmp := P1; P1 := P2; P2 := tmp; end; {$ENDIF} {***} function GetIntArray(Count: Cardinal; InitialValue: integer): PIntArray; var p: PInteger; begin Result := AllocMem(Count * SizeOf(integer)); if Assigned(Result) and (InitialValue <> 0) then begin p := PInteger(Result); while (Count > 0) do begin p^ := InitialValue; Inc(p); Dec(Count); end; end; end; procedure InternalFillRect(dc: HDC; const rcPaint: TRect); begin ExtTextOut(dc, 0, 0, ETO_OPAQUE, @rcPaint, nil, 0, nil); end; {***} function StrScanForCharInSet(const Line: string; Start: integer; AChars: TSynIdentChars): integer; var p: PChar; begin if (Start > 0) and (Start <= Length(Line)) then begin p := PChar(@Line[Start]); repeat if p^ in AChars then begin Result := Start; exit; end; Inc(p); Inc(Start); until p^ = #0; end; Result := 0; end; function GetEOL(Line: PChar): PChar; begin Result := Line; if Assigned(Result) then while not (Result^ in [#0, #10, #13]) do Inc(Result); end; {begin} //gp 2000-06-24 {$IFOPT R+}{$DEFINE RestoreRangeChecking}{$ELSE}{$UNDEF RestoreRangeChecking}{$ENDIF} {$R-} function EncodeString(s: string): string; var i, j: integer; begin {$IFDEF SYN_LAZARUS} SetLength(Result, EncodeStringLength(s)); {$ELSE} SetLength(Result, 2 * Length(s)); // worst case {$ENDIF} j := 0; for i := 1 to Length(s) do begin Inc(j); if s[i] = '\' then begin Result[j] := '\'; {$IFDEF SYN_LAZARUS} Inc(j); Result[j] := '\'; {$ELSE} Result[j + 1] := '\'; Inc(j); {$ENDIF} end else if s[i] = '/' then begin Result[j] := '\'; {$IFDEF SYN_LAZARUS} Inc(j); Result[j] := '.'; {$ELSE} Result[j + 1] := '.'; Inc(j); {$ENDIF} end else Result[j] := s[i]; end; //for {$IFNDEF SYN_LAZARUS} SetLength(Result, j); {$ENDIF} end; { EncodeString } {$IFDEF SYN_LAZARUS} function EncodeStringLength(s: string): integer; var i, len: integer; begin len:=length(s); Result := len; for i := 1 to len do if (s[i] in ['\','/']) then Inc(Result); end; function CompareCarets(const FirstCaret, SecondCaret: TPoint): integer; begin if (FirstCaret.YSecondCaret.Y) then Result:=-1 else if (FirstCaret.XSecondCaret.X) then Result:=-1 else Result:=0; end; {$ENDIF} function DecodeString(s: string): string; var i, j: integer; begin SetLength(Result, Length(s)); // worst case j := 0; i := 1; while i <= Length(s) do begin Inc(j); if s[i] = '\' then begin Inc(i); if s[i] = '\' then Result[j] := '\' else Result[j] := '/'; end else Result[j] := s[i]; Inc(i); end; //for SetLength(Result,j); end; { DecodeString } {$IFDEF RestoreRangeChecking}{$R+}{$ENDIF} {end} //gp 2000-06-24 function CreateTabsAndSpaces(StartPos, SpaceLen, TabWidth: integer; UseTabs: boolean): string; var TabCount: Integer; EndPos: Integer; PosPlusOneTab: Integer; begin Result:=''; if not UseTabs then begin Result:=StringOfChar(' ',SpaceLen); exit; end; TabCount:=0; EndPos:=StartPos+SpaceLen; while StartPos0 then Result:=StringOfChar(#9,TabCount)+Result; end; end.