lazarus/ide/frames/compiler_path_options.pas
2010-09-26 19:19:56 +00:00

665 lines
20 KiB
ObjectPascal

unit compiler_path_options;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LCLProc, FileUtil, Forms, Controls, Graphics, Dialogs,
Buttons, StdCtrls, LCLType, InterfaceBase, IDEOptionsIntf, Project,
CompilerOptions, LazarusIDEStrConsts, PathEditorDlg, LazConf, IDEProcs,
CheckCompilerOpts, MacroIntf, ShowCompilerOpts, MainIntf,
project_application_options;
type
{ TCompilerPathOptionsFrame }
TCompilerPathOptionsFrame = class(TAbstractIDEOptionsEditor)
DebugPathEdit: TEdit;
DebugPathLabel: TLabel;
IncludeFilesEdit: TEdit;
IncludeFilesLabel: TLabel;
LCLWidgetTypeComboBox: TComboBox;
LCLWidgetTypeLabel: TLabel;
LibrariesEdit: TEdit;
LibrariesLabel: TLabel;
OtherSourcesEdit: TEdit;
OtherSourcesLabel: TLabel;
OtherUnitsEdit: TEdit;
OtherUnitsLabel: TLabel;
ProjTargetFileEdit: TEdit;
ProjTargetFileLabel: TLabel;
UnitOutputDirEdit: TEdit;
UnitOutputDirLabel: TLabel;
procedure ProjTargetFileEditChange(Sender: TObject);
private
FCompilerOpts: TBaseCompilerOptions;
OtherUnitsPathEditBtn: TPathEditorButton;
IncludeFilesPathEditBtn: TPathEditorButton;
OtherSourcesPathEditBtn: TPathEditorButton;
LibrariesPathEditBtn: TPathEditorButton;
btnUnitOutputDir: TButton;
DebugPathEditBtn: TPathEditorButton;
btnShowOptions: TBitBtn;
btnCheck: TBitBtn;
btnLoadSave: TBitBtn;
chkUseAsDefault: TCheckBox;
function CheckSearchPath(const Context, ExpandedPath: string;
Level: TCheckCompileOptionsMsgLvl): boolean;
procedure FileBrowseBtnClick(Sender: TObject);
procedure PathEditBtnClick(Sender: TObject);
procedure PathEditBtnExecuted(Sender: TObject);
procedure DoShowOptions(Sender: TObject);
procedure DoCheck(Sender: TObject);
procedure DoLoadSave(Sender: TObject);
protected
procedure DoSaveSettings(AOptions: TAbstractIDEOptions);
function GetTargetFilename: string;
procedure UpdateTargetFileLabel;
public
constructor Create(TheOwner: TComponent); override;
function Check: boolean; override;
function GetTitle: string; override;
procedure Setup(ADialog: TAbstractOptionsEditorDialog); override;
procedure ReadSettings(AOptions: TAbstractIDEOptions); override;
procedure WriteSettings(AOptions: TAbstractIDEOptions); override;
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
end;
implementation
{$R *.lfm}
{ TCompilerPathOptionsFrame }
function TCompilerPathOptionsFrame.Check: boolean;
function CheckPutSearchPath(
const Context, OldExpandedPath, NewExpandedPath: string): boolean;
var
Level: TCheckCompileOptionsMsgLvl;
begin
if OldExpandedPath <> NewExpandedPath then
Level := ccomlHints
else
Level := ccomlErrors;
Result := CheckSearchPath(Context, NewExpandedPath, Level);
end;
var
OldIncludePath: String;
OldLibraryPath: String;
OldUnitPath: String;
OldSrcPath: String;
OldDebugPath: String;
begin
OldIncludePath := FCompilerOpts.GetIncludePath(False);
OldLibraryPath := FCompilerOpts.GetLibraryPath(False);
OldUnitPath := FCompilerOpts.GetUnitPath(False);
OldSrcPath := FCompilerOpts.GetSrcPath(False);
OldDebugPath := FCompilerOpts.GetDebugPath(False);
try
FCompilerOpts.IncludePath := IncludeFilesEdit.Text;
FCompilerOpts.Libraries := LibrariesEdit.Text;
FCompilerOpts.OtherUnitFiles := OtherUnitsEdit.Text;
FCompilerOpts.SrcPath := OtherSourcesEdit.Text;
FCompilerOpts.DebugPath := DebugPathEdit.Text;
if not CheckPutSearchPath('include search path', OldIncludePath, FCompilerOpts.GetIncludePath(False)) then
Exit(False);
if not CheckPutSearchPath('library search path', OldLibraryPath, FCompilerOpts.GetLibraryPath(False)) then
Exit(False);
if not CheckPutSearchPath('unit search path', OldUnitPath, FCompilerOpts.GetUnitPath(False)) then
Exit(False);
if not CheckPutSearchPath('source search path', OldSrcPath, FCompilerOpts.GetSrcPath(False)) then
Exit(False);
if not CheckPutSearchPath('debugger search path', OldDebugPath, FCompilerOpts.GetDebugPath(False)) then
Exit(False);
finally
FCompilerOpts.IncludePath := OldIncludePath;
FCompilerOpts.Libraries := OldLibraryPath;
FCompilerOpts.OtherUnitFiles := OldUnitPath;
FCompilerOpts.SrcPath := OldSrcPath;
FCompilerOpts.DebugPath := OldDebugPath;
end;
Result := True;
end;
function TCompilerPathOptionsFrame.GetTitle: string;
begin
Result := dlgSearchPaths;
end;
procedure TCompilerPathOptionsFrame.DoShowOptions(Sender: TObject);
var
Options: TBaseCompilerOptions;
begin
Options := TBaseCompilerOptionsClass(FCompilerOpts.ClassType).Create(FCompilerOpts.Owner);
try
DoSaveSettings(Options);
Options.TargetFilename:=GetTargetFilename;
ShowCompilerOptionsDialog(Self, Options);
finally
Options.Free;
end;
end;
procedure TCompilerPathOptionsFrame.DoCheck(Sender: TObject);
var
Options: TBaseCompilerOptions;
begin
Options := TBaseCompilerOptionsClass(FCompilerOpts.ClassType).Create(FCompilerOpts.Owner);
try
DoSaveSettings(Options);
if Assigned(TestCompilerOptions) then
begin
btnCheck.Enabled := False;
try
TestCompilerOptions(Options);
finally
btnCheck.Enabled := True;
end;
end;
finally
Options.Free;
end;
end;
procedure TCompilerPathOptionsFrame.DoLoadSave(Sender: TObject);
var
Options: TBaseCompilerOptions;
ImportExportResult: TImportExportOptionsResult;
begin
Options := TBaseCompilerOptionsClass(FCompilerOpts.ClassType).Create(FCompilerOpts.Owner);
try
DoSaveSettings(Options);
if (MainIDEInterface.DoImExportCompilerOptions(Options, ImportExportResult) = mrOK) and
(ImportExportResult = ieorImport) then
begin
if Assigned(OnLoadIDEOptions) then
OnLoadIDEOptions(Self, Options);
end;
finally
Options.Free;
end;
end;
procedure TCompilerPathOptionsFrame.DoSaveSettings(AOptions: TAbstractIDEOptions);
begin
if Assigned(OnSaveIDEOptions) then
OnSaveIDEOptions(Self, AOptions);
end;
function TCompilerPathOptionsFrame.GetTargetFilename: string;
begin
if FCompilerOpts is TProjectCompilerOptions then
Result:=ProjTargetFileEdit.Text;
end;
procedure TCompilerPathOptionsFrame.UpdateTargetFileLabel;
begin
if ProjTargetFileEdit.Text<>'' then
ProjTargetFileLabel.Caption:=dlgPOTargetFileName
else
ProjTargetFileLabel.Caption:=lisTargetFileNameEmptyUseUnitOutputDirectory;
end;
constructor TCompilerPathOptionsFrame.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
FCompilerOpts := nil;
end;
procedure TCompilerPathOptionsFrame.ProjTargetFileEditChange(Sender: TObject);
begin
UpdateTargetFileLabel;
end;
function TCompilerPathOptionsFrame.CheckSearchPath(const Context, ExpandedPath: string;
Level: TCheckCompileOptionsMsgLvl): boolean;
var
CurPath: string;
p: integer;
HasChars: TCCOSpecialChars;
ErrorMsg: string;
begin
Result := False;
// check for *
if Ord(Level) <= Ord(ccomlHints) then
begin
if System.Pos('*', ExpandedPath) > 0 then
begin
if MessageDlg('Hint', 'The ' + Context +
' contains a star * character.'#13 +
'Lazarus uses this as normal character and does not expand this as file mask.',
mtWarning, [mbOK, mbCancel], 0) <> mrOk then
exit;
end;
end;
// check for non existing directories
if Ord(Level) <= Ord(ccomlWarning) then
begin
p := 1;
repeat
//DebugLn(['CheckSearchPath ',ExpandedPath,' ',p,' ',length(ExpandedPath)]);
CurPath := GetNextDirectoryInSearchPath(ExpandedPath, p);
if (CurPath <> '') and (not IDEMacros.StrHasMacros(CurPath)) and
(FilenameIsAbsolute(CurPath)) then
begin
if not DirPathExistsCached(CurPath) then
begin
if MessageDlg('Warning', 'The ' + Context +
' contains a not existing directory:'#13 + CurPath,
mtWarning, [mbIgnore, mbCancel], 0) <> mrIgnore then
Exit;
end;
end;
until p > length(ExpandedPath);
end;
// check for special characters
if (not IDEMacros.StrHasMacros(CurPath)) then
begin
FindSpecialCharsInPath(ExpandedPath, HasChars);
if Ord(Level) <= Ord(ccomlWarning) then
begin
if Ord(Level) >= Ord(ccomlErrors) then
ErrorMsg := SpecialCharsToStr(HasChars * [ccoscSpecialChars, ccoscNewLine])
else
ErrorMsg := SpecialCharsToStr(HasChars);
if ErrorMsg <> '' then
begin
if MessageDlg('Warning', Context + #13 + ErrorMsg, mtWarning,
[mbOK, mbCancel], 0) <> mrOk then
exit;
end;
end;
end;
Result := True;
end;
procedure TCompilerPathOptionsFrame.PathEditBtnClick(Sender: TObject);
var
AButton: TPathEditorButton;
OldPath, Templates: string;
begin
if Sender is TPathEditorButton then
begin
AButton := TPathEditorButton(Sender);
if AButton = OtherUnitsPathEditBtn then
begin
OldPath := OtherUnitsEdit.Text;
Templates := SetDirSeparators(
'$(LazarusDir)/lcl/units/$(TargetCPU)-$(TargetOS)' +
';$(LazarusDir)/lcl/units/$(TargetCPU)-$(TargetOS)/$(LCLWidgetType)' +
';$(LazarusDir)/components/codetools/units/$(TargetCPU)-$(TargetOS)' +
';$(LazarusDir)/components/custom' +
';$(LazarusDir)/packager/units/$(TargetCPU)-$(TargetOS)');
end
else
if AButton = IncludeFilesPathEditBtn then
begin
OldPath := IncludeFilesEdit.Text;
Templates := 'include' + ';inc';
end
else
if AButton = OtherSourcesPathEditBtn then
begin
OldPath := OtherSourcesEdit.Text;
Templates := SetDirSeparators('$(LazarusDir)/lcl' +
';$(LazarusDir)/lcl/interfaces/$(LCLWidgetType)' +
';$(LazarusDir)/components/synedit' + ';$(LazarusDir)/components/codetools');
end
else
if AButton = LibrariesPathEditBtn then
begin
OldPath := LibrariesEdit.Text;
Templates := SetDirSeparators('/usr/X11R6/lib;/sw/lib');
end
else
if AButton = DebugPathEditBtn then
begin
OldPath := DebugPathEdit.Text;
Templates := SetDirSeparators('$(LazarusDir)/lcl/include' +
';$(LazarusDir)/lcl/interfaces/$(LCLWidgetType)' +
';$(LazarusDir)/include');
end
else
Exit;
AButton.CurrentPathEditor.BaseDirectory := FCompilerOpts.BaseDirectory;
AButton.CurrentPathEditor.Path := OldPath;
AButton.CurrentPathEditor.Templates := SetDirSeparators(Templates);
end;
end;
procedure TCompilerPathOptionsFrame.PathEditBtnExecuted(Sender: TObject);
function CheckPath(const Context, NewPath: string): boolean;
var
ExpandedPath: string;
BaseDir: string;
begin
BaseDir := FCompilerOpts.BaseDirectory;
ExpandedPath := TrimSearchPath(NewPath, BaseDir);
Result := CheckSearchPath(Context, ExpandedPath, ccomlHints);
end;
var
AButton: TPathEditorButton;
NewPath: string;
begin
if Sender is TPathEditorButton then
begin
AButton := TPathEditorButton(Sender);
if AButton.CurrentPathEditor.ModalResult <> mrOk then
Exit;
NewPath := AButton.CurrentPathEditor.Path;
NewPath := FCompilerOpts.ShortenPath(NewPath, False);
if AButton = OtherUnitsPathEditBtn then
begin
if CheckPath(OtherUnitsLabel.Caption, NewPath) then
OtherUnitsEdit.Text := NewPath;
end
else
if AButton = IncludeFilesPathEditBtn then
begin
if CheckPath(IncludeFilesLabel.Caption, NewPath) then
IncludeFilesEdit.Text := NewPath;
end
else
if AButton = OtherSourcesPathEditBtn then
begin
if CheckPath(OtherSourcesLabel.Caption, NewPath) then
OtherSourcesEdit.Text := NewPath;
end
else
if AButton = LibrariesPathEditBtn then
begin
if CheckPath(LibrariesLabel.Caption, NewPath) then
LibrariesEdit.Text := NewPath;
end
else
if AButton = DebugPathEditBtn then
begin
if CheckPath(DebugPathLabel.Caption, NewPath) then
DebugPathEdit.Text := NewPath;
end;
end;
end;
procedure TCompilerPathOptionsFrame.FileBrowseBtnClick(Sender: TObject);
var
OpenDialog: TOpenDialog;
DefaultFilename: string;
NewFilename: string;
begin
OpenDialog := TSelectDirectoryDialog.Create(Self);
try
DefaultFilename := '';
if Sender = btnUnitOutputDir then
begin
OpenDialog.Title := lisUnitOutputDirectory;
OpenDialog.Options := OpenDialog.Options + [ofPathMustExist];
end
else
Exit;
OpenDialog.Filename := ExtractFilename(DefaultFilename);
if DefaultFilename <> '' then
OpenDialog.InitialDir := ExtractFilePath(DefaultFilename)
else
OpenDialog.InitialDir := FCompilerOpts.BaseDirectory;
if OpenDialog.Execute then
begin
NewFilename := TrimFilename(OpenDialog.Filename);
NewFilename := FCompilerOpts.ShortenPath(NewFilename, False);
if Sender = btnUnitOutputDir then
UnitOutputDirEdit.Text := OpenDialog.Filename;
end;
finally
OpenDialog.Free;
end;
end;
procedure TCompilerPathOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
function CreateButton(ACaption: String; AKind: TBitBtnKind = bkCustom): TBitBtn;
begin
Result := ADialog.AddButton;
Result.Kind := AKind;
Result.Caption := ACaption;
end;
var
LCLInterface: TLCLPlatform;
s: string;
begin
ProjTargetFileEdit.Text:='';
OtherUnitsLabel.Caption := dlgOtherUnitFiles;
OtherUnitsPathEditBtn := TPathEditorButton.Create(Self);
with OtherUnitsPathEditBtn do
begin
Name := 'OtherUnitsPathEditBtn';
Caption := '...';
Anchors := [akRight, akTop, akBottom];
AnchorParallel(akTop, 0, OtherUnitsEdit);
AnchorParallel(akBottom, 0, OtherUnitsEdit);
AnchorParallel(akRight, 0, Self);
AutoSize := True;
OnClick := @PathEditBtnClick;
OnExecuted := @PathEditBtnExecuted;
Parent := Self;
end;
OtherUnitsEdit.AnchorToNeighbour(akRight, 0, OtherUnitsPathEditBtn);
{------------------------------------------------------------}
IncludeFilesLabel.Caption := dlgCOIncFiles;
IncludeFilesPathEditBtn := TPathEditorButton.Create(Self);
with IncludeFilesPathEditBtn do
begin
Name := 'IncludeFilesPathEditBtn';
Anchors := [akRight, akTop, akBottom];
AnchorParallel(akTop, 0, IncludeFilesEdit);
AnchorParallel(akBottom, 0, IncludeFilesEdit);
AnchorParallel(akRight, 0, Self);
AutoSize := True;
Caption := '...';
OnClick := @PathEditBtnClick;
OnExecuted := @PathEditBtnExecuted;
Parent := Self;
end;
IncludeFilesEdit.AnchorToNeighbour(akRight, 0, IncludeFilesPathEditBtn);
{------------------------------------------------------------}
OtherSourcesLabel.Caption := dlgCOSources;
OtherSourcesPathEditBtn := TPathEditorButton.Create(Self);
with OtherSourcesPathEditBtn do
begin
Name := 'OtherSourcesPathEditBtn';
Anchors := [akRight, akTop, akBottom];
AnchorParallel(akTop, 0, OtherSourcesEdit);
AnchorParallel(akBottom, 0, OtherSourcesEdit);
AnchorParallel(akRight, 0, Self);
AutoSize := True;
Caption := '...';
OnClick := @PathEditBtnClick;
OnExecuted := @PathEditBtnExecuted;
Parent := Self;
end;
OtherSourcesEdit.AnchorToNeighbour(akRight, 0, OtherSourcesPathEditBtn);
{------------------------------------------------------------}
LibrariesLabel.Caption := dlgCOLibraries;
LibrariesPathEditBtn := TPathEditorButton.Create(Self);
with LibrariesPathEditBtn do
begin
Name := 'LibrariesPathEditBtn';
Anchors := [akRight, akTop, akBottom];
AnchorParallel(akTop, 0, LibrariesEdit);
AnchorParallel(akBottom, 0, LibrariesEdit);
AnchorParallel(akRight, 0, Self);
AutoSize := True;
Caption := '...';
OnClick := @PathEditBtnClick;
OnExecuted := @PathEditBtnExecuted;
Parent := Self;
end;
LibrariesEdit.AnchorToNeighbour(akRight, 0, LibrariesPathEditBtn);
{------------------------------------------------------------}
UnitOutputDirLabel.Caption := dlgUnitOutp;
btnUnitOutputDir := TButton.Create(Self);
with btnUnitOutputDir do
begin
Name := 'btnUnitOutputDir';
Anchors := [akRight, akTop, akBottom];
AnchorParallel(akTop, 0, UnitOutputDirEdit);
AnchorParallel(akBottom, 0, UnitOutputDirEdit);
AnchorParallel(akRight, 0, Self);
AutoSize := True;
Caption := '...';
OnClick := @FileBrowseBtnClick;
Parent := Self;
end;
UnitOutputDirEdit.AnchorToNeighbour(akRight, 0, btnUnitOutputDir);
{------------------------------------------------------------}
DebugPathLabel.Caption := dlgCODebugPath;
DebugPathEditBtn := TPathEditorButton.Create(Self);
with DebugPathEditBtn do
begin
Name := 'DebugPathEditBtn';
Anchors := [akRight, akTop, akBottom];
AnchorParallel(akTop, 0, DebugPathEdit);
AnchorParallel(akBottom, 0, DebugPathEdit);
AnchorParallel(akRight, 0, Self);
AutoSize := True;
Caption := '...';
OnClick := @PathEditBtnClick;
OnExecuted := @PathEditBtnExecuted;
Parent := Self;
end;
DebugPathEdit.AnchorToNeighbour(akRight, 0, DebugPathEditBtn);
{------------------------------------------------------------}
LCLWidgetTypeLabel.Caption := Format(lisCOVarious, [lisLCLWidgetType]);
with LCLWidgetTypeComboBox do
begin
with Items do
begin
BeginUpdate;
s := LCLPlatformDisplayNames[GetDefaultLCLWidgetType];
Add(Format(lisCOdefault, [s]));
for LCLInterface := Low(TLCLPlatform) to High(TLCLPlatform) do
begin
Items.Add(LCLPlatformDisplayNames[LCLInterface]);
end;
EndUpdate;
end;
ItemIndex := 1;
Constraints.MinWidth := 150;
end;
// register special buttons in the dialog itself
btnShowOptions := CreateButton(dlgCOShowOptions);
btnShowOptions.LoadGlyphFromLazarusResource('menu_compiler_options');
btnShowOptions.OnClick := @DoShowOptions;
btnCheck := CreateButton(lisCompTest, bkYes);
btnCheck.ModalResult := mrNone;
btnCheck.OnClick := @DoCheck;
btnLoadSave := CreateButton('...');
btnLoadSave.OnClick := @DoLoadSave;
btnLoadSave.Hint := dlgCOLoadSave;
btnLoadSave.LoadGlyphFromStock(idButtonSave);
if btnLoadSave.Glyph.Empty then
btnLoadSave.LoadGlyphFromLazarusResource('laz_save');
chkUseAsDefault := TCheckBox(ADialog.AddControl(TCheckBox));
chkUseAsDefault.Caption := dlgCOUseAsDefault;
chkUseAsDefault.ShowHint := True;
chkUseAsDefault.Hint := lisWhenEnabledTheCurrentOptionsAreSavedToTheTemplateW;
end;
procedure TCompilerPathOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
var
LCLPlatform: TLCLPlatform;
begin
if FCompilerOpts = nil then
FCompilerOpts := AOptions as TBaseCompilerOptions;
if AOptions is TProjectCompilerOptions then
begin
ProjTargetFileEdit.Visible:=true;
ProjTargetFileLabel.Visible:=true;
ProjTargetFileEdit.Text:=TProjectCompilerOptions(AOptions).TargetFilename;
UpdateTargetFileLabel;
end else begin
ProjTargetFileEdit.Visible:=false;
ProjTargetFileLabel.Visible:=false;
end;
with AOptions as TBaseCompilerOptions do
begin
OtherUnitsEdit.Text := OtherUnitFiles;
IncludeFilesEdit.Text := IncludePath;
LibrariesEdit.Text := Libraries;
OtherSourcesEdit.Text := SrcPath;
UnitOutputDirEdit.Text := UnitOutputDirectory;
DebugPathEdit.Text := DebugPath;
LCLPlatform := DirNameToLCLPlatform(LCLWidgetType);
if CompareText(LCLWidgetType, LCLPlatformDirNames[LCLPlatform]) = 0 then
LCLWidgetTypeComboBox.ItemIndex := Ord(LCLPlatform) + 1
else
LCLWidgetTypeComboBox.ItemIndex := 0;
chkUseAsDefault.Visible := CanBeDefaulForProject;
end;
end;
procedure TCompilerPathOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
var
i: integer;
begin
if AOptions is TProjectCompilerOptions then
TProjectCompilerOptions(AOptions).TargetFilename:=ProjTargetFileEdit.Text;
with AOptions as TBaseCompilerOptions do
begin
OtherUnitFiles := OtherUnitsEdit.Text;
IncludePath := IncludeFilesEdit.Text;
Libraries := LibrariesEdit.Text;
SrcPath := OtherSourcesEdit.Text;
UnitOutputDirectory := UnitOutputDirEdit.Text;
DebugPath := DebugPathEdit.Text;
// ToDo: will be replaced by buildmodes
i := LCLWidgetTypeComboBox.ItemIndex;
if i <= 0 then
LCLWidgetType := ''
else
LCLWidgetType := LCLPlatformDirNames[TLCLPlatform(i - 1)];
UseAsDefault := chkUseAsDefault.Checked;
end;
end;
class function TCompilerPathOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
begin
Result := TBaseCompilerOptions;
end;
initialization
RegisterIDEOptionsEditor(GroupCompiler, TCompilerPathOptionsFrame,
CompilerOptionsSearchPaths);
end.