IDE: fix translations for color opts, broken in 900e58ed4f by too early init.

This commit is contained in:
Martin 2025-03-20 21:12:00 +01:00
parent 41ef935d69
commit 83ef9dce86
3 changed files with 34 additions and 3 deletions

View File

@ -6,7 +6,7 @@ unit EditorSyntaxHighlighterDef;
interface
uses
Classes, SysUtils;
Classes, SysUtils, LazMethodList;
type
TLazSyntaxHighlighter =
@ -121,6 +121,10 @@ var
IdeSyntaxHighlighters: TIdeSyntaxHighlighterList;
IdeColorSchemeList: IColorSchemeList;
procedure RegisterOnIdeColorSchemeListCreated(AnHandler: TNotifyEvent);
procedure _IDE_CallOnIdeColorSchemeListCreated;
implementation
function GetSyntaxHighlighterCaption(h: TLazSyntaxHighlighter): string;
@ -133,5 +137,25 @@ begin
Result := IdeSyntaxHighlighters.GetLazSyntaxHighlighterType(IdeSyntaxHighlighters.GetIdForName(s)){%H-};
end;
var
OnIdeColorSchemeListCreated: TMethodList;
procedure RegisterOnIdeColorSchemeListCreated(AnHandler: TNotifyEvent);
begin
if IdeColorSchemeList <> nil then begin
AnHandler(nil);
exit;
end;
if OnIdeColorSchemeListCreated = nil then
OnIdeColorSchemeListCreated := TMethodList.Create;
OnIdeColorSchemeListCreated.Add(TMethod(AnHandler));
end;
procedure _IDE_CallOnIdeColorSchemeListCreated;
begin
OnIdeColorSchemeListCreated.CallNotifyEvents(nil);
FreeAndNil(OnIdeColorSchemeListCreated);
end;
end.

View File

@ -60,6 +60,7 @@ type
TTodoEditorHandler = class
procedure DoEditorCreated(Sender: TObject);
procedure DoColorsChanged(Sender: TObject);
procedure DoRegisterAttribs(Sender: TObject);
end;
var
@ -131,6 +132,11 @@ begin
attr.ApplyTo(CommentAttribNote);
end;
procedure TTodoEditorHandler.DoRegisterAttribs(Sender: TObject);
begin
RegisterAttribs;
end;
{ TSynEditTodoMarkup }
procedure TSynEditTodoMarkup.BeginMarkup;
@ -536,7 +542,7 @@ begin
end;
initialization
RegisterAttribs;
RegisterOnIdeColorSchemeListCreated(@TTodoEditorHandler(nil).DoRegisterAttribs);
finalization
FreeAttribs;
end.

View File

@ -2947,6 +2947,8 @@ begin
FileList.Free;
end;
end;
IdeColorSchemeList := Singleton;
_IDE_CallOnIdeColorSchemeListCreated;
Result := Singleton;
end;
@ -8436,7 +8438,6 @@ end;
initialization
RegisterIDEOptionsGroup(GroupEditor, TEditorOptions);
IdeSyntaxHighlighters := HighlighterList;
IdeColorSchemeList := ColorSchemeFactory;
finalization
IdeColorSchemeList := nil;