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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
unit Package_Usage_Options;
{$mode objfpc}{$H+}
interface
uses
SysUtils,
// LazUtils
LazFileUtils,
// LCL
Forms, Controls, StdCtrls, Dialogs,
// IdeIntf
IDEOptionsIntf, IDEOptEditorIntf, MacroIntf,
// IDE
PathEditorDlg, LazarusIDEStrConsts, IDEProcs, PackageDefs;
type
{ TPackageUsageOptionsFrame }
TPackageUsageOptionsFrame = class(TAbstractIDEOptionsEditor)
AddOptionsGroupBox: TGroupBox;
AddPackageUnitToProjectCheckBox: TCheckBox;
AddPathsGroupBox: TGroupBox;
CustomOptionsLabel: TLabel;
CustomOptionsMemo: TMemo;
IncludePathEdit: TEdit;
IncludePathLabel: TLabel;
LibraryPathEdit: TEdit;
LibraryPathLabel: TLabel;
LinkerOptionsLabel: TLabel;
LinkerOptionsMemo: TMemo;
ObjectPathEdit: TEdit;
ObjectPathLabel: TLabel;
ProjectGroupBox: TGroupBox;
UnitPathEdit: TEdit;
UnitPathLabel: TLabel;
private
UnitPathButton: TPathEditorButton;
IncludePathButton: TPathEditorButton;
ObjectPathButton: TPathEditorButton;
LibraryPathButton: TPathEditorButton;
FLazPackage: TLazPackage;
function PathEditBtnExecuted({%H-}Context: String; var NewPath: String): Boolean;
public
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}
{ TPackageUsageOptionsFrame }
function TPackageUsageOptionsFrame.PathEditBtnExecuted(Context: String; var NewPath: String): Boolean;
var
CurDir: string;
StartPos, OldStartPos: integer;
DlgResult: TModalResult;
begin
// check NewPath
StartPos := 1;
repeat
OldStartPos := StartPos;
CurDir := GetNextDirectoryInSearchPath(NewPath, StartPos);
if CurDir <> '' then
begin
IDEMacros.SubstituteMacros(CurDir);
FLazPackage.LongenFilename(CurDir);
if not DirPathExists(CurDir) then
begin
DlgResult := QuestionDlg(lisEnvOptDlgDirectoryNotFound,
Format(lisDirectoryNotFound, [CurDir]),
mtError, [mrIgnore, mrYes, lisRemoveFromSearchPath, mrCancel], 0);
case DlgResult of
mrIgnore: ;
mrYes:
begin // remove directory from search path
NewPath := copy(NewPath,1,OldStartPos-1) + copy(NewPath,StartPos,length(NewPath));
StartPos := OldStartPos;
end;
else // undo
Exit(False);
end;
end;
end;
until StartPos > length(NewPath);
Result := True;
end;
function TPackageUsageOptionsFrame.GetTitle: string;
begin
Result := lisPckOptsUsage;
end;
procedure TPackageUsageOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
begin
AddPathsGroupBox.Caption := lisPckOptsAddPathsToDependentPackagesProjects;
UnitPathLabel.Caption := lisUnit;
IncludePathLabel.Caption := lisPckOptsInclude;
ObjectPathLabel.Caption := lisPckOptsObject;
LibraryPathLabel.Caption := lisPckOptsLibrary;
AddOptionsGroupBox.Caption := lisPckOptsAddOptionsToDependentPackagesAndProjects;
LinkerOptionsLabel.Caption := lisPckOptsLinker;
CustomOptionsLabel.Caption := lisPckOptsCustom;
UnitPathButton := TPathEditorButton.Create(Self);
with UnitPathButton do
begin
Name := 'UnitPathButton';
Parent := AddPathsGroupBox;
Caption := '...';
AutoSize := False;
Width := Height;
Anchors := [akRight];
AnchorParallel(akRight, 6, AddPathsGroupBox);
AnchorParallel(akTop, 0, UnitPathEdit);
AnchorParallel(akBottom, 0, UnitPathEdit);
AssociatedEdit := UnitPathEdit;
Templates := '$(PkgOutDir)' +
'$(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)';
OnExecuted := @PathEditBtnExecuted;
end;
UnitPathEdit.AnchorToNeighbour(akRight,0,UnitPathButton);
IncludePathButton := TPathEditorButton.Create(Self);
with IncludePathButton do
begin
Name := 'IncludePathButton';
Parent := AddPathsGroupBox;
Caption := '...';
AutoSize := False;
Width := Height;
Anchors := [akRight];
AnchorParallel(akRight, 6, AddPathsGroupBox);
AnchorParallel(akTop, 0, IncludePathEdit);
AnchorParallel(akBottom, 0, IncludePathEdit);
AssociatedEdit := IncludePathEdit;
Templates := 'include';
OnExecuted := @PathEditBtnExecuted;
end;
IncludePathEdit.AnchorToNeighbour(akRight,0,IncludePathButton);
ObjectPathButton := TPathEditorButton.Create(Self);
with ObjectPathButton do
begin
Name := 'ObjectPathButton';
Parent := AddPathsGroupBox;
Caption := '...';
AutoSize := False;
Width := Height;
Anchors := [akRight];
AnchorParallel(akRight, 6, AddPathsGroupBox);
AnchorParallel(akTop, 0, ObjectPathEdit);
AnchorParallel(akBottom, 0, ObjectPathEdit);
AssociatedEdit := ObjectPathEdit;
Templates := 'objects';
OnExecuted := @PathEditBtnExecuted;
end;
ObjectPathEdit.AnchorToNeighbour(akRight,0,ObjectPathButton);
LibraryPathButton := TPathEditorButton.Create(Self);
with LibraryPathButton do
begin
Name := 'LibraryPathButton';
Parent := AddPathsGroupBox;
Caption := '...';
AutoSize := False;
Width := Height;
Anchors := [akRight];
AnchorParallel(akRight, 6, AddPathsGroupBox);
AnchorParallel(akTop, 0, LibraryPathEdit);
AnchorParallel(akBottom, 0, LibraryPathEdit);
AssociatedEdit := LibraryPathEdit;
OnExecuted := @PathEditBtnExecuted;
end;
LibraryPathEdit.AnchorToNeighbour(akRight,0,LibraryPathButton);
ProjectGroupBox.Caption := dlgProject;
AddPackageUnitToProjectCheckBox.Caption := podAddPackageUnitToUsesSection;
end;
procedure TPackageUsageOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
begin
FLazPackage := (AOptions as TPackageIDEOptions).Package;
with FLazPackage.UsageOptions do
begin
SetPathTextAndHint(UnitPath, UnitPathEdit);
SetPathTextAndHint(IncludePath, IncludePathEdit);
SetPathTextAndHint(ObjectPath, ObjectPathEdit);
SetPathTextAndHint(LibraryPath, LibraryPathEdit);
LinkerOptionsMemo.Text := LinkerOptions;
CustomOptionsMemo.Text := CustomOptions;
end;
AddPackageUnitToProjectCheckBox.Checked := FLazPackage.AddToProjectUsesSection;
end;
procedure TPackageUsageOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
var
LazPackage: TLazPackage;
begin
LazPackage := (AOptions as TPackageIDEOptions).Package;
with LazPackage.UsageOptions do
begin
UnitPath := TrimSearchPath(UnitPathEdit.Text, '');
IncludePath := TrimSearchPath(IncludePathEdit.Text, '');
ObjectPath := TrimSearchPath(ObjectPathEdit.Text, '');
LibraryPath := TrimSearchPath(LibraryPathEdit.Text, '');
LinkerOptions := LinkerOptionsMemo.Text;
CustomOptions := CustomOptionsMemo.Text;
end;
LazPackage.AddToProjectUsesSection := AddPackageUnitToProjectCheckBox.Checked;
end;
class function TPackageUsageOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
begin
Result := TPackageIDEOptions;
end;
initialization
RegisterIDEOptionsEditor(GroupPackage, TPackageUsageOptionsFrame, PackageOptionsUsage);
end.
|