add a c++ highlighter

This commit is contained in:
Basile Burg 2018-07-11 07:22:18 +02:00
parent be41ff25e5
commit dac5f31ecf
3 changed files with 51 additions and 11 deletions

View File

@ -276,10 +276,15 @@ type
function commonFolder(const files: TStringList): string;
(**
* Returns true if ext matches a file extension whose type is highlightable.
* Returns true if ext matches a file extension whose type is highlightable (D)
*)
function hasDlangSyntax(const ext: string): boolean;
(**
* Returns true if ext matches a file extension whose type is highlightable (C/C++)
*)
function hasCppSyntax(const ext: string): boolean;
(**
* Returns true if ext matches a file extension whose type can be passed as source.
*)
@ -1237,6 +1242,13 @@ begin
end;
end;
function hasCppSyntax(const ext: string): boolean;
begin
result := false;
case ext of
'.c', '.h', '.cc', '.cpp', '.hpp': result := true;
end;
end;
function isDlangCompilable(const ext: string): boolean;
begin

View File

@ -689,6 +689,16 @@ begin
if not fResetFontSize then
anEditor.Font.Size := savedSize;
anEditor.CppHighlighter.AsmAttri := anEditor.D2Highlighter.inlineAsm;
anEditor.CppHighlighter.CommentAttri := anEditor.D2Highlighter.comments;
anEditor.CppHighlighter.DirecAttri := anEditor.D2Highlighter.ddoc;
anEditor.CppHighlighter.IdentifierAttri := anEditor.D2Highlighter.identifiers;
anEditor.CppHighlighter.KeyAttri := anEditor.D2Highlighter.keywords;
anEditor.CppHighlighter.SpaceAttri := anEditor.D2Highlighter.whites;
anEditor.CppHighlighter.StringAttri := anEditor.D2Highlighter.strings;
anEditor.CppHighlighter.SymbolAttri := anEditor.D2Highlighter.symbols;
anEditor.CppHighlighter.NumberAttri := anEditor.D2Highlighter.numbers;
anEditor.completionMenu.TheForm.Font.Assign(font);
anEditor.autoCloseCurlyBrace := fAutoCloseCurlyBrace;
anEditor.autoClosedPairs := fAutoClosedPairs;

View File

@ -9,7 +9,7 @@ uses
SynEdit, SynPluginSyncroEdit, SynCompletion, SynEditKeyCmds, LazSynEditText,
SynHighlighterLFM, SynEditHighlighter, SynEditMouseCmds, SynEditFoldedView,
SynEditMarks, SynEditTypes, SynHighlighterJScript, SynBeautifier, dialogs,
md5, Spin, LCLIntf, LazFileUtils, LMessages,
md5, Spin, LCLIntf, LazFileUtils, LMessages, SynHighlighterCpp,
//SynEditMarkupFoldColoring,
Clipbrd, fpjson, jsonparser, LazUTF8, LazUTF8Classes, Buttons, StdCtrls,
ce_common, ce_writableComponent, ce_d2syn, ce_txtsyn, ce_dialogs, ce_dastworx,
@ -157,6 +157,7 @@ type
fMemo: TSynEdit;
fD2Hl: TSynD2Syn;
fTxtHl: TSynTxtSyn;
fCppHl: TSynCppSyn;
fSource: TCESynMemo;
procedure updateFromSource;
protected
@ -180,7 +181,6 @@ type
fFileDate: double;
fCacheLoaded: boolean;
fIsDSource: boolean;
fIsTxtFile: boolean;
fFocusForInput: boolean;
fIdentifier: string;
fTempFileName: string;
@ -203,6 +203,7 @@ type
fCompletion: TSynCompletion;
fD2Highlighter: TSynD2Syn;
fTxtHighlighter: TSynTxtSyn;
fCppHighlighter: TSynCppSyn;
fImages: TImageList;
fMatchSelectionOpts: TSynSearchOptions;
fMatchIdentOpts: TSynSearchOptions;
@ -377,6 +378,7 @@ type
property MouseBytePosition: Integer read getMouseBytePosition;
property D2Highlighter: TSynD2Syn read fD2Highlighter;
property TxtHighlighter: TSynTxtSyn read fTxtHighlighter;
property CppHighlighter: TSynCppSyn read fCppHighlighter;
property defaultFontSize: Integer read fDefaultFontSize write setDefaultFontSize;
property ddocDelay: Integer read fDDocDelay write setDDocDelay;
property autoDotDelay: Integer read fAutoDotDelay write setAutoDotDelay;
@ -864,7 +866,8 @@ begin
fMemo.Options:=fMemo.Options+[eoNoCaret];
fD2Hl:= TSynD2Syn.create(self);
fTxtHl:= TSynTxtSyn.Create(self);
fTxtHl:= TSynTxtSyn.create(self);
fCppHl:= TSynCppSyn.create(self);
fSource:= editor;
updateFromSource();
end;
@ -883,10 +886,13 @@ begin
begin
fD2Hl.Assign(fSource.Highlighter);
fTxtHl.Assign(fSource.Highlighter);
fCppHl.Assign(fSource.Highlighter);
end;
if fSource.Highlighter is TSynD2Syn then
fMemo.Highlighter := fD2Hl
else
else if fSource.Highlighter is TSynCppSyn then
fMemo.Highlighter := fCppHl
else if fSource.Highlighter is TSynD2Syn then
fMemo.Highlighter := fTxtHl;
end;
end;
@ -1009,6 +1015,7 @@ begin
fD2Highlighter := TSynD2Syn.create(self);
fTxtHighlighter := TSynTxtSyn.Create(self);
fCppHighlighter := TSynCppSyn.Create(self);
Highlighter := fD2Highlighter;
fTempFileName := GetTempDir(false) + 'temp_' + uniqueObjStr(self) + '.d';
@ -3073,7 +3080,6 @@ procedure TCESynMemo.SetHighlighter(const Value: TSynCustomHighlighter);
begin
inherited;
fIsDSource := Highlighter = fD2Highlighter;
fIsTxtFile := Highlighter = fTxtHighlighter;
end;
procedure TCESynMemo.highlightCurrentIdentifier;
@ -3118,12 +3124,19 @@ end;
procedure TCESynMemo.loadFromFile(const fname: string);
var
ext: string;
e: string;
c: boolean;
begin
ext := fname.extractFileExt;
fIsDsource := hasDlangSyntax(ext);
e := fname.extractFileExt;
fIsDsource := hasDlangSyntax(e);
c := hasCppSyntax(e);
if not fIsDsource then
Highlighter := TxtSyn;
begin
if c then
Highlighter := CppHighlighter
else
Highlighter := TxtSyn;
end;
Lines.LoadFromFile(fname);
fFilename := fname;
FileAge(fFilename, fFileDate);
@ -3158,7 +3171,12 @@ begin
if fIsDsource then
Highlighter := fD2Highlighter
else if not isProjectDescription then
Highlighter := TxtHighlighter;
begin
if hasCppSyntax(ext) then
Highlighter := CppHighlighter
else
Highlighter := TxtHighlighter;
end;
FileAge(fFilename, fFileDate);
fModified := false;
if fFilename <> fTempFileName then