1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
unit compiler_messages_options;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
// LCL
StdCtrls, CheckLst, Dialogs,
// LazUtils
FileUtil, LazFileCache, LazLoggerBase,
// LazControls
ListFilterEdit,
// CodeTools
CodeToolsFPCMsgs,
// IdeIntf
IDEOptionsIntf, IDEOptEditorIntf, IDEExternToolIntf, CompOptsIntf, IDEImagesIntf,
IDEDialogs,
// IDE
CompilerOptions, LazarusIDEStrConsts, etFPCMsgParser;
type
{ TCompilerMessagesOptionsFrame }
TCompilerMessagesOptionsFrame = class(TAbstractIDEOptionsEditor)
chklistCompMsg: TCheckListBox;
editMsgFilter: TListFilterEdit;
grpCompilerMessages: TGroupBox;
lblFilter: TLabel;
MsgFileBrowseButton: TButton;
MsgFileEdit: TEdit;
UseMsgFileCheckBox: TCheckBox;
procedure chklistCompMsgItemClick(Sender: TObject; Index: integer);
function CheckItem(Item: TObject): Boolean;
procedure MsgFileBrowseButtonClick(Sender: TObject);
procedure UseMsgFileCheckBoxChange(Sender: TObject);
private
TempMessages: TCompilerMsgIDFlags;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
function GetTitle: String; override;
procedure Setup({%H-}ADialog: TAbstractOptionsEditorDialog); override;
procedure ReadSettings(AOptions: TAbstractIDEOptions); override;
procedure WriteSettings(AOptions: TAbstractIDEOptions); override;
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
end;
implementation
{$R *.lfm}
{ TCompilerMessagesOptionsFrame }
procedure TCompilerMessagesOptionsFrame.chklistCompMsgItemClick(Sender: TObject; Index: integer);
var
MsgId: Integer;
begin
if (Index < 0) or (Index >= chklistCompMsg.Items.Count) then exit;
MsgId:=Integer({%H-}PtrUInt(chklistCompMsg.Items.Objects[Index]));
if MsgId<=0 then exit;
if chklistCompMsg.Checked[Index] then begin
// show message, this is the default
TempMessages[MsgId]:=cfvNone
end else
TempMessages[MsgId]:=cfvHide;
end;
function TCompilerMessagesOptionsFrame.CheckItem(Item: TObject): Boolean;
var
MsgId: Integer;
begin
Result:=true;
if TempMessages=nil then exit;
MsgId:=Integer({%H-}PtrUInt(Pointer(Item)));
if MsgId<=0 then exit;
Result:=TempMessages[MsgId]<>cfvHide;
end;
procedure TCompilerMessagesOptionsFrame.MsgFileBrowseButtonClick(Sender: TObject
);
var
OpenDialog: TOpenDialog;
begin
OpenDialog:=TOpenDialog.Create(nil);
try
InitIDEFileDialog(OpenDialog);
OpenDialog.Title:=lisChooseAnFPCMessageFile;
OpenDialog.Options:=OpenDialog.Options+[ofFileMustExist];
OpenDialog.Filter:=dlgFilterFPCMessageFile+' (*.msg)|*.msg|'+dlgFilterAll+'|'+
GetAllFilesMask;
if OpenDialog.Execute then
MsgFileEdit.Text:=OpenDialog.FileName;
finally
OpenDialog.Free;
end;
end;
procedure TCompilerMessagesOptionsFrame.UseMsgFileCheckBoxChange(Sender: TObject);
begin
MsgFileEdit.Enabled:=UseMsgFileCheckBox.Checked;
MsgFileBrowseButton.Enabled:=UseMsgFileCheckBox.Checked;
end;
constructor TCompilerMessagesOptionsFrame.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
TempMessages:=TCompilerMsgIDFlags.Create;
UseMsgFileCheckBox.Visible:=false;
MsgFileEdit.Visible:=false;
MsgFileBrowseButton.Visible:=false;
end;
destructor TCompilerMessagesOptionsFrame.Destroy;
begin
FreeAndNil(TempMessages);
inherited Destroy;
end;
function TCompilerMessagesOptionsFrame.GetTitle: String;
begin
Result:=dlgCOCfgCmpMessages;
end;
procedure TCompilerMessagesOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
begin
grpCompilerMessages.Caption:=dlgCompilerMessage;
lblFilter.Caption:=lisFilter;
end;
procedure TCompilerMessagesOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
var
topidx: Integer;
CompOpts: TBaseCompilerOptions;
FPCMsgFile: TFPCMsgFilePoolItem;
i: Integer;
Item: TFPCMsgItem;
Urgency: TMessageLineUrgency;
s: String;
begin
CompOpts:=AOptions as TBaseCompilerOptions;
topidx := chklistCompMsg.TopIndex;
TempMessages.Assign(CompOpts.MessageFlags);
editMsgFilter.Items.Clear;
FPCMsgFile:=FPCMsgFilePool.LoadCurrentEnglishFile(true,nil);
if FPCMsgFile<>nil then begin
try
for i:=0 to FPCMsgFile.MsgFile.Count-1 do begin
Item:=FPCMsgFile.MsgFile[i];
if Item.ID<=0 then continue;
Urgency:=FPCMsgToMsgUrgency(Item);
case Urgency of
mluHint: s:='Hint';
mluNote: s:='Note';
mluWarning: s:='Warning';
else continue;
end;
s+=': '+Item.Pattern;
editMsgFilter.Items.AddObject(s,TObject({%H-}Pointer(PtrUInt(Item.ID))));
end;
finally
FPCMsgFilePool.UnloadFile(FPCMsgFile);
end;
end;
editMsgFilter.InvalidateFilter;
chkListCompMsg.TopIndex := topidx;
end;
procedure TCompilerMessagesOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
begin
with AOptions as TBaseCompilerOptions do
begin
MessageFlags.Assign(TempMessages);
end;
end;
class function TCompilerMessagesOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
begin
Result:=TBaseCompilerOptions;
end;
initialization
RegisterIDEOptionsEditor(GroupCompiler, TCompilerMessagesOptionsFrame, CompilerOptionsMessages);
RegisterIDEOptionsEditor(GroupPkgCompiler, TCompilerMessagesOptionsFrame, CompilerOptionsMessages);
end.
|