{------------------------------------------------------------------------------- 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: SynHighlighterDfm.pas, released 2000-04-14. The Original Code is based on the dmDfmSyn.pas file from the mwEdit component suite by Martin Waldenburg and other developers, the Initial Author of this file is David H. Muir. 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: SynHighlighterDfm.pas,v 1.17 2005/01/28 16:53:22 maelh Exp $ 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 Delphi Form Source highlighter for SynEdit) @author(David Muir ) @created(April 13, 2000) @lastmod(2000-06-23) The SynHighlighterDfm unit provides SynEdit with a Delphi Form Source (.dfm) highlighter. The highlighter formats form source code similar to when forms are viewed as text in the Delphi editor. } {$IFNDEF QSYNHIGHLIGHTERDFM} unit SynHighlighterDfm; {$ENDIF} {$I SynEdit.inc} interface uses {$IFDEF SYN_CLX} QGraphics, QSynEditTypes, QSynEditHighlighter, {$ELSE} Graphics, SynEditTypes, SynEditHighlighter, {$ENDIF} SysUtils, Classes; type TtkTokenKind = (tkComment, tkIdentifier, tkKey, tkNull, tkNumber, tkSpace, tkString, tkSymbol, tkUnknown); TRangeState = (rsANil, rsComment, rsUnKnown); TProcTableProc = procedure of object; type TSynDfmSyn = class(TSynCustomHighlighter) private fRange: TRangeState; fLine: PChar; fLineNumber: Integer; fProcTable: array[#0..#255] of TProcTableProc; Run: LongInt; fTokenPos: Integer; FTokenID: TtkTokenKind; fCommentAttri: TSynHighlighterAttributes; fIdentifierAttri: TSynHighlighterAttributes; fKeyAttri: TSynHighlighterAttributes; fNumberAttri: TSynHighlighterAttributes; fSpaceAttri: TSynHighlighterAttributes; fStringAttri: TSynHighlighterAttributes; fSymbolAttri: TSynHighlighterAttributes; procedure AltProc; procedure AsciiCharProc; procedure BraceCloseProc; procedure BraceOpenProc; procedure CommentProc; procedure CRProc; procedure EndProc; procedure IntegerProc; procedure LFProc; procedure NullProc; procedure NumberProc; procedure ObjectProc; procedure InheritedProc; procedure SpaceProc; procedure StringProc; procedure SymbolProc; procedure UnknownProc; procedure MakeMethodTables; protected function GetIdentChars: TSynIdentChars; override; function GetSampleSource: string; override; function IsFilterStored: Boolean; override; public class 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 GetTokenID: TtkTokenKind; procedure SetLine(NewValue: String; LineNumber: Integer); override; function GetToken: String; override; function GetTokenAttribute: TSynHighlighterAttributes; override; function GetTokenKind: integer; override; function GetTokenPos: Integer; override; procedure Next; override; procedure SetRange(Value: Pointer); override; procedure ResetRange; override; property IdentChars; published 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; end; function LoadDFMFile2Strings(const AFile: string; AStrings: TStrings; var WasText: boolean): integer; function SaveStrings2DFMFile(AStrings: TStrings; const AFile: string): integer; implementation uses {$IFDEF SYN_CLX} QSynEditStrConst; {$ELSE} SynEditStrConst; {$ENDIF} { A couple of useful Delphi Form functions } function LoadDFMFile2Strings(const AFile: string; AStrings: TStrings; var WasText: boolean): integer; var Src, Dest: TStream; {$IFDEF SYN_COMPILER_5_UP} origFormat: TStreamOriginalFormat; {$ENDIF} begin Result := 0; WasText := FALSE; AStrings.Clear; try Src := TFileStream.Create(AFile, fmOpenRead or fmShareDenyWrite); try Dest := TMemoryStream.Create; try {$IFDEF SYN_COMPILER_5_UP} origFormat := sofUnknown; ObjectResourceToText(Src, Dest, origFormat); WasText := origFormat = sofText; {$ELSE} ObjectResourceToText(Src, Dest); {$ENDIF} Dest.Seek(0, soFromBeginning); AStrings.LoadFromStream(Dest); finally Dest.Free; end; finally Src.Free; end; except on E: EInOutError do Result := -E.ErrorCode; else Result := -1; end; end; function SaveStrings2DFMFile(AStrings: TStrings; const AFile: string): integer; var Src, Dest: TStream; begin Result := 0; try Src := TMemoryStream.Create; try AStrings.SaveToStream(Src); Src.Seek(0, soFromBeginning); Dest := TFileStream.Create(AFile, fmCreate); try ObjectTextToResource(Src, Dest); finally Dest.Free; end; finally Src.Free; end; except on E: EInOutError do Result := -E.ErrorCode; else Result := -1; end; end; { TSynDfmSyn } procedure TSynDfmSyn.MakeMethodTables; var I: Char; begin for I := #0 to #255 do case I of '#': fProcTable[I] := AsciiCharProc; '}': fProcTable[I] := BraceCloseProc; '{': fProcTable[I] := BraceOpenProc; #13: fProcTable[I] := CRProc; 'A'..'Z', 'a'..'z', '_': if I in ['e', 'E'] then fProcTable[I] := EndProc else if I in ['o', 'O'] then fProcTable[I] := ObjectProc else if I in ['i', 'I'] then fProcTable[I] := InheritedProc else fProcTable[I] := AltProc; '$': fProcTable[I] := IntegerProc; #10: fProcTable[I] := LFProc; #0: fProcTable[I] := NullProc; '0'..'9': fProcTable[I] := NumberProc; '(', ')', '/', '=', '<', '>', '.', ',', '[', ']': fProcTable[I] := SymbolProc; #1..#9, #11, #12, #14..#32: fProcTable[I] := SpaceProc; #39: fProcTable[I] := StringProc; else fProcTable[I] := UnknownProc; end; end; constructor TSynDfmSyn.Create(AOwner: TComponent); begin inherited Create(AOwner); fCommentAttri := TSynHighlighterAttributes.Create(SYNS_AttrComment); fCommentAttri.Style := [fsItalic]; AddAttribute(fCommentAttri); fIdentifierAttri := TSynHighlighterAttributes.Create(SYNS_AttrIdentifier); AddAttribute(fIdentifierAttri); fKeyAttri := TSynHighlighterAttributes.Create(SYNS_AttrKey); 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); SetAttributesOnChange(DefHighlightChange); MakeMethodTables; fDefaultFilter := SYNS_FilterDFM; fRange := rsUnknown; end; procedure TSynDfmSyn.SetLine(NewValue: String; LineNumber: Integer); begin fLine := PChar(NewValue); Run := 0; fLineNumber := LineNumber; Next; end; procedure TSynDfmSyn.AltProc; begin fTokenID := tkIdentifier; repeat Inc(Run); until not (fLine[Run] in ['_', '0'..'9', 'a'..'z', 'A'..'Z']); end; procedure TSynDfmSyn.AsciiCharProc; begin fTokenID := tkString; repeat Inc(Run); until not (fLine[Run] in ['0'..'9']); end; procedure TSynDfmSyn.BraceCloseProc; begin inc(Run); fRange := rsUnknown; fTokenId := tkIdentifier; end; procedure TSynDfmSyn.BraceOpenProc; begin fRange := rsComment; CommentProc; end; procedure TSynDfmSyn.CommentProc; begin fTokenID := tkComment; repeat inc(Run); if fLine[Run] = '}' then begin Inc(Run); fRange := rsUnknown; break; end; until fLine[Run] in [#0, #10, #13]; end; procedure TSynDfmSyn.CRProc; begin fTokenID := tkSpace; Inc(Run); if (fLine[Run] = #10) then Inc(Run); end; procedure TSynDfmSyn.EndProc; begin if (fLine[Run + 1] in ['n', 'N']) and (fLine[Run + 2] in ['d', 'D']) and not (fLine[Run + 3] in ['_', '0'..'9', 'a'..'z', 'A'..'Z']) then begin fTokenID := tkKey; Inc(Run, 3); end else AltProc; end; procedure TSynDfmSyn.IntegerProc; begin fTokenID := tkNumber; repeat inc(Run); until not (fLine[Run] in ['0'..'9', 'A'..'F', 'a'..'f']); end; procedure TSynDfmSyn.LFProc; begin fTokenID := tkSpace; inc(Run); end; procedure TSynDfmSyn.NullProc; begin fTokenID := tkNull; end; procedure TSynDfmSyn.NumberProc; begin fTokenID := tkNumber; repeat Inc(Run); if fLine[Run] = '.' then begin if fLine[Run + 1] <> '.' then Inc(Run); break; end; until not (fLine[Run] in ['0'..'9', 'e', 'E']); end; procedure TSynDfmSyn.ObjectProc; begin if (fLine[Run + 1] in ['b', 'B']) and (fLine[Run + 2] in ['j', 'J']) and (fLine[Run + 3] in ['e', 'E']) and (fLine[Run + 4] in ['c', 'C']) and (fLine[Run + 5] in ['t', 'T']) and not (fLine[Run + 6] in ['_', '0'..'9', 'a'..'z', 'A'..'Z']) then begin fTokenID := tkKey; Inc(Run, 6); end else AltProc; end; procedure TSynDfmSyn.InheritedProc; begin if (fLine[Run + 1] in ['n', 'N']) and (fLine[Run + 2] in ['h', 'H']) and (fLine[Run + 3] in ['e', 'E']) and (fLine[Run + 4] in ['r', 'R']) and (fLine[Run + 5] in ['i', 'I']) and (fLine[Run + 6] in ['t', 'T']) and (fLine[Run + 7] in ['e', 'E']) and (fLine[Run + 8] in ['d', 'D']) and not (fLine[Run + 9] in ['_', '0'..'9', 'a'..'z', 'A'..'Z']) then begin fTokenID := tkKey; Inc(Run, 9); end else if (fLine[Run + 1] in ['n', 'N']) and (fLine[Run + 2] in ['l', 'L']) and (fLine[Run + 3] in ['i', 'I']) and (fLine[Run + 4] in ['n', 'N']) and (fLine[Run + 5] in ['e', 'E']) and not (fLine[Run + 6] in ['_', '0'..'9', 'a'..'z', 'A'..'Z']) then begin fTokenID := tkKey; Inc(Run, 6); end else AltProc; end; procedure TSynDfmSyn.SpaceProc; begin fTokenID := tkSpace; repeat Inc(Run); until (fLine[Run] > #32) or (fLine[Run] in [#0, #10, #13]); end; procedure TSynDfmSyn.StringProc; begin fTokenID := tkString; repeat Inc(Run); if fLine[Run] = '''' then begin Inc(Run); if fLine[Run] <> '''' then break end; until fLine[Run] in [#0, #10, #13]; end; procedure TSynDfmSyn.SymbolProc; begin inc(Run); fTokenID := tkSymbol; end; procedure TSynDfmSyn.UnknownProc; begin {$IFDEF SYN_MBCSSUPPORT} if FLine[Run] in LeadBytes then Inc(Run, 2) else {$ENDIF} inc(Run); fTokenID := tkUnknown; end; procedure TSynDfmSyn.Next; begin fTokenPos := Run; if fRange = rsComment then begin if fLine[Run] = #0 then NullProc else CommentProc; end else fProcTable[fLine[Run]]; end; function TSynDfmSyn.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; SYN_ATTR_SYMBOL: Result := fSymbolAttri; else Result := nil; end; end; function TSynDfmSyn.GetEol: Boolean; begin Result := fTokenId = tkNull; end; function TSynDfmSyn.GetRange: Pointer; begin Result := Pointer(fRange); end; function TSynDfmSyn.GetTokenID: TtkTokenKind; begin Result := fTokenId; end; function TSynDfmSyn.GetToken: String; var Len: LongInt; begin Len := Run - fTokenPos; SetString(Result, (FLine + fTokenPos), Len); end; function TSynDfmSyn.GetTokenAttribute: TSynHighlighterAttributes; begin case fTokenID of tkComment: Result := fCommentAttri; tkIdentifier: Result := fIdentifierAttri; tkKey: Result := fKeyAttri; tkNumber: Result := fNumberAttri; tkSpace: Result := fSpaceAttri; tkString: Result := fStringAttri; tkSymbol: Result := fSymbolAttri; tkUnknown: Result := fIdentifierAttri; else Result := nil; end; end; function TSynDfmSyn.GetTokenKind: integer; begin Result := Ord(fTokenID); end; function TSynDfmSyn.GetTokenPos: Integer; begin Result := fTokenPos; end; procedure TSynDfmSyn.ResetRange; begin fRange := rsUnknown; end; procedure TSynDfmSyn.SetRange(Value: Pointer); begin fRange := TRangeState(Value); end; function TSynDfmSyn.GetIdentChars: TSynIdentChars; begin Result := TSynValidStringChars; end; function TSynDfmSyn.IsFilterStored: Boolean; begin Result := fDefaultFilter <> SYNS_FilterDFM; end; class function TSynDfmSyn.GetLanguageName: string; begin Result := SYNS_LangDfm; end; function TSynDfmSyn.GetSampleSource: string; begin Result := '{ Delphi/C++ Builder Form Definitions }'#13#10 + 'object TestForm: TTestForm'#13#10 + ' Left = 273'#13#10 + ' Top = 103'#13#10 + ' Caption = ''SynEdit sample source'''#13#10 + 'end'; end; { GetSampleSource } {$IFNDEF SYN_CPPB_1} initialization RegisterPlaceableHighlighter(TSynDfmSyn); {$ENDIF} end.