{------------------------------------------------------------------------------- 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: SynHighlighterPas.pas, released 2000-04-17. The Original Code is based on the mwPasSyn.pas file from the mwEdit component suite by Martin Waldenburg and other developers, the Initial Author of this file is Martin Waldenburg. Portions created by Martin Waldenburg are Copyright (C) 1998 Martin Waldenburg. 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: -------------------------------------------------------------------------------} { @abstract(Provides a Pascal/Delphi syntax highlighter for SynEdit) @author(Martin Waldenburg) @created(1998, converted to SynEdit 2000-04-07) @lastmod(2000-06-23) The SynHighlighterPas unit provides SynEdit with a Object Pascal syntax highlighter. An extra boolean property "D4Syntax" is included to enable the recognition of the advanced features found in Object Pascal in Delphi 4. } unit SynHighlighterPas; {$I synedit.inc} interface uses SysUtils, {$IFDEF SYN_LAZARUS} LCLIntf, LCLType, {$ELSE} Windows, {$ENDIF} Messages, Classes, Controls, Graphics, Registry, SynEditTypes, SynEditHighlighter; type TtkTokenKind = (tkAsm, tkComment, tkIdentifier, tkKey, tkNull, tkNumber, tkSpace, tkString, tkSymbol, {$IFDEF SYN_LAZARUS}tkDirective, {$ENDIF} tkUnknown); TRangeState = (rsANil, rsAnsi, rsAnsiAsm, rsAsm, rsBor, rsBorAsm, {$IFDEF SYN_LAZARUS}rsDirective, rsDirectiveAsm,{$ENDIF} rsProperty, rsUnKnown); TProcTableProc = procedure of object; PIdentFuncTableFunc = ^TIdentFuncTableFunc; TIdentFuncTableFunc = function: TtkTokenKind of object; TSynPasSyn = class(TSynCustomHighlighter) private fAsmStart: Boolean; fRange: TRangeState; {$IFDEF SYN_LAZARUS} fLine: string; fLineLen: integer; {$ELSE} fLine: PChar; {$ENDIF} fLineNumber: Integer; fProcTable: array[#0..#255] of TProcTableProc; Run: LongInt; fStringLen: Integer; {$IFDEF SYN_LAZARUS} fToIdent: integer; {$ELSE} fToIdent: PChar; {$ENDIF} fIdentFuncTable: array[0..191] of TIdentFuncTableFunc; fTokenPos: Integer; FTokenID: TtkTokenKind; fStringAttri: TSynHighlighterAttributes; fNumberAttri: TSynHighlighterAttributes; fKeyAttri: TSynHighlighterAttributes; fSymbolAttri: TSynHighlighterAttributes; fAsmAttri: TSynHighlighterAttributes; fCommentAttri: TSynHighlighterAttributes; fIdentifierAttri: TSynHighlighterAttributes; fSpaceAttri: TSynHighlighterAttributes; {$IFDEF SYN_LAZARUS} fDirectiveAttri: TSynHighlighterAttributes; {$ENDIF} fD4syntax: boolean; {$IFDEF SYN_LAZARUS} function KeyHash: Integer; {$ELSE} function KeyHash(ToHash: PChar): Integer; {$ENDIF} function KeyComp(const aKey: string): Boolean; function Func15: TtkTokenKind; function Func19: TtkTokenKind; function Func20: TtkTokenKind; function Func21: TtkTokenKind; function Func23: TtkTokenKind; function Func25: TtkTokenKind; function Func27: TtkTokenKind; function Func28: TtkTokenKind; {$ifdef SYN_LAZARUS} function Func29: TtkTokenKind; // "on" {$endif} function Func32: TtkTokenKind; function Func33: TtkTokenKind; function Func35: TtkTokenKind; function Func37: TtkTokenKind; function Func38: TtkTokenKind; function Func39: TtkTokenKind; function Func40: TtkTokenKind; function Func41: TtkTokenKind; function Func44: TtkTokenKind; function Func45: TtkTokenKind; function Func47: TtkTokenKind; function Func49: TtkTokenKind; function Func52: TtkTokenKind; function Func54: TtkTokenKind; function Func55: TtkTokenKind; function Func56: TtkTokenKind; function Func57: TtkTokenKind; function Func59: TtkTokenKind; function Func60: TtkTokenKind; function Func61: TtkTokenKind; function Func63: TtkTokenKind; function Func64: TtkTokenKind; function Func65: TtkTokenKind; function Func66: TtkTokenKind; function Func69: TtkTokenKind; function Func71: TtkTokenKind; function Func73: TtkTokenKind; function Func75: TtkTokenKind; function Func76: TtkTokenKind; function Func79: TtkTokenKind; function Func81: TtkTokenKind; function Func84: TtkTokenKind; function Func85: TtkTokenKind; function Func87: TtkTokenKind; function Func88: TtkTokenKind; function Func91: TtkTokenKind; function Func92: TtkTokenKind; function Func94: TtkTokenKind; function Func95: TtkTokenKind; function Func96: TtkTokenKind; function Func97: TtkTokenKind; function Func98: TtkTokenKind; function Func99: TtkTokenKind; function Func100: TtkTokenKind; function Func101: TtkTokenKind; function Func102: TtkTokenKind; function Func103: TtkTokenKind; function Func105: TtkTokenKind; function Func106: TtkTokenKind; {$ifdef SYN_LAZARUS} function Func108: TtkTokenKind; // "operator" {$endif} function Func117: TtkTokenKind; function Func126: TtkTokenKind; function Func129: TtkTokenKind; function Func132: TtkTokenKind; function Func133: TtkTokenKind; function Func136: TtkTokenKind; function Func141: TtkTokenKind; function Func143: TtkTokenKind; function Func166: TtkTokenKind; function Func168: TtkTokenKind; function Func191: TtkTokenKind; function AltFunc: TtkTokenKind; procedure InitIdent; {$IFDEF SYN_LAZARUS} function IdentKind(p: integer): TtkTokenKind; {$ELSE} function IdentKind(MayBe: PChar): TtkTokenKind; {$ENDIF} procedure MakeMethodTables; procedure AddressOpProc; procedure AsciiCharProc; procedure AnsiProc; procedure BorProc; procedure BraceOpenProc; procedure ColonOrGreaterProc; procedure CRProc; {$IFDEF SYN_LAZARUS} procedure DirectiveProc; {$ENDIF} procedure IdentProc; procedure IntegerProc; procedure LFProc; procedure LowerProc; procedure NullProc; procedure NumberProc; procedure PointProc; procedure RoundOpenProc; procedure SemicolonProc; //mh 2000-10-08 procedure SlashProc; procedure SpaceProc; procedure StringProc; procedure SymbolProc; procedure UnknownProc; procedure SetD4syntax(const Value: boolean); protected function GetIdentChars: TSynIdentChars; override; function IsFilterStored: boolean; override; //mh 2000-10-08 public {$IFNDEF SYN_CPPB_1} class {$ENDIF} function GetCapabilities: TSynHighlighterCapabilities; override; {$IFNDEF SYN_CPPB_1} class {$ENDIF} function GetLanguageName: string; override; public constructor Create(AOwner: TComponent); override; function GetDefaultAttribute(Index: integer): TSynHighlighterAttributes; override; function GetEol: Boolean; override; function GetRange: Pointer; override; function GetToken: string; override; {$IFDEF SYN_LAZARUS} procedure GetTokenEx(var TokenStart: PChar; var TokenLength: integer); override; {$ENDIF} function GetTokenAttribute: TSynHighlighterAttributes; override; function GetTokenID: TtkTokenKind; function GetTokenKind: integer; override; function GetTokenPos: Integer; override; procedure Next; override; procedure ResetRange; override; procedure SetLine({$IFDEF FPC}const {$ENDIF}NewValue: string; LineNumber:Integer); override; procedure SetRange(Value: Pointer); override; function UseUserSettings(settingIndex: integer): boolean; override; procedure EnumUserSettings(settings: TStrings); override; published property AsmAttri: TSynHighlighterAttributes read fAsmAttri write fAsmAttri; property CommentAttri: TSynHighlighterAttributes read fCommentAttri write fCommentAttri; property IdentifierAttri: TSynHighlighterAttributes read fIdentifierAttri write fIdentifierAttri; property KeyAttri: TSynHighlighterAttributes read fKeyAttri write fKeyAttri; property NumberAttri: TSynHighlighterAttributes read fNumberAttri write fNumberAttri; property SpaceAttri: TSynHighlighterAttributes read fSpaceAttri write fSpaceAttri; property StringAttri: TSynHighlighterAttributes read fStringAttri write fStringAttri; property SymbolAttri: TSynHighlighterAttributes read fSymbolAttri write fSymbolAttri; {$IFDEF SYN_LAZARUS} property DirectiveAttri: TSynHighlighterAttributes read fDirectiveAttri write fDirectiveAttri; {$ENDIF} property D4syntax: boolean read FD4syntax write SetD4syntax default true; end; implementation uses SynEditStrConst; var Identifiers: array[#0..#255] of ByteBool; mHashTable: array[#0..#255] of Integer; {$IFDEF SYN_LAZARUS} IsIntegerChar: array[char] of Boolean; IsNumberChar: array[char] of Boolean; IsSpaceChar: array[char] of Boolean; IsUnderScoreOrNumberChar: array[char] of Boolean; IsLetterChar: array[char] of Boolean; {$ENDIF} procedure MakeIdentTable; var I, J: Char; begin for I := #0 to #255 do begin Case I of '_', '0'..'9', 'a'..'z', 'A'..'Z': Identifiers[I] := True; else Identifiers[I] := False; end; J := UpCase(I); Case I of 'a'..'z', 'A'..'Z', '_': mHashTable[I] := Ord(J) - 64; else mHashTable[Char(I)] := 0; end; {$IFDEF SYN_LAZARUS} IsIntegerChar[I]:=(I in ['0'..'9', 'A'..'F', 'a'..'f']); IsNumberChar[I]:=(I in ['0'..'9', '.', 'e', 'E']); IsSpaceChar[I]:=(I in [#1..#9, #11, #12, #14..#32]); IsUnderScoreOrNumberChar[I]:=(I in ['_','0'..'9']); IsLetterChar[I]:=(I in ['a'..'z','A'..'Z']); {$ENDIF} end; end; procedure TSynPasSyn.InitIdent; var I: Integer; pF: PIdentFuncTableFunc; begin pF := PIdentFuncTableFunc(@fIdentFuncTable); for I := Low(fIdentFuncTable) to High(fIdentFuncTable) do begin {$IFDEF FPC} pF^ := @AltFunc; {$ELSE} pF^ := AltFunc; {$ENDIF} Inc(pF); end; {$IFDEF FPC} fIdentFuncTable[15] := @Func15; fIdentFuncTable[19] := @Func19; fIdentFuncTable[20] := @Func20; fIdentFuncTable[21] := @Func21; fIdentFuncTable[23] := @Func23; fIdentFuncTable[25] := @Func25; fIdentFuncTable[27] := @Func27; fIdentFuncTable[28] := @Func28; {$ifdef SYN_LAZARUS} fIdentFuncTable[29] := @Func29; // "on" {$endif} fIdentFuncTable[32] := @Func32; fIdentFuncTable[33] := @Func33; fIdentFuncTable[35] := @Func35; fIdentFuncTable[37] := @Func37; fIdentFuncTable[38] := @Func38; fIdentFuncTable[39] := @Func39; fIdentFuncTable[40] := @Func40; fIdentFuncTable[41] := @Func41; fIdentFuncTable[44] := @Func44; fIdentFuncTable[45] := @Func45; fIdentFuncTable[47] := @Func47; fIdentFuncTable[49] := @Func49; fIdentFuncTable[52] := @Func52; fIdentFuncTable[54] := @Func54; fIdentFuncTable[55] := @Func55; fIdentFuncTable[56] := @Func56; fIdentFuncTable[57] := @Func57; fIdentFuncTable[59] := @Func59; fIdentFuncTable[60] := @Func60; fIdentFuncTable[61] := @Func61; fIdentFuncTable[63] := @Func63; fIdentFuncTable[64] := @Func64; fIdentFuncTable[65] := @Func65; fIdentFuncTable[66] := @Func66; fIdentFuncTable[69] := @Func69; fIdentFuncTable[71] := @Func71; fIdentFuncTable[73] := @Func73; fIdentFuncTable[75] := @Func75; fIdentFuncTable[76] := @Func76; fIdentFuncTable[79] := @Func79; fIdentFuncTable[81] := @Func81; fIdentFuncTable[84] := @Func84; fIdentFuncTable[85] := @Func85; fIdentFuncTable[87] := @Func87; fIdentFuncTable[88] := @Func88; fIdentFuncTable[91] := @Func91; fIdentFuncTable[92] := @Func92; fIdentFuncTable[94] := @Func94; fIdentFuncTable[95] := @Func95; fIdentFuncTable[96] := @Func96; fIdentFuncTable[97] := @Func97; fIdentFuncTable[98] := @Func98; fIdentFuncTable[99] := @Func99; fIdentFuncTable[100] := @Func100; fIdentFuncTable[101] := @Func101; fIdentFuncTable[102] := @Func102; fIdentFuncTable[103] := @Func103; fIdentFuncTable[105] := @Func105; fIdentFuncTable[106] := @Func106; {$ifdef SYN_LAZARUS} fIdentFuncTable[108] := @Func108; // "operator" {$endif} fIdentFuncTable[117] := @Func117; fIdentFuncTable[126] := @Func126; fIdentFuncTable[129] := @Func129; fIdentFuncTable[132] := @Func132; fIdentFuncTable[133] := @Func133; fIdentFuncTable[136] := @Func136; fIdentFuncTable[141] := @Func141; fIdentFuncTable[143] := @Func143; fIdentFuncTable[166] := @Func166; fIdentFuncTable[168] := @Func168; fIdentFuncTable[191] := @Func191; {$ELSE} fIdentFuncTable[15] := Func15; fIdentFuncTable[19] := Func19; fIdentFuncTable[20] := Func20; fIdentFuncTable[21] := Func21; fIdentFuncTable[23] := Func23; fIdentFuncTable[25] := Func25; fIdentFuncTable[27] := Func27; fIdentFuncTable[28] := Func28; fIdentFuncTable[32] := Func32; fIdentFuncTable[33] := Func33; fIdentFuncTable[35] := Func35; fIdentFuncTable[37] := Func37; fIdentFuncTable[38] := Func38; fIdentFuncTable[39] := Func39; fIdentFuncTable[40] := Func40; fIdentFuncTable[41] := Func41; fIdentFuncTable[44] := Func44; fIdentFuncTable[45] := Func45; fIdentFuncTable[47] := Func47; fIdentFuncTable[49] := Func49; fIdentFuncTable[52] := Func52; fIdentFuncTable[54] := Func54; fIdentFuncTable[55] := Func55; fIdentFuncTable[56] := Func56; fIdentFuncTable[57] := Func57; fIdentFuncTable[59] := Func59; fIdentFuncTable[60] := Func60; fIdentFuncTable[61] := Func61; fIdentFuncTable[63] := Func63; fIdentFuncTable[64] := Func64; fIdentFuncTable[65] := Func65; fIdentFuncTable[66] := Func66; fIdentFuncTable[69] := Func69; fIdentFuncTable[71] := Func71; fIdentFuncTable[73] := Func73; fIdentFuncTable[75] := Func75; fIdentFuncTable[76] := Func76; fIdentFuncTable[79] := Func79; fIdentFuncTable[81] := Func81; fIdentFuncTable[84] := Func84; fIdentFuncTable[85] := Func85; fIdentFuncTable[87] := Func87; fIdentFuncTable[88] := Func88; fIdentFuncTable[91] := Func91; fIdentFuncTable[92] := Func92; fIdentFuncTable[94] := Func94; fIdentFuncTable[95] := Func95; fIdentFuncTable[96] := Func96; fIdentFuncTable[97] := Func97; fIdentFuncTable[98] := Func98; fIdentFuncTable[99] := Func99; fIdentFuncTable[100] := Func100; fIdentFuncTable[101] := Func101; fIdentFuncTable[102] := Func102; fIdentFuncTable[103] := Func103; fIdentFuncTable[105] := Func105; fIdentFuncTable[106] := Func106; fIdentFuncTable[117] := Func117; fIdentFuncTable[126] := Func126; fIdentFuncTable[129] := Func129; fIdentFuncTable[132] := Func132; fIdentFuncTable[133] := Func133; fIdentFuncTable[136] := Func136; fIdentFuncTable[141] := Func141; fIdentFuncTable[143] := Func143; fIdentFuncTable[166] := Func166; fIdentFuncTable[168] := Func168; fIdentFuncTable[191] := Func191; {$ENDIF} end; {$IFDEF SYN_LAZARUS} function TSynPasSyn.KeyHash: Integer; var Start, ToHash: PChar; begin Result := 0; if (fToIdent<=fLineLen) and (fLine<>'') then begin Start := PChar(fLine) + fToIdent - 1; ToHash := Start; while (IsLetterChar[ToHash^]) do begin inc(Result, mHashTable[ToHash^]); inc(ToHash); end; if IsUnderScoreOrNumberChar[ToHash^] then inc(ToHash); fStringLen := integer(ToHash) - integer(Start); end else begin fStringLen := 0; end; end; { KeyHash } {$ELSE} function TSynPasSyn.KeyHash(ToHash: PChar): Integer; begin Result := 0; while ToHash^ in ['a'..'z', 'A'..'Z'] do begin inc(Result, mHashTable[ToHash^]); inc(ToHash); end; if ToHash^ in ['_', '0'..'9'] then inc(ToHash); fStringLen := ToHash - fToIdent; end; { KeyHash } {$ENDIF} function TSynPasSyn.KeyComp(const aKey: string): Boolean; var I: Integer; Temp: PChar; begin if Length(aKey) = fStringLen then begin {$IFDEF SYN_LAZARUS} Temp := PChar(fLine) + fToIdent - 1; {$ELSE} Temp := fToIdent; {$ENDIF} Result := True; for i := 1 to fStringLen do begin if mHashTable[Temp^] <> mHashTable[aKey[i]] then begin Result := False; break; end; inc(Temp); end; end else Result := False; end; { KeyComp } function TSynPasSyn.Func15: TtkTokenKind; begin if KeyComp('If') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func19: TtkTokenKind; begin if KeyComp('Do') then Result := tkKey else if KeyComp('And') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func20: TtkTokenKind; begin if KeyComp('As') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func21: TtkTokenKind; begin if KeyComp('Of') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func23: TtkTokenKind; begin if KeyComp('End') then begin if ((fToIdent<3) or (fLine[fToIdent-2]<>'@') or (fLine[fToIdent-1]<>'@')) then begin Result := tkKey; fRange := rsUnknown; end else begin Result := tkKey; // @@end label end; end else if KeyComp('In') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func25: TtkTokenKind; begin if KeyComp('Far') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func27: TtkTokenKind; begin if KeyComp('Cdecl') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func28: TtkTokenKind; begin if KeyComp('Is') then Result := tkKey else if KeyComp('Read') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else if KeyComp('Case') then Result := tkKey else Result := tkIdentifier; end; {$IFDEF SYN_LAZARUS} function TSynPasSyn.Func29: TtkTokenKind; begin if KeyComp('On') then Result := tkKey else Result := tkIdentifier; end; {$ENDIF} function TSynPasSyn.Func32: TtkTokenKind; begin if KeyComp('Label') then Result := tkKey else if KeyComp('Mod') then Result := tkKey else if KeyComp('File') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func33: TtkTokenKind; begin if KeyComp('Or') then Result := tkKey else if KeyComp('Asm') then begin Result := tkKey; fRange := rsAsm; fAsmStart := True; end else Result := tkIdentifier; end; function TSynPasSyn.Func35: TtkTokenKind; begin if KeyComp('Nil') then Result := tkKey else if KeyComp('To') then Result := tkKey else if KeyComp('Div') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func37: TtkTokenKind; begin if KeyComp('Begin') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func38: TtkTokenKind; begin if KeyComp('Near') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func39: TtkTokenKind; begin if KeyComp('For') then Result := tkKey else if KeyComp('Shl') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func40: TtkTokenKind; begin if KeyComp('Packed') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func41: TtkTokenKind; begin if KeyComp('Else') then Result := tkKey else if KeyComp('Var') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func44: TtkTokenKind; begin if KeyComp('Set') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func45: TtkTokenKind; begin if KeyComp('Shr') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func47: TtkTokenKind; begin if KeyComp('Then') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func49: TtkTokenKind; begin if KeyComp('Not') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func52: TtkTokenKind; begin if KeyComp('Pascal') then Result := tkKey else if KeyComp('Raise') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func54: TtkTokenKind; begin if KeyComp('Class') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func55: TtkTokenKind; begin if KeyComp('Object') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func56: TtkTokenKind; begin if KeyComp('Index') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else if KeyComp('Out') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func57: TtkTokenKind; begin if KeyComp('Goto') then Result := tkKey else if KeyComp('While') then Result := tkKey else if KeyComp('Xor') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func59: TtkTokenKind; begin if KeyComp('Safecall') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func60: TtkTokenKind; begin if KeyComp('With') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func61: TtkTokenKind; begin if KeyComp('Dispid') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func63: TtkTokenKind; begin if KeyComp('Public') then Result := tkKey else if KeyComp('Record') then Result := tkKey else if KeyComp('Array') then Result := tkKey else if KeyComp('Try') then Result := tkKey else if KeyComp('Inline') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func64: TtkTokenKind; begin if KeyComp('Unit') then Result := tkKey else if KeyComp('Uses') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func65: TtkTokenKind; begin if KeyComp('Repeat') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func66: TtkTokenKind; begin if KeyComp('Type') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func69: TtkTokenKind; begin if KeyComp('Default') then Result := tkKey else if KeyComp('Dynamic') then Result := tkKey else if KeyComp('Message') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func71: TtkTokenKind; begin if KeyComp('Stdcall') then Result := tkKey else if KeyComp('Const') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func73: TtkTokenKind; begin if KeyComp('Except') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func75: TtkTokenKind; begin if KeyComp('Write') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else Result := tkIdentifier; end; function TSynPasSyn.Func76: TtkTokenKind; begin if KeyComp('Until') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func79: TtkTokenKind; begin if KeyComp('Finally') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func81: TtkTokenKind; begin if KeyComp('Stored') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else if KeyComp('Interface') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func84: TtkTokenKind; begin if KeyComp('Abstract') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func85: TtkTokenKind; begin if KeyComp('Forward') then Result := tkKey else if KeyComp('Library') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func87: TtkTokenKind; begin if KeyComp('String') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func88: TtkTokenKind; begin if KeyComp('Program') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func91: TtkTokenKind; begin if KeyComp('Downto') then Result := tkKey else if KeyComp('Private') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func92: TtkTokenKind; begin if D4syntax and KeyComp('overload') then Result := tkKey else if KeyComp('Inherited') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func94: TtkTokenKind; begin if KeyComp('Assembler') then Result := tkKey else if KeyComp('Readonly') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else Result := tkIdentifier; end; function TSynPasSyn.Func95: TtkTokenKind; begin if KeyComp('Absolute') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func96: TtkTokenKind; begin if KeyComp('Published') then Result := tkKey else if KeyComp('Override') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func97: TtkTokenKind; begin if KeyComp('Threadvar') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func98: TtkTokenKind; begin if KeyComp('Export') then Result := tkKey else if KeyComp('Nodefault') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else Result := tkIdentifier; end; function TSynPasSyn.Func99: TtkTokenKind; begin if KeyComp('External') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func100: TtkTokenKind; begin if KeyComp('Automated') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func101: TtkTokenKind; begin if KeyComp('Register') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func102: TtkTokenKind; begin if KeyComp('Function') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func103: TtkTokenKind; begin if KeyComp('Virtual') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func105: TtkTokenKind; begin if KeyComp('Procedure') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func106: TtkTokenKind; begin if KeyComp('Protected') then Result := tkKey else Result := tkIdentifier; end; {$ifdef SYN_LAZARUS} function TSynPasSyn.Func108: TtkTokenKind; begin if KeyComp('Operator') then Result := tkKey else Result := tkIdentifier; end; {$endif} function TSynPasSyn.Func117: TtkTokenKind; begin if KeyComp('Exports') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func126: TtkTokenKind; begin if D4syntax and KeyComp('Implements') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else Result := tkIdentifier; end; function TSynPasSyn.Func129: TtkTokenKind; begin if KeyComp('Dispinterface') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func132: TtkTokenKind; begin if D4syntax and KeyComp('Reintroduce') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func133: TtkTokenKind; begin if KeyComp('Property') then begin Result := tkKey; fRange := rsProperty; end else Result := tkIdentifier; end; function TSynPasSyn.Func136: TtkTokenKind; begin if KeyComp('Finalization') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func141: TtkTokenKind; begin if KeyComp('Writeonly') then begin if fRange = rsProperty then Result := tkKey else Result := tkIdentifier; end else Result := tkIdentifier; end; function TSynPasSyn.Func143: TtkTokenKind; begin if KeyComp('Destructor') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func166: TtkTokenKind; begin if KeyComp('Constructor') then Result := tkKey else if KeyComp('Implementation') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func168: TtkTokenKind; begin if KeyComp('Initialization') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.Func191: TtkTokenKind; begin if KeyComp('Resourcestring') then Result := tkKey else if KeyComp('Stringresource') then Result := tkKey else Result := tkIdentifier; end; function TSynPasSyn.AltFunc: TtkTokenKind; begin Result := tkIdentifier end; {$IFDEF SYN_LAZARUS} function TSynPasSyn.IdentKind(p: integer): TtkTokenKind; var HashKey: Integer; begin fToIdent := p; HashKey := KeyHash; if HashKey < 192 then Result := fIdentFuncTable[HashKey]{$IFDEF FPC}(){$ENDIF} else Result := tkIdentifier; end; {$ELSE} function TSynPasSyn.IdentKind(MayBe: PChar): TtkTokenKind; var HashKey: Integer; begin fToIdent := MayBe; HashKey := KeyHash(MayBe); if HashKey < 192 then Result := fIdentFuncTable[HashKey]{$IFDEF FPC}(){$ENDIF} else Result := tkIdentifier; end; {$ENDIF} procedure TSynPasSyn.MakeMethodTables; var I: Char; begin for I := #0 to #255 do {$IFDEF FPC} case I of #0: fProcTable[I] := @NullProc; #10: fProcTable[I] := @LFProc; #13: fProcTable[I] := @CRProc; #1..#9, #11, #12, #14..#32: fProcTable[I] := @SpaceProc; '#': fProcTable[I] := @AsciiCharProc; '$': fProcTable[I] := @IntegerProc; #39: fProcTable[I] := @StringProc; '0'..'9': fProcTable[I] := @NumberProc; 'A'..'Z', 'a'..'z', '_': fProcTable[I] := @IdentProc; '{': fProcTable[I] := @BraceOpenProc; '}', '!', '"', '%', '&', '('..'/', ':'..'@', '['..'^', '`', '~': begin case I of '(': fProcTable[I] := @RoundOpenProc; '.': fProcTable[I] := @PointProc; ';': fProcTable[I] := @SemicolonProc; //mh 2000-10-08 '/': fProcTable[I] := @SlashProc; ':', '>': fProcTable[I] := @ColonOrGreaterProc; '<': fProcTable[I] := @LowerProc; '@': fProcTable[I] := @AddressOpProc; else fProcTable[I] := @SymbolProc; end; end; else fProcTable[I] := @UnknownProc; end; {$ELSE} case I of #0: fProcTable[I] := NullProc; #10: fProcTable[I] := LFProc; #13: fProcTable[I] := CRProc; #1..#9, #11, #12, #14..#32: fProcTable[I] := SpaceProc; '#': fProcTable[I] := AsciiCharProc; '$': fProcTable[I] := IntegerProc; #39: fProcTable[I] := StringProc; '0'..'9': fProcTable[I] := NumberProc; 'A'..'Z', 'a'..'z', '_': fProcTable[I] := IdentProc; '{': fProcTable[I] := BraceOpenProc; '}', '!', '"', '%', '&', '('..'/', ':'..'@', '['..'^', '`', '~': begin case I of '(': fProcTable[I] := RoundOpenProc; '.': fProcTable[I] := PointProc; ';': fProcTable[I] := SemicolonProc; //mh 2000-10-08 '/': fProcTable[I] := SlashProc; ':', '>': fProcTable[I] := ColonOrGreaterProc; '<': fProcTable[I] := LowerProc; '@': fProcTable[I] := AddressOpProc; else fProcTable[I] := SymbolProc; end; end; else fProcTable[I] := UnknownProc; end; {$ENDIF} end; constructor TSynPasSyn.Create(AOwner: TComponent); begin inherited Create(AOwner); fD4syntax := true; fAsmAttri := TSynHighlighterAttributes.Create(SYNS_AttrAssembler); AddAttribute(fAsmAttri); fCommentAttri := TSynHighlighterAttributes.Create(SYNS_AttrComment); fCommentAttri.Style:= [fsItalic]; AddAttribute(fCommentAttri); fIdentifierAttri := TSynHighlighterAttributes.Create(SYNS_AttrIdentifier); AddAttribute(fIdentifierAttri); fKeyAttri := TSynHighlighterAttributes.Create(SYNS_AttrReservedWord); fKeyAttri.Style:= [fsBold]; AddAttribute(fKeyAttri); fNumberAttri := TSynHighlighterAttributes.Create(SYNS_AttrNumber); AddAttribute(fNumberAttri); fSpaceAttri := TSynHighlighterAttributes.Create(SYNS_AttrSpace); AddAttribute(fSpaceAttri); fStringAttri := TSynHighlighterAttributes.Create(SYNS_AttrString); AddAttribute(fStringAttri); fSymbolAttri := TSynHighlighterAttributes.Create(SYNS_AttrSymbol); AddAttribute(fSymbolAttri); {$IFDEF SYN_LAZARUS} fDirectiveAttri := TSynHighlighterAttributes.Create(SYNS_AttrDirective); fDirectiveAttri.Style:= [fsItalic]; AddAttribute(fDirectiveAttri); {$ENDIF} SetAttributesOnChange({$IFDEF FPC}@{$ENDIF}DefHighlightChange); InitIdent; MakeMethodTables; fRange := rsUnknown; fAsmStart := False; fDefaultFilter := SYNS_FilterPascal; end; { Create } procedure TSynPasSyn.SetLine(const NewValue: string; LineNumber:Integer); begin {$IFDEF SYN_LAZARUS} fLine := NewValue; fLineLen:=length(fLine); Run := 1; {$ELSE} fLine := PChar(NewValue); Run := 0; {$ENDIF} fLineNumber := LineNumber; Next; end; { SetLine } procedure TSynPasSyn.AddressOpProc; begin fTokenID := tkSymbol; inc(Run); {$IFDEF SYN_LAZARUS} if (Run<=FLineLen) and (fLine[Run] = '@') then inc(Run); {$ELSE} if fLine[Run] = '@' then inc(Run); {$ENDIF} end; procedure TSynPasSyn.AsciiCharProc; begin fTokenID := tkString; inc(Run); {$IFDEF SYN_LAZARUS} while (Run<=fLineLen) and (FLine[Run] in ['0'..'9']) do inc(Run); {$ELSE} while (FLine[Run] in ['0'..'9']) do inc(Run); {$ENDIF} end; procedure TSynPasSyn.BorProc; begin case fLine[Run] of #0: NullProc; #10: LFProc; #13: CRProc; else begin fTokenID := tkComment; repeat if fLine[Run] = '}' then begin Inc(Run); if fRange = rsBorAsm then fRange := rsAsm else fRange := rsUnKnown; break; end; Inc(Run); {$IFDEF SYN_LAZARUS} until (Run>fLineLen) or (fLine[Run] in [#0, #10, #13]); {$ELSE} until (fLine[Run] in [#0, #10, #13]); {$ENDIF} end; end; end; {$IFDEF SYN_LAZARUS} procedure TSynPasSyn.DirectiveProc; begin case fLine[Run] of #0: NullProc; #10: LFProc; #13: CRProc; else begin fTokenID := tkDirective; repeat if fLine[Run] = '}' then begin Inc(Run); if fRange = rsDirectiveAsm then fRange := rsAsm else fRange := rsUnKnown; break; end; Inc(Run); until (Run>fLineLen) or (fLine[Run] in [#0, #10, #13]); end; end; end; {$ENDIF} procedure TSynPasSyn.BraceOpenProc; begin {$IFDEF SYN_LAZARUS} if (Run=fLineLen) or (fLine[Run+1]<>'$') then begin {$ENDIF} if fRange = rsAsm then fRange := rsBorAsm else fRange := rsBor; BorProc; {$IFDEF SYN_LAZARUS} end else begin inc(Run); if fRange = rsAsm then fRange := rsDirectiveAsm else fRange := rsDirective; DirectiveProc; end; {$ENDIF} end; procedure TSynPasSyn.ColonOrGreaterProc; begin fTokenID := tkSymbol; inc(Run); {$IFDEF SYN_LAZARUS} if (Run<=fLineLen) and (fLine[Run] = '=') then inc(Run); {$ELSE} if fLine[Run] = '=' then inc(Run); {$ENDIF} end; procedure TSynPasSyn.CRProc; begin fTokenID := tkSpace; inc(Run); {$IFDEF SYN_LAZARUS} if (Run<=fLineLen) and (fLine[Run] = #10) then inc(Run); {$ELSE} if fLine[Run] = #10 then inc(Run); {$ENDIF} end; procedure TSynPasSyn.IdentProc; begin {$IFDEF SYN_LAZARUS} fTokenID := IdentKind(Run); inc(Run, fStringLen); while (Run<=fLineLen) and (Identifiers[fLine[Run]]) do inc(Run); {$ELSE} fTokenID := IdentKind((fLine + Run)); inc(Run, fStringLen); while Identifiers[fLine[Run]] do inc(Run); {$ENDIF} end; procedure TSynPasSyn.IntegerProc; begin inc(Run); fTokenID := tkNumber; {$IFDEF SYN_LAZARUS} while (Run<=fLineLen) and (IsIntegerChar[FLine[Run]]) do inc(Run); {$ELSE} while FLine[Run] in ['0'..'9', 'A'..'F', 'a'..'f'] do inc(Run); {$ENDIF} end; procedure TSynPasSyn.LFProc; begin fTokenID := tkSpace; inc(Run); end; procedure TSynPasSyn.LowerProc; begin fTokenID := tkSymbol; inc(Run); {$IFDEF SYN_LAZARUS} if (Run<=fLineLen) and (fLine[Run] in ['=', '>']) then inc(Run); {$ELSE} if fLine[Run] in ['=', '>'] then inc(Run); {$ENDIF} end; procedure TSynPasSyn.NullProc; begin fTokenID := tkNull; end; procedure TSynPasSyn.NumberProc; begin inc(Run); fTokenID := tkNumber; {$IFDEF SYN_LAZARUS} while (Run<=fLineLen) and (IsNumberChar[FLine[Run]]) do begin if (FLine[Run]='.') and (RunfLineLen) or (fLine[Run] in [#0, #10, #13]); end; end; procedure TSynPasSyn.RoundOpenProc; begin Inc(Run); {$IFDEF SYN_LAZARUS} if Run>fLineLen then begin fTokenID:=tkSymbol; exit; end; {$ENDIF} case fLine[Run] of '*': begin Inc(Run); if fRange = rsAsm then fRange := rsAnsiAsm else fRange := rsAnsi; fTokenID := tkComment; {$IFDEF SYN_LAZARUS} if (Run<=fLineLen) and not (fLine[Run] in [#0, #10, #13]) then {$ELSE} if not (fLine[Run] in [#0, #10, #13]) then {$ENDIF} AnsiProc; end; '.': begin inc(Run); fTokenID := tkSymbol; end; else fTokenID := tkSymbol; end; end; {begin} //mh 2000-10-08 procedure TSynPasSyn.SemicolonProc; begin Inc(Run); fTokenID := tkSymbol; if fRange = rsProperty then fRange := rsUnknown; end; {end} //mh 2000-10-08 procedure TSynPasSyn.SlashProc; begin Inc(Run); {$IFDEF SYN_LAZARUS} if (Run<=fLineLen) and (fLine[Run] = '/') then begin {$ELSE} if fLine[Run] = '/' then begin {$ENDIF} fTokenID := tkComment; repeat Inc(Run); {$IFDEF SYN_LAZARUS} until (Run>fLineLen) or (fLine[Run] in [#0, #10, #13]); {$ELSE} until fLine[Run] in [#0, #10, #13]; {$ENDIF} end else fTokenID := tkSymbol; end; procedure TSynPasSyn.SpaceProc; begin inc(Run); fTokenID := tkSpace; {$IFDEF SYN_LAZARUS} while (Run<=fLineLen) and (IsSpaceChar[FLine[Run]]) do inc(Run); {$ELSE} while FLine[Run] in [#1..#9, #11, #12, #14..#32] do inc(Run); {$ENDIF} end; procedure TSynPasSyn.StringProc; begin fTokenID := tkString; Inc(Run); {$IFDEF SYN_LAZARUS} while (Run<=FLineLen) and (not (fLine[Run] in [#0, #10, #13])) do begin if fLine[Run] = '''' then begin Inc(Run); if (Run>fLineLen) or (fLine[Run] <> '''') then break; end; Inc(Run); end; {$ELSE} while not (fLine[Run] in [#0, #10, #13]) do begin if fLine[Run] = #39 then begin Inc(Run); if fLine[Run] <> #39 then break; end; Inc(Run); end; {$ENDIF} end; procedure TSynPasSyn.SymbolProc; begin inc(Run); fTokenID := tkSymbol; end; procedure TSynPasSyn.UnknownProc; begin inc(Run); fTokenID := tkUnknown; end; procedure TSynPasSyn.Next; begin fAsmStart := False; fTokenPos := Run; {$IFDEF SYN_LAZARUS} if Run>fLineLen then begin fTokenID := tkNull; exit; end; {$ENDIF} case fRange of rsAnsi, rsAnsiAsm: AnsiProc; rsBor, rsBorAsm: BorProc; {$IFDEF SYN_LAZARUS} rsDirective, rsDirectiveAsm: DirectiveProc; {$ENDIF} else fProcTable[fLine[Run]]; end; end; function TSynPasSyn.GetDefaultAttribute(Index: integer): TSynHighlighterAttributes; begin case Index of SYN_ATTR_COMMENT: Result := fCommentAttri; SYN_ATTR_IDENTIFIER: Result := fIdentifierAttri; SYN_ATTR_KEYWORD: Result := fKeyAttri; SYN_ATTR_STRING: Result := fStringAttri; SYN_ATTR_WHITESPACE: Result := fSpaceAttri; else Result := nil; end; end; function TSynPasSyn.GetEol: Boolean; begin Result := fTokenID = tkNull; end; function TSynPasSyn.GetToken: string; var Len: LongInt; begin Len := Run - fTokenPos; {$IFDEF SYN_LAZARUS} SetLength(Result,Len); System.Move(fLine[fTokenPos],Result[1],Len); {$ELSE} SetString(Result, (FLine + fTokenPos), Len); {$ENDIF} end; {$IFDEF SYN_LAZARUS} procedure TSynPasSyn.GetTokenEx(var TokenStart: PChar; var TokenLength: integer); begin TokenLength:=Run-fTokenPos; if TokenLength>0 then begin TokenStart:=@fLine[fTokenPos]; end else begin TokenStart:=nil; end; end; {$ENDIF} function TSynPasSyn.GetTokenID: TtkTokenKind; begin if not fAsmStart and (fRange = rsAsm) and not (fTokenId in [tkNull, tkComment, tkSpace]) then Result := tkAsm else Result := fTokenId; end; function TSynPasSyn.GetTokenAttribute: TSynHighlighterAttributes; begin case GetTokenID of tkAsm: Result := fAsmAttri; tkComment: Result := fCommentAttri; tkIdentifier: Result := fIdentifierAttri; tkKey: Result := fKeyAttri; tkNumber: Result := fNumberAttri; tkSpace: Result := fSpaceAttri; tkString: Result := fStringAttri; tkSymbol: Result := fSymbolAttri; {$IFDEF SYN_LAZARUS} tkDirective: Result := fDirectiveAttri; {$ENDIF} tkUnknown: Result := fSymbolAttri; else Result := nil; end; end; function TSynPasSyn.GetTokenKind: integer; begin Result := Ord(GetTokenID); end; function TSynPasSyn.GetTokenPos: Integer; begin Result := fTokenPos {$IFDEF SYN_LAZARUS} -1 {$ENDIF}; end; function TSynPasSyn.GetRange: Pointer; begin Result := Pointer(fRange); end; procedure TSynPasSyn.SetRange(Value: Pointer); begin fRange := TRangeState(Value); end; procedure TSynPasSyn.ResetRange; begin fRange:= rsUnknown; end; procedure TSynPasSyn.EnumUserSettings(settings: TStrings); begin { returns the user settings that exist in the registry } with TBetterRegistry.Create do begin try RootKey := HKEY_LOCAL_MACHINE; {$IFNDEF SYN_LAZARUS} // ToDo Registry if OpenKeyReadOnly('\SOFTWARE\Borland\Delphi') then begin try GetKeyNames(settings); finally CloseKey; end; end; {$ENDIF} finally Free; end; end; end; function TSynPasSyn.UseUserSettings(settingIndex: integer): boolean; // Possible parameter values: // index into TStrings returned by EnumUserSettings // Possible return values: // true : settings were read and used // false: problem reading settings or invalid version specified - old settings // were preserved function ReadDelphiSettings(settingIndex: integer): boolean; function ReadDelphiSetting(settingTag: string; attri: TSynHighlighterAttributes; key: string): boolean; function ReadDelphi2Or3(settingTag: string; attri: TSynHighlighterAttributes; name: string): boolean; var i: integer; begin for i := 1 to Length(name) do if name[i] = ' ' then name[i] := '_'; Result := attri.LoadFromBorlandRegistry(HKEY_CURRENT_USER, '\Software\Borland\Delphi\'+settingTag+'\Highlight',name,true); end; { ReadDelphi2Or3 } function ReadDelphi4OrMore(settingTag: string; attri: TSynHighlighterAttributes; key: string): boolean; begin Result := attri.LoadFromBorlandRegistry(HKEY_CURRENT_USER, '\Software\Borland\Delphi\'+settingTag+'\Editor\Highlight', key,false); end; { ReadDelphi4OrMore } begin { ReadDelphiSetting } try if (settingTag[1] = '2') or (settingTag[1] = '3') then Result := ReadDelphi2Or3(settingTag,attri,key) else Result := ReadDelphi4OrMore(settingTag,attri,key); except Result := false; end; end; { ReadDelphiSetting } var tmpStringAttri : TSynHighlighterAttributes; tmpNumberAttri : TSynHighlighterAttributes; tmpKeyAttri : TSynHighlighterAttributes; tmpSymbolAttri : TSynHighlighterAttributes; tmpAsmAttri : TSynHighlighterAttributes; tmpCommentAttri : TSynHighlighterAttributes; {$IFDEF SYN_LAZARUS} tmpDirectiveAttri : TSynHighlighterAttributes; {$ENDIF} tmpIdentifierAttri: TSynHighlighterAttributes; tmpSpaceAttri : TSynHighlighterAttributes; s : TStringList; begin { ReadDelphiSettings } s := TStringList.Create; try EnumUserSettings(s); if (settingIndex < 0) or (settingIndex >= s.Count) then Result := false else begin tmpStringAttri := TSynHighlighterAttributes.Create(''); tmpNumberAttri := TSynHighlighterAttributes.Create(''); tmpKeyAttri := TSynHighlighterAttributes.Create(''); tmpSymbolAttri := TSynHighlighterAttributes.Create(''); tmpAsmAttri := TSynHighlighterAttributes.Create(''); tmpCommentAttri := TSynHighlighterAttributes.Create(''); {$IFDEF SYN_LAZARUS} tmpDirectiveAttri := TSynHighlighterAttributes.Create(''); {$ENDIF} tmpIdentifierAttri:= TSynHighlighterAttributes.Create(''); tmpSpaceAttri := TSynHighlighterAttributes.Create(''); tmpStringAttri .Assign(fStringAttri); tmpNumberAttri .Assign(fNumberAttri); tmpKeyAttri .Assign(fKeyAttri); tmpSymbolAttri .Assign(fSymbolAttri); tmpAsmAttri .Assign(fAsmAttri); tmpCommentAttri .Assign(fCommentAttri); {$IFDEF SYN_LAZARUS} tmpDirectiveAttri .Assign(fDirectiveAttri); {$ENDIF} tmpIdentifierAttri.Assign(fIdentifierAttri); tmpSpaceAttri .Assign(fSpaceAttri); Result := ReadDelphiSetting(s[settingIndex],fAsmAttri,'Assembler') and ReadDelphiSetting(s[settingIndex],fCommentAttri,'Comment') {$IFDEF SYN_LAZARUS} and ReadDelphiSetting(s[settingIndex],fDirectiveAttri,'Directive') {$ENDIF} and ReadDelphiSetting(s[settingIndex],fIdentifierAttri,'Identifier') and ReadDelphiSetting(s[settingIndex],fKeyAttri,'Reserved word') and ReadDelphiSetting(s[settingIndex],fNumberAttri,'Number') and ReadDelphiSetting(s[settingIndex],fSpaceAttri,'Whitespace') and ReadDelphiSetting(s[settingIndex],fStringAttri,'string') and ReadDelphiSetting(s[settingIndex],fSymbolAttri,'Symbol'); if not Result then begin fStringAttri .Assign(tmpStringAttri); fNumberAttri .Assign(tmpNumberAttri); fKeyAttri .Assign(tmpKeyAttri); fSymbolAttri .Assign(tmpSymbolAttri); fAsmAttri .Assign(tmpAsmAttri); fCommentAttri .Assign(tmpCommentAttri); {$IFDEF SYN_LAZARUS} fDirectiveAttri .Assign(tmpDirectiveAttri); {$ENDIF} fIdentifierAttri.Assign(tmpIdentifierAttri); fSpaceAttri .Assign(tmpSpaceAttri); end; tmpStringAttri .Free; tmpNumberAttri .Free; tmpKeyAttri .Free; tmpSymbolAttri .Free; tmpAsmAttri .Free; tmpCommentAttri .Free; {$IFDEF SYN_LAZARUS} tmpDirectiveAttri .Free; {$ENDIF} tmpIdentifierAttri.Free; tmpSpaceAttri .Free; end; finally s.Free; end; end; { ReadDelphiSettings } begin Result := ReadDelphiSettings(settingIndex); end; { TSynPasSyn.UseUserSettings } function TSynPasSyn.GetIdentChars: TSynIdentChars; begin Result := ['_', '0'..'9', 'a'..'z', 'A'..'Z']; end; {$IFNDEF SYN_CPPB_1} class {$ENDIF} function TSynPasSyn.GetLanguageName: string; begin Result := SYNS_LangPascal; end; {$IFNDEF SYN_CPPB_1} class {$ENDIF} function TSynPasSyn.GetCapabilities: TSynHighlighterCapabilities; begin Result := inherited GetCapabilities + [hcUserSettings]; end; {begin} //mh 2000-10-08 function TSynPasSyn.IsFilterStored: boolean; begin Result := fDefaultFilter <> SYNS_FilterPascal; end; {end} //mh 2000-10-08 procedure TSynPasSyn.SetD4syntax(const Value: boolean); begin FD4syntax := Value; end; initialization MakeIdentTable; {$IFNDEF SYN_CPPB_1} RegisterPlaceableHighlighter(TSynPasSyn); {$ENDIF} end.