mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 10:57:55 +02:00
IDE, Project: refactored unit lists for units with specific flags.
This commit is contained in:
parent
5dc0aebd74
commit
337d747d4d
@ -16,7 +16,7 @@ unit ProjectIntf;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, Contnrs, System.UITypes,
|
Classes, SysUtils, fgl, Contnrs, System.UITypes,
|
||||||
// LazUtils
|
// LazUtils
|
||||||
FileUtil, LazFileUtils, LazFileCache, LazMethodList, AvgLvlTree,
|
FileUtil, LazFileUtils, LazFileCache, LazMethodList, AvgLvlTree,
|
||||||
// BuildIntf
|
// BuildIntf
|
||||||
@ -498,6 +498,43 @@ type
|
|||||||
property BuildModes[Index: integer]: TLazProjectBuildMode read GetLazBuildModes;
|
property BuildModes[Index: integer]: TLazProjectBuildMode read GetLazBuildModes;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{ TLazProjectFileList }
|
||||||
|
|
||||||
|
TLazProjectFileList = class(specialize TFPGList<TLazProjectFile>)
|
||||||
|
public type
|
||||||
|
TLazProjectFileListEnumerator = object abstract
|
||||||
|
protected
|
||||||
|
FList: TLazProjectFileList;
|
||||||
|
FData: integer;
|
||||||
|
FCurrent, FNext: TLazProjectFile;
|
||||||
|
function GetCurrent: TLazProjectFile; virtual; abstract;
|
||||||
|
public
|
||||||
|
function MoveNext: Boolean; virtual; abstract;
|
||||||
|
property Current: TLazProjectFile read GetCurrent;
|
||||||
|
end;
|
||||||
|
TLazProjectFileListEnumeration = object abstract
|
||||||
|
protected
|
||||||
|
FEnumerator: TLazProjectFileListEnumerator;
|
||||||
|
public
|
||||||
|
//constructor Create;
|
||||||
|
function GetEnumerator: TLazProjectFileListEnumerator; virtual; abstract;
|
||||||
|
end;
|
||||||
|
protected
|
||||||
|
FOwner: TLazProject;
|
||||||
|
function GetFilesBelongingToProject: TLazProjectFileListEnumeration; virtual; abstract;
|
||||||
|
function GetFilesLoaded: TLazProjectFileListEnumeration; virtual; abstract;
|
||||||
|
function GetFilesWithComponent: TLazProjectFileListEnumeration; virtual; abstract;
|
||||||
|
function GetFilesWithEditorIndex: TLazProjectFileListEnumeration; virtual; abstract;
|
||||||
|
function GetFilesWithRevertLock: TLazProjectFileListEnumeration; virtual; abstract;
|
||||||
|
public
|
||||||
|
property Owner: TLazProject read FOwner;
|
||||||
|
property FilesBelongingToProject: TLazProjectFileListEnumeration read GetFilesBelongingToProject;
|
||||||
|
property FilesWithEditorIndex: TLazProjectFileListEnumeration read GetFilesWithEditorIndex;
|
||||||
|
property FilesWithComponent: TLazProjectFileListEnumeration read GetFilesWithComponent;
|
||||||
|
property FilesLoaded: TLazProjectFileListEnumeration read GetFilesLoaded;
|
||||||
|
property FilesWithRevertLock: TLazProjectFileListEnumeration read GetFilesWithRevertLock;
|
||||||
|
end;
|
||||||
|
|
||||||
{ TLazProject - interface class to a Lazarus project }
|
{ TLazProject - interface class to a Lazarus project }
|
||||||
|
|
||||||
TProjectFileSearchFlag = (
|
TProjectFileSearchFlag = (
|
||||||
|
@ -42,7 +42,7 @@ uses
|
|||||||
// IDEIntf
|
// IDEIntf
|
||||||
IDEWindowIntf,
|
IDEWindowIntf,
|
||||||
// IDE
|
// IDE
|
||||||
LazarusIDEStrConsts, IDEDialogs, Project, ProjPackChecks;
|
LazarusIDEStrConsts, IDEDialogs, ProjectIntf, Project, ProjPackChecks;
|
||||||
|
|
||||||
type
|
type
|
||||||
{ TAddToProjectDialog }
|
{ TAddToProjectDialog }
|
||||||
@ -168,15 +168,13 @@ var
|
|||||||
begin
|
begin
|
||||||
AddFileListView.Items.BeginUpdate;
|
AddFileListView.Items.BeginUpdate;
|
||||||
if fProject<>nil then begin
|
if fProject<>nil then begin
|
||||||
CurFile:=fProject.FirstUnitWithEditorIndex;
|
for TLazProjectFile(CurFile) in fProject.UnitsWithEditorIndex do begin
|
||||||
while CurFile<>nil do begin
|
|
||||||
if (not CurFile.IsPartOfProject) and (not CurFile.IsVirtual) then begin
|
if (not CurFile.IsPartOfProject) and (not CurFile.IsVirtual) then begin
|
||||||
NewFilename:=CreateRelativePath(CurFile.Filename,fProject.Directory);
|
NewFilename:=CreateRelativePath(CurFile.Filename,fProject.Directory);
|
||||||
NewListItem:=AddFileListView.Items.Add;
|
NewListItem:=AddFileListView.Items.Add;
|
||||||
NewListItem.Caption:=NewFilename;
|
NewListItem.Caption:=NewFilename;
|
||||||
NewListItem.Selected:=True;
|
NewListItem.Selected:=True;
|
||||||
end;
|
end;
|
||||||
CurFile:=CurFile.NextUnitWithEditorIndex;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
AddFileListView.Items.EndUpdate;
|
AddFileListView.Items.EndUpdate;
|
||||||
|
@ -1548,8 +1548,7 @@ begin
|
|||||||
if Result<>mrNo then exit;
|
if Result<>mrNo then exit;
|
||||||
|
|
||||||
// check project files
|
// check project files
|
||||||
AnUnitInfo:=AProject.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in AProject.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if EditorUnitInfoModified(AnUnitInfo) then
|
if EditorUnitInfoModified(AnUnitInfo) then
|
||||||
begin
|
begin
|
||||||
if ConsoleVerbosity>=0 then
|
if ConsoleVerbosity>=0 then
|
||||||
@ -1582,16 +1581,13 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// check all open editor files in unit/include path (maybe the user forgot
|
// check all open editor files in unit/include path (maybe the user forgot
|
||||||
// to add them to the project)
|
// to add them to the project)
|
||||||
AnUnitInfo:=AProject.FirstUnitWithEditorIndex;
|
for TLazProjectFile(AnUnitInfo) in AProject.UnitsWithEditorIndex do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if CheckNonProjectEditorFile(AnUnitInfo) then
|
if CheckNonProjectEditorFile(AnUnitInfo) then
|
||||||
exit(mrYes);
|
exit(mrYes);
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithEditorIndex;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// check project resources
|
// check project resources
|
||||||
@ -2146,9 +2142,7 @@ begin
|
|||||||
// update project resource
|
// update project resource
|
||||||
if Project1.MainUnitID>=0 then
|
if Project1.MainUnitID>=0 then
|
||||||
Project1.ProjResources.Regenerate(Project1.MainFileName, False, True, TestDir);
|
Project1.ProjResources.Regenerate(Project1.MainFileName, False, True, TestDir);
|
||||||
AnUnitInfo := Project1.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do
|
|
||||||
begin
|
|
||||||
if AnUnitInfo.HasResources then begin
|
if AnUnitInfo.HasResources then begin
|
||||||
case GetResourceType(AnUnitInfo) of
|
case GetResourceType(AnUnitInfo) of
|
||||||
rtLRS:
|
rtLRS:
|
||||||
@ -2162,7 +2156,6 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo := AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ uses
|
|||||||
LazFileUtils, LazUTF8, AvgLvlTree,
|
LazFileUtils, LazUTF8, AvgLvlTree,
|
||||||
// IDEIntf
|
// IDEIntf
|
||||||
IDEWindowIntf, SrcEditorIntf, IDEMsgIntf, IDEDialogs, LazConfigStorage,
|
IDEWindowIntf, SrcEditorIntf, IDEMsgIntf, IDEDialogs, LazConfigStorage,
|
||||||
IDEHelpIntf, PackageIntf, IDECommands, LazIDEIntf, IDEExternToolIntf,
|
IDEHelpIntf, PackageIntf, IDECommands, LazIDEIntf, IDEExternToolIntf, ProjectIntf,
|
||||||
IDEImagesIntf,
|
IDEImagesIntf,
|
||||||
// IDE
|
// IDE
|
||||||
Project, DialogProcs, PackageSystem, PackageDefs, LazarusIDEStrConsts,
|
Project, DialogProcs, PackageSystem, PackageDefs, LazarusIDEStrConsts,
|
||||||
@ -1402,14 +1402,12 @@ var
|
|||||||
AnUnitInfo: TUnitInfo;
|
AnUnitInfo: TUnitInfo;
|
||||||
begin
|
begin
|
||||||
if AProject=nil then exit;
|
if AProject=nil then exit;
|
||||||
AnUnitInfo:=AProject.FirstPartOfProject;
|
|
||||||
//DebugLn(['AddFilesOfProject ',AnUnitInfo<>nil]);
|
//DebugLn(['AddFilesOfProject ',AnUnitInfo<>nil]);
|
||||||
while AnUnitInfo<>nil do begin
|
for TLazProjectFile(AnUnitInfo) in AProject.UnitsBelongingToProject do begin
|
||||||
//DebugLn(['AddFilesOfProject ',AnUnitInfo.Filename]);
|
//DebugLn(['AddFilesOfProject ',AnUnitInfo.Filename]);
|
||||||
if FilenameIsPascalUnit(AnUnitInfo.Filename)
|
if FilenameIsPascalUnit(AnUnitInfo.Filename)
|
||||||
or (AnUnitInfo=aProject.MainUnitInfo) then
|
or (AnUnitInfo=aProject.MainUnitInfo) then
|
||||||
AddFile(AnUnitInfo.Filename,false);
|
AddFile(AnUnitInfo.Filename,false);
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ uses
|
|||||||
// Codetools
|
// Codetools
|
||||||
CodeCache, CodeTree, CodeToolManager, FindDeclarationTool,
|
CodeCache, CodeTree, CodeToolManager, FindDeclarationTool,
|
||||||
// BuildIntf
|
// BuildIntf
|
||||||
ComponentReg,
|
ComponentReg, ProjectIntf,
|
||||||
// IDEIntf
|
// IDEIntf
|
||||||
PropEdits, PropEditUtils, ObjectInspector, FormEditingIntf,
|
PropEdits, PropEditUtils, ObjectInspector, FormEditingIntf,
|
||||||
UnitResources, IDEOptEditorIntf, IDEDialogs, ComponentEditors,
|
UnitResources, IDEOptEditorIntf, IDEDialogs, ComponentEditors,
|
||||||
@ -2407,8 +2407,7 @@ begin
|
|||||||
ComponentClass:=RegComp.ComponentClass;
|
ComponentClass:=RegComp.ComponentClass;
|
||||||
end else begin
|
end else begin
|
||||||
// search in open and hidden designer forms (e.g. nested frames)
|
// search in open and hidden designer forms (e.g. nested frames)
|
||||||
AnUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
Component:=AnUnitInfo.Component;
|
Component:=AnUnitInfo.Component;
|
||||||
if CompareText(Component.ClassName,ComponentClassName)=0 then
|
if CompareText(Component.ClassName,ComponentClassName)=0 then
|
||||||
begin
|
begin
|
||||||
@ -2416,7 +2415,6 @@ begin
|
|||||||
ComponentClass:=TComponentClass(Component.ClassType);
|
ComponentClass:=TComponentClass(Component.ClassType);
|
||||||
break;
|
break;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
//if ComponentClass=nil then
|
//if ComponentClass=nil then
|
||||||
|
@ -41,7 +41,7 @@ uses
|
|||||||
// IdeConfig
|
// IdeConfig
|
||||||
TransferMacros, EnvironmentOpts, LazConf,
|
TransferMacros, EnvironmentOpts, LazConf,
|
||||||
// BuildIntf
|
// BuildIntf
|
||||||
MacroDefIntf, IDEExternToolIntf,
|
MacroDefIntf, IDEExternToolIntf, ProjectIntf,
|
||||||
// IdeIntf
|
// IdeIntf
|
||||||
IDEHelpIntf, IDEWindowIntf, LazIDEIntf,
|
IDEHelpIntf, IDEWindowIntf, LazIDEIntf,
|
||||||
// IDE
|
// IDE
|
||||||
@ -398,8 +398,7 @@ begin
|
|||||||
|
|
||||||
// details
|
// details
|
||||||
HeaderWritten:=false;
|
HeaderWritten:=false;
|
||||||
aFile:=AProject.FirstPartOfProject;
|
for TLazProjectFile(aFile) in AProject.UnitsBelongingToProject do begin
|
||||||
while aFile<>nil do begin
|
|
||||||
if aFile.Modified or aFile.SessionModified
|
if aFile.Modified or aFile.SessionModified
|
||||||
or ((aFile.Source<>nil) and aFile.Source.Modified)
|
or ((aFile.Source<>nil) and aFile.Source.Modified)
|
||||||
then begin
|
then begin
|
||||||
@ -416,7 +415,6 @@ begin
|
|||||||
s:=s+' Source.Modified';
|
s:=s+' Source.Modified';
|
||||||
sl.Add(s);
|
sl.Add(s);
|
||||||
end;
|
end;
|
||||||
aFile:=aFile.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
if HeaderWritten then
|
if HeaderWritten then
|
||||||
sl.Add('');
|
sl.Add('');
|
||||||
|
85
ide/main.pp
85
ide/main.pp
@ -1026,13 +1026,11 @@ var
|
|||||||
begin
|
begin
|
||||||
Result:=nil;
|
Result:=nil;
|
||||||
if Project1=nil then exit;
|
if Project1=nil then exit;
|
||||||
AnUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if SysUtils.CompareText(aName,AnUnitInfo.Component.Name)=0 then begin
|
if SysUtils.CompareText(aName,AnUnitInfo.Component.Name)=0 then begin
|
||||||
Result:=AnUnitInfo.Component;
|
Result:=AnUnitInfo.Component;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -3852,9 +3850,7 @@ var
|
|||||||
ADesigner: TDesigner;
|
ADesigner: TDesigner;
|
||||||
begin
|
begin
|
||||||
if Project1=nil then exit;
|
if Project1=nil then exit;
|
||||||
AnUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do
|
|
||||||
begin
|
|
||||||
if AnUnitInfo.Component<>nil then
|
if AnUnitInfo.Component<>nil then
|
||||||
begin
|
begin
|
||||||
CurDesignerForm:=FormEditor1.GetDesignerForm(AnUnitInfo.Component);
|
CurDesignerForm:=FormEditor1.GetDesignerForm(AnUnitInfo.Component);
|
||||||
@ -3869,7 +3865,6 @@ begin
|
|||||||
CurDesignerForm.Invalidate;
|
CurDesignerForm.Invalidate;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -4439,45 +4434,43 @@ var
|
|||||||
AbortFlag, ReadSaveFailFlag: boolean;
|
AbortFlag, ReadSaveFailFlag: boolean;
|
||||||
begin
|
begin
|
||||||
AbortFlag:=false;
|
AbortFlag:=false;
|
||||||
AnUnitInfo:=Project1.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsBelongingToProject do begin
|
||||||
while (AnUnitInfo<>nil) and (not AbortFlag) do
|
|
||||||
begin
|
|
||||||
ReadSaveFailFlag:=false;
|
ReadSaveFailFlag:=false;
|
||||||
if FileNameIsPascalSource(AnUnitInfo.Filename) then
|
repeat
|
||||||
begin
|
if FileNameIsPascalSource(AnUnitInfo.Filename) then
|
||||||
LFMFileName:=AnUnitInfo.UnitResourceFileformat.GetUnitResourceFilename(AnUnitInfo.Filename,true);
|
|
||||||
if FileExistsCached(LFMFileName) and (not AnUnitInfo.DisableI18NForLFM) then
|
|
||||||
begin
|
begin
|
||||||
OpenStatus:=DoOpenEditorFile(AnUnitInfo.Filename,-1,-1,[ofAddToRecent, ofDoLoadResource]);
|
LFMFileName:=AnUnitInfo.UnitResourceFileformat.GetUnitResourceFilename(AnUnitInfo.Filename,true);
|
||||||
if OpenStatus=mrOk then
|
if FileExistsCached(LFMFileName) and (not AnUnitInfo.DisableI18NForLFM) then
|
||||||
begin
|
begin
|
||||||
AnUnitInfo.Modified:=true;
|
OpenStatus:=DoOpenEditorFile(AnUnitInfo.Filename,-1,-1,[ofAddToRecent, ofDoLoadResource]);
|
||||||
WriteStatus:=DoSaveEditorFile(AnUnitInfo.Filename,[]);
|
if OpenStatus=mrOk then
|
||||||
//DebugLn(['TMainIDE.mnuProjectResaveFormsWithI18n Resaving form "',AnUnitInfo.Filename,'"']);
|
begin
|
||||||
if WriteStatus<>mrOk then
|
AnUnitInfo.Modified:=true;
|
||||||
|
WriteStatus:=DoSaveEditorFile(AnUnitInfo.Filename,[]);
|
||||||
|
//DebugLn(['TMainIDE.mnuProjectResaveFormsWithI18n Resaving form "',AnUnitInfo.Filename,'"']);
|
||||||
|
if WriteStatus<>mrOk then
|
||||||
|
begin
|
||||||
|
ReadSaveFailFlag:=true;
|
||||||
|
if (WriteStatus=mrAbort) or
|
||||||
|
(IDEMessageDialog(lisErrorSavingForm,
|
||||||
|
Format(lisCannotSaveForm,[AnUnitInfo.Filename]),
|
||||||
|
mtError, [mbRetry,mbAbort]) = mrAbort) then
|
||||||
|
AbortFlag:=true;
|
||||||
|
end;
|
||||||
|
end
|
||||||
|
else
|
||||||
begin
|
begin
|
||||||
ReadSaveFailFlag:=true;
|
ReadSaveFailFlag:=true;
|
||||||
if (WriteStatus=mrAbort) or
|
if (OpenStatus=mrAbort) or
|
||||||
(IDEMessageDialog(lisErrorSavingForm,
|
(IDEMessageDialog(lisErrorOpeningForm,
|
||||||
Format(lisCannotSaveForm,[AnUnitInfo.Filename]),
|
Format(lisCannotOpenForm,[AnUnitInfo.Filename]),
|
||||||
mtError, [mbRetry,mbAbort]) = mrAbort) then
|
mtError, [mbRetry,mbAbort]) = mrAbort) then
|
||||||
AbortFlag:=true;
|
AbortFlag:=true;
|
||||||
end;
|
end;
|
||||||
end
|
|
||||||
else
|
|
||||||
begin
|
|
||||||
ReadSaveFailFlag:=true;
|
|
||||||
if (OpenStatus=mrAbort) or
|
|
||||||
(IDEMessageDialog(lisErrorOpeningForm,
|
|
||||||
Format(lisCannotOpenForm,[AnUnitInfo.Filename]),
|
|
||||||
mtError, [mbRetry,mbAbort]) = mrAbort) then
|
|
||||||
AbortFlag:=true;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
|
||||||
//we try next file only if read and write were successful, otherwise we retry current file or abort
|
//we try next file only if read and write were successful, otherwise we retry current file or abort
|
||||||
if not ReadSaveFailFlag then
|
until not ReadSaveFailFlag;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -4599,10 +4592,8 @@ begin
|
|||||||
Files := TFilenameToPointerTree.Create(false);
|
Files := TFilenameToPointerTree.Create(false);
|
||||||
FileList:=TStringList.Create;
|
FileList:=TStringList.Create;
|
||||||
try
|
try
|
||||||
AnUnitInfo:=AProject.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in AProject.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
CurFilename:=AnUnitInfo.Filename;
|
CurFilename:=AnUnitInfo.Filename;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
if not FilenameIsAbsolute(CurFilename) then continue;
|
if not FilenameIsAbsolute(CurFilename) then continue;
|
||||||
if (AProject.MainFilename<>CurFilename)
|
if (AProject.MainFilename<>CurFilename)
|
||||||
and (not FilenameHasPascalExt(CurFilename)) then
|
and (not FilenameHasPascalExt(CurFilename)) then
|
||||||
@ -8838,14 +8829,12 @@ begin
|
|||||||
ActiveSourceEditor:=nil;
|
ActiveSourceEditor:=nil;
|
||||||
ActiveUnitInfo:=nil;
|
ActiveUnitInfo:=nil;
|
||||||
if (APersistent<>nil) and (Project1<>nil) then begin
|
if (APersistent<>nil) and (Project1<>nil) then begin
|
||||||
ActiveUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(ActiveUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while ActiveUnitInfo<>nil do begin
|
|
||||||
if ActiveUnitInfo.Component=APersistent then begin
|
if ActiveUnitInfo.Component=APersistent then begin
|
||||||
if ActiveUnitInfo.OpenEditorInfoCount > 0 then
|
if ActiveUnitInfo.OpenEditorInfoCount > 0 then
|
||||||
ActiveSourceEditor := TSourceEditor(ActiveUnitInfo.OpenEditorInfo[0].EditorComponent);
|
ActiveSourceEditor := TSourceEditor(ActiveUnitInfo.OpenEditorInfo[0].EditorComponent);
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
ActiveUnitInfo:=ActiveUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -9125,15 +9114,11 @@ end;
|
|||||||
procedure TMainIDE.CloseUnmodifiedDesigners;
|
procedure TMainIDE.CloseUnmodifiedDesigners;
|
||||||
var
|
var
|
||||||
AnUnitInfo: TUnitInfo;
|
AnUnitInfo: TUnitInfo;
|
||||||
NextUnitInfo: TUnitInfo;
|
|
||||||
begin
|
begin
|
||||||
if Project1=nil then exit;
|
if Project1=nil then exit;
|
||||||
AnUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
NextUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
if not AnUnitInfo.NeedsSaveToDisk(true) then
|
if not AnUnitInfo.NeedsSaveToDisk(true) then
|
||||||
CloseUnitComponent(AnUnitInfo,[]);
|
CloseUnitComponent(AnUnitInfo,[]);
|
||||||
AnUnitInfo:=NextUnitInfo;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -10236,11 +10221,9 @@ begin
|
|||||||
AProject:=TProject(Owners[i]);
|
AProject:=TProject(Owners[i]);
|
||||||
if AProject.MainUnitInfo<>nil then
|
if AProject.MainUnitInfo<>nil then
|
||||||
AddUnit(AProject.MainUnitInfo);
|
AddUnit(AProject.MainUnitInfo);
|
||||||
AnUnitInfo:=AProject.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in AProject.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if AnUnitInfo<>AProject.MainUnitInfo then
|
if AnUnitInfo<>AProject.MainUnitInfo then
|
||||||
AddUnit(AnUnitInfo);
|
AddUnit(AnUnitInfo);
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end else if TObject(Owners[i]) is TLazPackage then begin
|
end else if TObject(Owners[i]) is TLazPackage then begin
|
||||||
APackage:=TLazPackage(Owners[i]);
|
APackage:=TLazPackage(Owners[i]);
|
||||||
@ -13087,13 +13070,11 @@ var
|
|||||||
AnUnitInfo: TUnitInfo;
|
AnUnitInfo: TUnitInfo;
|
||||||
begin
|
begin
|
||||||
if AComponent=nil then exit(nil);
|
if AComponent=nil then exit(nil);
|
||||||
AnUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if AnUnitInfo.Component=AComponent then begin
|
if AnUnitInfo.Component=AComponent then begin
|
||||||
Result:=AnUnitInfo;
|
Result:=AnUnitInfo;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
Result:=nil;
|
Result:=nil;
|
||||||
end;
|
end;
|
||||||
|
@ -326,17 +326,7 @@ type
|
|||||||
function GetLoadingComponent: boolean;
|
function GetLoadingComponent: boolean;
|
||||||
function GetMarked: boolean;
|
function GetMarked: boolean;
|
||||||
function GetModified: boolean;
|
function GetModified: boolean;
|
||||||
function GetNextAutoRevertLockedUnit: TUnitInfo;
|
|
||||||
function GetNextLoadedUnit: TUnitInfo;
|
|
||||||
function GetNextPartOfProject: TUnitInfo;
|
|
||||||
function GetNextUnitWithComponent: TUnitInfo;
|
|
||||||
function GetNextUnitWithEditorIndex: TUnitInfo;
|
|
||||||
function GetOpenEditorInfo(Index: Integer): TUnitEditorInfo;
|
function GetOpenEditorInfo(Index: Integer): TUnitEditorInfo;
|
||||||
function GetPrevAutoRevertLockedUnit: TUnitInfo;
|
|
||||||
function GetPrevLoadedUnit: TUnitInfo;
|
|
||||||
function GetPrevPartOfProject: TUnitInfo;
|
|
||||||
function GetPrevUnitWithComponent: TUnitInfo;
|
|
||||||
function GetPrevUnitWithEditorIndex: TUnitInfo;
|
|
||||||
function GetRunFileIfActive: boolean;
|
function GetRunFileIfActive: boolean;
|
||||||
function GetSessionModified: boolean;
|
function GetSessionModified: boolean;
|
||||||
function GetUnitResourceFileformat: TUnitResourcefileFormatClass;
|
function GetUnitResourceFileformat: TUnitResourcefileFormatClass;
|
||||||
@ -447,18 +437,6 @@ type
|
|||||||
public
|
public
|
||||||
{ Properties }
|
{ Properties }
|
||||||
property UnitResourceFileformat: TUnitResourcefileFormatClass read GetUnitResourceFileformat;
|
property UnitResourceFileformat: TUnitResourcefileFormatClass read GetUnitResourceFileformat;
|
||||||
|
|
||||||
// Unit lists
|
|
||||||
property NextUnitWithEditorIndex: TUnitInfo read GetNextUnitWithEditorIndex;
|
|
||||||
property PrevUnitWithEditorIndex: TUnitInfo read GetPrevUnitWithEditorIndex;
|
|
||||||
property NextUnitWithComponent: TUnitInfo read GetNextUnitWithComponent;
|
|
||||||
property PrevUnitWithComponent: TUnitInfo read GetPrevUnitWithComponent;
|
|
||||||
property NextLoadedUnit: TUnitInfo read GetNextLoadedUnit;
|
|
||||||
property PrevLoadedUnit: TUnitInfo read GetPrevLoadedUnit;
|
|
||||||
property NextAutoRevertLockedUnit: TUnitInfo read GetNextAutoRevertLockedUnit;
|
|
||||||
property PrevAutoRevertLockedUnit: TUnitInfo read GetPrevAutoRevertLockedUnit;
|
|
||||||
property NextPartOfProject: TUnitInfo read GetNextPartOfProject;
|
|
||||||
property PrevPartOfProject: TUnitInfo read GetPrevPartOfProject;
|
|
||||||
public
|
public
|
||||||
property Bookmarks: TFileBookmarks read FBookmarks write FBookmarks;
|
property Bookmarks: TFileBookmarks read FBookmarks write FBookmarks;
|
||||||
property BuildFileIfActive: boolean read GetBuildFileIfActive
|
property BuildFileIfActive: boolean read GetBuildFileIfActive
|
||||||
@ -515,6 +493,39 @@ type
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
{ TIdeLazProjectFileList }
|
||||||
|
|
||||||
|
TIdeLazProjectFileList = class(TLazProjectFileList)
|
||||||
|
public type
|
||||||
|
|
||||||
|
{ TIdeLazProjectFileListEnumerator }
|
||||||
|
|
||||||
|
TIdeLazProjectFileListEnumerator = object(TLazProjectFileListEnumerator)
|
||||||
|
private
|
||||||
|
function GetCurrent: TLazProjectFile; virtual;
|
||||||
|
public
|
||||||
|
constructor Create(AList: TLazProjectFileList; AData: TUnitInfoList);
|
||||||
|
function MoveNext: Boolean; virtual;
|
||||||
|
property Current: TLazProjectFile read GetCurrent;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ TIdeLazProjectFileListEnumeration }
|
||||||
|
|
||||||
|
TIdeLazProjectFileListEnumeration = object(TLazProjectFileListEnumeration)
|
||||||
|
public
|
||||||
|
constructor Create(AList: TLazProjectFileList; AData: TUnitInfoList);
|
||||||
|
function GetEnumerator: TLazProjectFileListEnumerator; virtual;
|
||||||
|
end;
|
||||||
|
protected
|
||||||
|
function GetFilesBelongingToProject: TLazProjectFileListEnumeration; override;
|
||||||
|
function GetFilesLoaded: TLazProjectFileListEnumeration; override;
|
||||||
|
function GetFilesWithComponent: TLazProjectFileListEnumeration; override;
|
||||||
|
function GetFilesWithEditorIndex: TLazProjectFileListEnumeration; override;
|
||||||
|
function GetFilesWithRevertLock: TLazProjectFileListEnumeration; override;
|
||||||
|
public
|
||||||
|
constructor Create(AnOwner: TLazProject);
|
||||||
|
end;
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
{ TProjectCompilationToolOptions }
|
{ TProjectCompilationToolOptions }
|
||||||
@ -822,7 +833,7 @@ type
|
|||||||
FStateFileDate: longint;
|
FStateFileDate: longint;
|
||||||
FStateFlags: TLazProjectStateFlags;
|
FStateFlags: TLazProjectStateFlags;
|
||||||
FStorePathDelim: TPathDelimSwitch;
|
FStorePathDelim: TPathDelimSwitch;
|
||||||
FUnitList: TFPList; // list of _all_ units (TUnitInfo)
|
FUnitList: TIdeLazProjectFileList; // list of _all_ units (TUnitInfo)
|
||||||
FOtherDefines: TStrings; // list of user selectable defines for custom options
|
FOtherDefines: TStrings; // list of user selectable defines for custom options
|
||||||
FUpdateLock: integer;
|
FUpdateLock: integer;
|
||||||
FUseAsDefault: Boolean;
|
FUseAsDefault: Boolean;
|
||||||
@ -837,10 +848,11 @@ type
|
|||||||
function GetAllEditorsInfo(Index: Integer): TUnitEditorInfo;
|
function GetAllEditorsInfo(Index: Integer): TUnitEditorInfo;
|
||||||
function GetCompilerOptions: TProjectCompilerOptions;
|
function GetCompilerOptions: TProjectCompilerOptions;
|
||||||
function GetBaseCompilerOptions: TBaseCompilerOptions;
|
function GetBaseCompilerOptions: TBaseCompilerOptions;
|
||||||
function GetFirstAutoRevertLockedUnit: TUnitInfo;
|
function GetFilesBelongingToProject: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
function GetFirstLoadedUnit: TUnitInfo;
|
function GetFilesLoaded: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
function GetFirstPartOfProject: TUnitInfo;
|
function GetFilesWithComponent: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
function GetFirstUnitWithComponent: TUnitInfo;
|
function GetFilesWithEditorIndex: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
|
function GetFilesWithRevertLock: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
function GetFirstUnitWithEditorIndex: TUnitInfo;
|
function GetFirstUnitWithEditorIndex: TUnitInfo;
|
||||||
function GetIDEOptions: TProjectIDEOptions;
|
function GetIDEOptions: TProjectIDEOptions;
|
||||||
function GetMainFilename: String;
|
function GetMainFilename: String;
|
||||||
@ -1137,12 +1149,8 @@ type
|
|||||||
property I18NExcludedOriginals: TStrings read FI18NExcludedOriginals;
|
property I18NExcludedOriginals: TStrings read FI18NExcludedOriginals;
|
||||||
property UseLegacyLists: Boolean read GetUseLegacyLists;
|
property UseLegacyLists: Boolean read GetUseLegacyLists;
|
||||||
property ForceUpdatePoFiles: Boolean read FForceUpdatePoFiles write FForceUpdatePoFiles;
|
property ForceUpdatePoFiles: Boolean read FForceUpdatePoFiles write FForceUpdatePoFiles;
|
||||||
property FirstAutoRevertLockedUnit: TUnitInfo read GetFirstAutoRevertLockedUnit;
|
|
||||||
property FirstLoadedUnit: TUnitInfo read GetFirstLoadedUnit;
|
|
||||||
property FirstPartOfProject: TUnitInfo read GetFirstPartOfProject;
|
|
||||||
property FirstRemovedDependency: TPkgDependency read FFirstRemovedDependency;
|
property FirstRemovedDependency: TPkgDependency read FFirstRemovedDependency;
|
||||||
property FirstRequiredDependency: TPkgDependency read FFirstRequiredDependency;
|
property FirstRequiredDependency: TPkgDependency read FFirstRequiredDependency;
|
||||||
property FirstUnitWithComponent: TUnitInfo read GetFirstUnitWithComponent;
|
|
||||||
property FirstUnitWithEditorIndex: TUnitInfo read GetFirstUnitWithEditorIndex;
|
property FirstUnitWithEditorIndex: TUnitInfo read GetFirstUnitWithEditorIndex;
|
||||||
property IDAsString: string read GetIDAsString;
|
property IDAsString: string read GetIDAsString;
|
||||||
property IDAsWord: string read GetIDAsWord;
|
property IDAsWord: string read GetIDAsWord;
|
||||||
@ -1188,6 +1196,11 @@ type
|
|||||||
property OtherDefines: TStrings read FOtherDefines;
|
property OtherDefines: TStrings read FOtherDefines;
|
||||||
property UpdateLock: integer read FUpdateLock;
|
property UpdateLock: integer read FUpdateLock;
|
||||||
property UseAsDefault: Boolean read FUseAsDefault write FUseAsDefault; // for dialog only (used to store options once)
|
property UseAsDefault: Boolean read FUseAsDefault write FUseAsDefault; // for dialog only (used to store options once)
|
||||||
|
property UnitsBelongingToProject: TIdeLazProjectFileList.TLazProjectFileListEnumeration read GetFilesBelongingToProject;
|
||||||
|
property UnitsWithEditorIndex: TIdeLazProjectFileList.TLazProjectFileListEnumeration read GetFilesWithEditorIndex;
|
||||||
|
property UnitsWithComponent: TIdeLazProjectFileList.TLazProjectFileListEnumeration read GetFilesWithComponent;
|
||||||
|
property UnitsLoaded: TIdeLazProjectFileList.TLazProjectFileListEnumeration read GetFilesLoaded;
|
||||||
|
property UnitsWithRevertLock: TIdeLazProjectFileList.TLazProjectFileListEnumeration read GetFilesWithRevertLock;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -2577,61 +2590,11 @@ begin
|
|||||||
or ((Source<>nil) and (Source.ChangeStep<>fSourceChangeStep));
|
or ((Source<>nil) and (Source.ChangeStep<>fSourceChangeStep));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TUnitInfo.GetNextAutoRevertLockedUnit: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fNext[uilAutoRevertLocked];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetNextLoadedUnit: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fNext[uilLoaded];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetNextPartOfProject: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fNext[uilPartOfProject];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetNextUnitWithComponent: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fNext[uilWithComponent];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetNextUnitWithEditorIndex: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fNext[uilWithEditorIndex];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetOpenEditorInfo(Index: Integer): TUnitEditorInfo;
|
function TUnitInfo.GetOpenEditorInfo(Index: Integer): TUnitEditorInfo;
|
||||||
begin
|
begin
|
||||||
Result := FEditorInfoList.OpenEditorInfos[Index];
|
Result := FEditorInfoList.OpenEditorInfos[Index];
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TUnitInfo.GetPrevAutoRevertLockedUnit: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fPrev[uilAutoRevertLocked];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetPrevLoadedUnit: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fPrev[uilLoaded];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetPrevPartOfProject: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fPrev[uilPartOfProject];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetPrevUnitWithComponent: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fPrev[uilWithComponent];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetPrevUnitWithEditorIndex: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fPrev[uilWithEditorIndex];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TUnitInfo.GetRunFileIfActive: boolean;
|
function TUnitInfo.GetRunFileIfActive: boolean;
|
||||||
begin
|
begin
|
||||||
Result:=uifRunFileIfActive in FFlags;
|
Result:=uifRunFileIfActive in FFlags;
|
||||||
@ -2901,6 +2864,77 @@ begin
|
|||||||
Exclude(FFlags, uifSessionModified);
|
Exclude(FFlags, uifSessionModified);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{ TIdeLazProjectFileList.TIdeLazProjectFileListEnumerator }
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.TIdeLazProjectFileListEnumerator.GetCurrent: TLazProjectFile;
|
||||||
|
begin
|
||||||
|
Result := FCurrent;
|
||||||
|
end;
|
||||||
|
|
||||||
|
constructor TIdeLazProjectFileList.TIdeLazProjectFileListEnumerator.Create(
|
||||||
|
AList: TLazProjectFileList; AData: TUnitInfoList);
|
||||||
|
begin
|
||||||
|
FList := AList;
|
||||||
|
FData := ord(AData);
|
||||||
|
FCurrent := nil;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.TIdeLazProjectFileListEnumerator.MoveNext: Boolean;
|
||||||
|
begin
|
||||||
|
if FCurrent = nil then
|
||||||
|
FCurrent := (FList.Owner as TProject).fFirst[TUnitInfoList(FData)]
|
||||||
|
else
|
||||||
|
FCurrent := FNext;
|
||||||
|
Result := FCurrent <> nil;
|
||||||
|
if Result then
|
||||||
|
FNext := (FCurrent as TUnitInfo).fNext[TUnitInfoList(FData)];
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ TIdeLazProjectFileList.TIdeLazProjectFileListEnumeration }
|
||||||
|
|
||||||
|
constructor TIdeLazProjectFileList.TIdeLazProjectFileListEnumeration.Create(
|
||||||
|
AList: TLazProjectFileList; AData: TUnitInfoList);
|
||||||
|
begin
|
||||||
|
TIdeLazProjectFileListEnumerator(FEnumerator).Create(AList, AData);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.TIdeLazProjectFileListEnumeration.GetEnumerator: TLazProjectFileListEnumerator;
|
||||||
|
begin
|
||||||
|
Result := FEnumerator;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ TIdeLazProjectFileList }
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.GetFilesBelongingToProject: TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
TIdeLazProjectFileListEnumeration(Result).Create(Self, uilPartOfProject);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.GetFilesLoaded: TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
TIdeLazProjectFileListEnumeration(Result).Create(Self, uilLoaded);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.GetFilesWithComponent: TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
TIdeLazProjectFileListEnumeration(Result).Create(Self, uilWithComponent);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.GetFilesWithEditorIndex: TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
TIdeLazProjectFileListEnumeration(Result).Create(Self, uilWithEditorIndex);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIdeLazProjectFileList.GetFilesWithRevertLock: TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
TIdeLazProjectFileListEnumeration(Result).Create(Self, uilAutoRevertLocked);
|
||||||
|
end;
|
||||||
|
|
||||||
|
constructor TIdeLazProjectFileList.Create(AnOwner: TLazProject);
|
||||||
|
begin
|
||||||
|
FOwner := AnOwner;
|
||||||
|
inherited Create;
|
||||||
|
end;
|
||||||
|
|
||||||
{ TProjectIDEOptions }
|
{ TProjectIDEOptions }
|
||||||
|
|
||||||
@ -2981,7 +3015,7 @@ begin
|
|||||||
FPublishOptions:=TPublishProjectOptions.Create(Self);
|
FPublishOptions:=TPublishProjectOptions.Create(Self);
|
||||||
FRunParameters:=TRunParamsOptions.Create;
|
FRunParameters:=TRunParamsOptions.Create;
|
||||||
Title := '';
|
Title := '';
|
||||||
FUnitList := TFPList.Create; // list of TUnitInfo
|
FUnitList := TIdeLazProjectFileList.Create(Self); // list of TUnitInfo
|
||||||
FOtherDefines := TStringList.Create;
|
FOtherDefines := TStringList.Create;
|
||||||
FEnableI18N := False;
|
FEnableI18N := False;
|
||||||
FEnableI18NForLFM := True;
|
FEnableI18NForLFM := True;
|
||||||
@ -4552,27 +4586,12 @@ begin
|
|||||||
else Result:='';
|
else Result:='';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TProject.GetFirstPartOfProject: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=FFirst[uilPartOfProject];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TProject.GetFirstLoadedUnit: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fFirst[uilLoaded];
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TProject.EmbeddedObjectModified(Sender: TObject);
|
procedure TProject.EmbeddedObjectModified(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if ProjResources.Modified then
|
if ProjResources.Modified then
|
||||||
Modified := True;
|
Modified := True;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TProject.GetFirstAutoRevertLockedUnit: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fFirst[uilAutoRevertLocked];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TProject.GetAllEditorsInfo(Index: Integer): TUnitEditorInfo;
|
function TProject.GetAllEditorsInfo(Index: Integer): TUnitEditorInfo;
|
||||||
begin
|
begin
|
||||||
Result := FAllEditorsInfoList[Index];
|
Result := FAllEditorsInfoList[Index];
|
||||||
@ -4589,6 +4608,31 @@ begin
|
|||||||
Result := TBaseCompilerOptions(FLazCompilerOptions);
|
Result := TBaseCompilerOptions(FLazCompilerOptions);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TProject.GetFilesBelongingToProject: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
Result := FUnitList.FilesBelongingToProject;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TProject.GetFilesLoaded: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
Result := FUnitList.FilesLoaded;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TProject.GetFilesWithComponent: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
Result := FUnitList.FilesWithComponent;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TProject.GetFilesWithEditorIndex: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
Result := FUnitList.FilesWithEditorIndex;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TProject.GetFilesWithRevertLock: TIdeLazProjectFileList.TLazProjectFileListEnumeration;
|
||||||
|
begin
|
||||||
|
Result := FUnitList.FilesWithRevertLock;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TProject.ClearBuildModes;
|
procedure TProject.ClearBuildModes;
|
||||||
begin
|
begin
|
||||||
ActiveBuildMode:=nil;
|
ActiveBuildMode:=nil;
|
||||||
@ -4602,11 +4646,6 @@ begin
|
|||||||
Result := ActiveBuildMode.Identifier;
|
Result := ActiveBuildMode.Identifier;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TProject.GetFirstUnitWithComponent: TUnitInfo;
|
|
||||||
begin
|
|
||||||
Result:=fFirst[uilWithComponent];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TProject.GetFirstUnitWithEditorIndex: TUnitInfo;
|
function TProject.GetFirstUnitWithEditorIndex: TUnitInfo;
|
||||||
begin
|
begin
|
||||||
Result:=fFirst[uilWithEditorIndex];
|
Result:=fFirst[uilWithEditorIndex];
|
||||||
@ -4823,11 +4862,9 @@ procedure TProject.GetAutoRevertLockedFiles(var ACodeBufferList: TFPList);
|
|||||||
var
|
var
|
||||||
AnUnitInfo: TUnitInfo;
|
AnUnitInfo: TUnitInfo;
|
||||||
begin
|
begin
|
||||||
AnUnitInfo:=fFirst[uilAutoRevertLocked];
|
for TLazProjectFile(AnUnitInfo) in FUnitList.FilesWithRevertLock do begin
|
||||||
while (AnUnitInfo<>nil) do begin
|
|
||||||
Add(AnUnitInfo.Source);
|
Add(AnUnitInfo.Source);
|
||||||
Add(AnUnitInfo.SourceLFM);
|
Add(AnUnitInfo.SourceLFM);
|
||||||
AnUnitInfo:=AnUnitInfo.fNext[uilAutoRevertLocked];
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -5164,12 +5201,10 @@ begin
|
|||||||
DebugLn(['TProject.UpdateUnitComponentDependencies checking properties ...']);
|
DebugLn(['TProject.UpdateUnitComponentDependencies checking properties ...']);
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
// find property dependencies
|
// find property dependencies
|
||||||
AnUnitInfo:=FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
Search(AnUnitInfo,AnUnitInfo.Component);
|
Search(AnUnitInfo,AnUnitInfo.Component);
|
||||||
for i:=AnUnitInfo.Component.ComponentCount-1 downto 0 do
|
for i:=AnUnitInfo.Component.ComponentCount-1 downto 0 do
|
||||||
Search(AnUnitInfo,AnUnitInfo.Component.Components[i]);
|
Search(AnUnitInfo,AnUnitInfo.Component.Components[i]);
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
//WriteDebugReportUnitComponentDependencies('P ');
|
//WriteDebugReportUnitComponentDependencies('P ');
|
||||||
end;
|
end;
|
||||||
@ -5181,8 +5216,7 @@ begin
|
|||||||
DebugLn(['TProject.UpdateUnitComponentDependencies checking designers ...']);
|
DebugLn(['TProject.UpdateUnitComponentDependencies checking designers ...']);
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
// find designer dependencies
|
// find designer dependencies
|
||||||
AnUnitInfo:=FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
AnUnitInfo.FFlags:=AnUnitInfo.FFlags-
|
AnUnitInfo.FFlags:=AnUnitInfo.FFlags-
|
||||||
[uifMarked,uifComponentIndirectlyUsedByDesigner,uifComponentUsedByDesigner];
|
[uifMarked,uifComponentIndirectlyUsedByDesigner,uifComponentUsedByDesigner];
|
||||||
if FindRootDesigner(AnUnitInfo.Component)<>nil then begin
|
if FindRootDesigner(AnUnitInfo.Component)<>nil then begin
|
||||||
@ -5191,17 +5225,14 @@ begin
|
|||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
Include(AnUnitInfo.FFlags,uifComponentUsedByDesigner);
|
Include(AnUnitInfo.FFlags,uifComponentUsedByDesigner);
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
// mark all units that are used indirectly by a designer
|
// mark all units that are used indirectly by a designer
|
||||||
AnUnitInfo:=FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if (uifComponentUsedByDesigner in AnUnitInfo.FFlags) then
|
if (uifComponentUsedByDesigner in AnUnitInfo.FFlags) then
|
||||||
begin
|
begin
|
||||||
// mark all that use indirectly this designer
|
// mark all that use indirectly this designer
|
||||||
DFSRequiredDesigner(AnUnitInfo,AnUnitInfo);
|
DFSRequiredDesigner(AnUnitInfo,AnUnitInfo);
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
{$IFDEF VerboseTFrame}
|
{$IFDEF VerboseTFrame}
|
||||||
WriteDebugReportUnitComponentDependencies('UUCD ');
|
WriteDebugReportUnitComponentDependencies('UUCD ');
|
||||||
@ -5280,15 +5311,13 @@ begin
|
|||||||
OwnerComponent:=OwnerComponent.Owner;
|
OwnerComponent:=OwnerComponent.Owner;
|
||||||
end else
|
end else
|
||||||
OwnerComponent:=nil;
|
OwnerComponent:=nil;
|
||||||
AnUnitInfo:=FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if csDestroying in AnUnitInfo.Component.ComponentState then continue;
|
if csDestroying in AnUnitInfo.Component.ComponentState then continue;
|
||||||
if AnUnitInfo.Component<>OwnerComponent then begin
|
if AnUnitInfo.Component<>OwnerComponent then begin
|
||||||
Search(AnUnitInfo,AnUnitInfo.Component);
|
Search(AnUnitInfo,AnUnitInfo.Component);
|
||||||
for i:=AnUnitInfo.Component.ComponentCount-1 downto 0 do
|
for i:=AnUnitInfo.Component.ComponentCount-1 downto 0 do
|
||||||
Search(AnUnitInfo,AnUnitInfo.Component.Components[i]);
|
Search(AnUnitInfo,AnUnitInfo.Component.Components[i]);
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -5722,15 +5751,13 @@ begin
|
|||||||
DebugLn(['TProject.SomeDataModified CompilerOptions/BuildModes']);
|
DebugLn(['TProject.SomeDataModified CompilerOptions/BuildModes']);
|
||||||
Exit;
|
Exit;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if AnUnitInfo.Modified then
|
if AnUnitInfo.Modified then
|
||||||
begin
|
begin
|
||||||
if Verbose then
|
if Verbose then
|
||||||
DebugLn('TProject.SomeDataModified PartOfProject ',AnUnitInfo.Filename);
|
DebugLn('TProject.SomeDataModified PartOfProject ',AnUnitInfo.Filename);
|
||||||
Exit;
|
Exit;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
Result:=false;
|
Result:=false;
|
||||||
end;
|
end;
|
||||||
@ -6022,19 +6049,16 @@ begin
|
|||||||
SearchedFilename:=ExtractFilenameOnly(SearchedFilename);
|
SearchedFilename:=ExtractFilenameOnly(SearchedFilename);
|
||||||
|
|
||||||
// search in files which are part of the project
|
// search in files which are part of the project
|
||||||
Result:=FirstPartOfProject;
|
for TLazProjectFile(Result) in UnitsBelongingToProject do begin
|
||||||
while Result<>nil do begin
|
|
||||||
if FilenameFits(Result.Filename) then exit;
|
if FilenameFits(Result.Filename) then exit;
|
||||||
Result:=Result.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
// search in files opened in editor
|
// search in files opened in editor
|
||||||
if not (siffDoNotCheckOpenFiles in SearchFlags) then begin
|
if not (siffDoNotCheckOpenFiles in SearchFlags) then begin
|
||||||
Result:=FirstUnitWithEditorIndex;
|
for TLazProjectFile(Result) in UnitsWithEditorIndex do begin
|
||||||
while Result<>nil do begin
|
|
||||||
if FilenameFits(Result.Filename) then exit;
|
if FilenameFits(Result.Filename) then exit;
|
||||||
Result:=Result.NextUnitWithEditorIndex;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Result := nil;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TProject.FindFile(const AFilename: string;
|
function TProject.FindFile(const AFilename: string;
|
||||||
@ -6310,8 +6334,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
if BestUnitInfo=nil then begin
|
if BestUnitInfo=nil then begin
|
||||||
AnUnitInfo:=FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if FileExistsCached(AnUnitInfo.Filename) then begin
|
if FileExistsCached(AnUnitInfo.Filename) then begin
|
||||||
if (BestUnitInfo=nil)
|
if (BestUnitInfo=nil)
|
||||||
or (FilenameHasPascalExt(AnUnitInfo.Filename)
|
or (FilenameHasPascalExt(AnUnitInfo.Filename)
|
||||||
@ -6320,7 +6343,6 @@ begin
|
|||||||
BestUnitInfo:=AnUnitInfo;
|
BestUnitInfo:=AnUnitInfo;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
if BestUnitInfo<>nil then begin
|
if BestUnitInfo<>nil then begin
|
||||||
|
@ -1184,21 +1184,17 @@ end;
|
|||||||
procedure TProjectInspectorForm.RemoveNonExistingFilesMenuItemClick(Sender: TObject);
|
procedure TProjectInspectorForm.RemoveNonExistingFilesMenuItemClick(Sender: TObject);
|
||||||
var
|
var
|
||||||
AnUnitInfo: TUnitInfo;
|
AnUnitInfo: TUnitInfo;
|
||||||
NextUnitInfo: TUnitInfo;
|
|
||||||
HasChanged: Boolean;
|
HasChanged: Boolean;
|
||||||
begin
|
begin
|
||||||
if LazProject.IsVirtual then exit;
|
if LazProject.IsVirtual then exit;
|
||||||
BeginUpdate;
|
BeginUpdate;
|
||||||
try
|
try
|
||||||
HasChanged:=false;
|
HasChanged:=false;
|
||||||
AnUnitInfo:=LazProject.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in LazProject.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
NextUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
if not (AnUnitInfo.IsVirtual or FileExistsUTF8(AnUnitInfo.Filename)) then begin
|
if not (AnUnitInfo.IsVirtual or FileExistsUTF8(AnUnitInfo.Filename)) then begin
|
||||||
AnUnitInfo.IsPartOfProject:=false;
|
AnUnitInfo.IsPartOfProject:=false;
|
||||||
HasChanged:=true;
|
HasChanged:=true;
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=NextUnitInfo;
|
|
||||||
end;
|
end;
|
||||||
if HasChanged then begin
|
if HasChanged then begin
|
||||||
LazProject.Modified:=true;
|
LazProject.Modified:=true;
|
||||||
@ -1497,14 +1493,12 @@ begin
|
|||||||
FilterEdit.SortData:=SortAlphabetically;
|
FilterEdit.SortData:=SortAlphabetically;
|
||||||
FilterEdit.ImageIndexDirectory:=ImageIndexDirectory;
|
FilterEdit.ImageIndexDirectory:=ImageIndexDirectory;
|
||||||
// collect and sort files
|
// collect and sort files
|
||||||
CurFile:=LazProject.FirstPartOfProject;
|
for TLazProjectFile(CurFile) in LazProject.UnitsBelongingToProject do begin
|
||||||
while CurFile<>nil do begin
|
|
||||||
Filename:=CurFile.GetShortFilename(true);
|
Filename:=CurFile.GetShortFilename(true);
|
||||||
if Filename<>'' then Begin
|
if Filename<>'' then Begin
|
||||||
ANodeData:=FPropGui.CreateNodeData(penFile, CurFile.Filename, False);
|
ANodeData:=FPropGui.CreateNodeData(penFile, CurFile.Filename, False);
|
||||||
FilesBranch.AddNodeData(Filename, ANodeData, CurFile.Filename);
|
FilesBranch.AddNodeData(Filename, ANodeData, CurFile.Filename);
|
||||||
end;
|
end;
|
||||||
CurFile:=CurFile.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
FilterEdit.InvalidateFilter; // Data is shown by FilterEdit.
|
FilterEdit.InvalidateFilter; // Data is shown by FilterEdit.
|
||||||
|
@ -41,7 +41,7 @@ uses
|
|||||||
FileUtil, LazFileUtils, LazFileCache, LazTracer, LazUTF8,
|
FileUtil, LazFileUtils, LazFileCache, LazTracer, LazUTF8,
|
||||||
// IDEIntf
|
// IDEIntf
|
||||||
IdeIntfStrConsts, IDEWindowIntf, LazIDEIntf, SrcEditorIntf, IDEDialogs,
|
IdeIntfStrConsts, IDEWindowIntf, LazIDEIntf, SrcEditorIntf, IDEDialogs,
|
||||||
ProjectGroupIntf, InputHistory,
|
ProjectGroupIntf, ProjectIntf, InputHistory,
|
||||||
// IdeUtils
|
// IdeUtils
|
||||||
IdeUtilsPkgStrConsts,
|
IdeUtilsPkgStrConsts,
|
||||||
// IdeConfig
|
// IdeConfig
|
||||||
@ -1064,13 +1064,11 @@ var
|
|||||||
begin
|
begin
|
||||||
try
|
try
|
||||||
TheFileList:= TStringList.Create;
|
TheFileList:= TStringList.Create;
|
||||||
AnUnitInfo:=AProject.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in AProject.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
//Only if file exists on disk.
|
//Only if file exists on disk.
|
||||||
if FilenameIsAbsolute(AnUnitInfo.FileName)
|
if FilenameIsAbsolute(AnUnitInfo.FileName)
|
||||||
and FileExistsCached(AnUnitInfo.FileName) then
|
and FileExistsCached(AnUnitInfo.FileName) then
|
||||||
TheFileList.Add(AnUnitInfo.FileName);
|
TheFileList.Add(AnUnitInfo.FileName);
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
SearchFileList:= TheFileList;
|
SearchFileList:= TheFileList;
|
||||||
DoSearchAndAddToSearchResults;
|
DoSearchAndAddToSearchResults;
|
||||||
|
@ -1871,8 +1871,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
// removed directories still used for ObsoleteUnitPaths, ObsoleteIncPaths
|
// removed directories still used for ObsoleteUnitPaths, ObsoleteIncPaths
|
||||||
AnUnitInfo:=Project1.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if FilenameIsAbsolute(AnUnitInfo.Filename) then begin
|
if FilenameIsAbsolute(AnUnitInfo.Filename) then begin
|
||||||
UnitPath:=ChompPathDelim(ExtractFilePath(AnUnitInfo.Filename));
|
UnitPath:=ChompPathDelim(ExtractFilePath(AnUnitInfo.Filename));
|
||||||
if FilenameIsPascalUnit(AnUnitInfo.Filename) then
|
if FilenameIsPascalUnit(AnUnitInfo.Filename) then
|
||||||
@ -1880,7 +1879,6 @@ begin
|
|||||||
if FilenameExtIs(AnUnitInfo.Filename,'inc') then
|
if FilenameExtIs(AnUnitInfo.Filename,'inc') then
|
||||||
ObsoleteIncPaths:=RemoveSearchPaths(ObsoleteIncPaths,UnitPath);
|
ObsoleteIncPaths:=RemoveSearchPaths(ObsoleteIncPaths,UnitPath);
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// check if compiler options contain paths of ObsoleteUnitPaths
|
// check if compiler options contain paths of ObsoleteUnitPaths
|
||||||
@ -3544,12 +3542,9 @@ begin
|
|||||||
end;
|
end;
|
||||||
if (fuooListed in Flags) then begin
|
if (fuooListed in Flags) then begin
|
||||||
// add listed units (i.e. units in project inspector)
|
// add listed units (i.e. units in project inspector)
|
||||||
AnUnitInfo:=aProject.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in aProject.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do
|
|
||||||
begin
|
|
||||||
if FilenameIsPascalUnit(AnUnitInfo.Filename) then
|
if FilenameIsPascalUnit(AnUnitInfo.Filename) then
|
||||||
Add(AnUnitInfo.Filename);
|
Add(AnUnitInfo.Filename);
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
if (fuooListed in Flags) and (fuooPackages in Flags) then
|
if (fuooListed in Flags) and (fuooPackages in Flags) then
|
||||||
@ -4334,8 +4329,7 @@ begin
|
|||||||
DebugLn(['SaveProject - unit not found for page ',i,' File="',SrcEdit.FileName,'" SrcEdit=',dbgsname(SrcEdit),'=',dbgs(Pointer(SrcEdit))]);
|
DebugLn(['SaveProject - unit not found for page ',i,' File="',SrcEdit.FileName,'" SrcEdit=',dbgsname(SrcEdit),'=',dbgs(Pointer(SrcEdit))]);
|
||||||
DumpStack;
|
DumpStack;
|
||||||
debugln(['SaveProject Project1 has the following information about the source editor:']);
|
debugln(['SaveProject Project1 has the following information about the source editor:']);
|
||||||
AnUnitInfo:=Project1.FirstUnitWithEditorIndex;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithEditorIndex do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
for j:=0 to AnUnitInfo.EditorInfoCount-1 do begin
|
for j:=0 to AnUnitInfo.EditorInfoCount-1 do begin
|
||||||
dbgout([' ',AnUnitInfo.Filename,' ',j,'/',AnUnitInfo.EditorInfoCount,' Component=',dbgsname(AnUnitInfo.EditorInfo[j].EditorComponent),'=',dbgs(Pointer(AnUnitInfo.EditorInfo[j].EditorComponent))]);
|
dbgout([' ',AnUnitInfo.Filename,' ',j,'/',AnUnitInfo.EditorInfoCount,' Component=',dbgsname(AnUnitInfo.EditorInfo[j].EditorComponent),'=',dbgs(Pointer(AnUnitInfo.EditorInfo[j].EditorComponent))]);
|
||||||
if AnUnitInfo.EditorInfo[j].EditorComponent<>nil then
|
if AnUnitInfo.EditorInfo[j].EditorComponent<>nil then
|
||||||
@ -4343,7 +4337,6 @@ begin
|
|||||||
debugln;
|
debugln;
|
||||||
end;
|
end;
|
||||||
debugln([' ',AnUnitInfo.EditorInfoCount]);
|
debugln([' ',AnUnitInfo.EditorInfoCount]);
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithEditorIndex;
|
|
||||||
end;
|
end;
|
||||||
end else begin
|
end else begin
|
||||||
if AnUnitInfo.IsVirtual then begin
|
if AnUnitInfo.IsVirtual then begin
|
||||||
@ -7695,9 +7688,8 @@ function CloseUnitComponent(AnUnitInfo: TUnitInfo; Flags: TCloseFlags): TModalRe
|
|||||||
var
|
var
|
||||||
CompUnitInfo: TUnitInfo;
|
CompUnitInfo: TUnitInfo;
|
||||||
begin
|
begin
|
||||||
CompUnitInfo:=Project1.FirstUnitWithComponent;
|
|
||||||
Project1.UpdateUnitComponentDependencies;
|
Project1.UpdateUnitComponentDependencies;
|
||||||
while CompUnitInfo<>nil do begin
|
for TLazProjectFile(CompUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
//DebugLn(['FreeUnusedComponents ',CompUnitInfo.Filename,' ',dbgsName(CompUnitInfo.Component),' UnitComponentIsUsed=',UnitComponentIsUsed(CompUnitInfo,true)]);
|
//DebugLn(['FreeUnusedComponents ',CompUnitInfo.Filename,' ',dbgsName(CompUnitInfo.Component),' UnitComponentIsUsed=',UnitComponentIsUsed(CompUnitInfo,true)]);
|
||||||
if not UnitComponentIsUsed(CompUnitInfo,true) then begin
|
if not UnitComponentIsUsed(CompUnitInfo,true) then begin
|
||||||
// close the unit component
|
// close the unit component
|
||||||
@ -7705,7 +7697,6 @@ function CloseUnitComponent(AnUnitInfo: TUnitInfo; Flags: TCloseFlags): TModalRe
|
|||||||
// this has recursively freed all components, so exit here
|
// this has recursively freed all components, so exit here
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
CompUnitInfo:=CompUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -8121,8 +8112,7 @@ var
|
|||||||
AnUnitInfo: TUnitInfo;
|
AnUnitInfo: TUnitInfo;
|
||||||
LFMFilename: String;
|
LFMFilename: String;
|
||||||
begin
|
begin
|
||||||
AnUnitInfo:=Project1.FirstPartOfProject;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsBelongingToProject do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
if (not AnUnitInfo.HasResources)
|
if (not AnUnitInfo.HasResources)
|
||||||
and (not AnUnitInfo.IsVirtual) and FilenameHasPascalExt(AnUnitInfo.Filename)
|
and (not AnUnitInfo.IsVirtual) and FilenameHasPascalExt(AnUnitInfo.Filename)
|
||||||
then begin
|
then begin
|
||||||
@ -8131,7 +8121,6 @@ begin
|
|||||||
LFMFilename:=ChangeFileExt(AnUnitInfo.Filename,'.dfm');
|
LFMFilename:=ChangeFileExt(AnUnitInfo.Filename,'.dfm');
|
||||||
AnUnitInfo.HasResources:=FileExistsCached(LFMFilename);
|
AnUnitInfo.HasResources:=FileExistsCached(LFMFilename);
|
||||||
end;
|
end;
|
||||||
AnUnitInfo:=AnUnitInfo.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -382,15 +382,13 @@ begin
|
|||||||
else
|
else
|
||||||
CurrentUnitName := '';
|
CurrentUnitName := '';
|
||||||
// Add available unit names to list
|
// Add available unit names to list
|
||||||
ProjFile:=Project1.FirstPartOfProject;
|
for TLazProjectFile(ProjFile) in Project1.UnitsBelongingToProject do begin
|
||||||
while ProjFile <> nil do begin
|
|
||||||
s := ProjFile.Unit_Name;
|
s := ProjFile.Unit_Name;
|
||||||
if s = CurrentUnitName then // current unit
|
if s = CurrentUnitName then // current unit
|
||||||
s := '';
|
s := '';
|
||||||
if (ProjFile <> Project1.MainUnitInfo) and (s <> '') then
|
if (ProjFile <> Project1.MainUnitInfo) and (s <> '') then
|
||||||
if not FMainUsedUnits.Find(s, x) then
|
if not FMainUsedUnits.Find(s, x) then
|
||||||
FProjUnits.AddObject(s, ProjFile);
|
FProjUnits.AddObject(s, ProjFile);
|
||||||
ProjFile := ProjFile.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
FProjUnits.Sorted := True;
|
FProjUnits.Sorted := True;
|
||||||
end;
|
end;
|
||||||
|
@ -4754,11 +4754,9 @@ begin
|
|||||||
end;
|
end;
|
||||||
end else if CurOwner is TProject then begin
|
end else if CurOwner is TProject then begin
|
||||||
CurProject:=TProject(CurOwner);
|
CurProject:=TProject(CurOwner);
|
||||||
CurUnit:=CurProject.FirstPartOfProject;
|
for TLazProjectFile(CurUnit) in CurProject.UnitsBelongingToProject do begin
|
||||||
while CurUnit<>nil do begin
|
|
||||||
if FilenameIsPascalSource(CurUnit.Filename) then
|
if FilenameIsPascalSource(CurUnit.Filename) then
|
||||||
AddFile(CurOwner,CurUnit.Filename);
|
AddFile(CurOwner,CurUnit.Filename);
|
||||||
CurUnit:=CurUnit.NextPartOfProject;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -6341,10 +6339,8 @@ begin
|
|||||||
FMainUnitInfoValid:=false;
|
FMainUnitInfoValid:=false;
|
||||||
if (MainOwner=nil) or (MainUnitInfo=nil) then exit;
|
if (MainOwner=nil) or (MainUnitInfo=nil) then exit;
|
||||||
// search all open designer forms (can be hidden)
|
// search all open designer forms (can be hidden)
|
||||||
AnUnitInfo:=Project1.FirstUnitWithComponent;
|
for TLazProjectFile(AnUnitInfo) in Project1.UnitsWithComponent do begin
|
||||||
while AnUnitInfo<>nil do begin
|
|
||||||
CheckUnit(AnUnitInfo);
|
CheckUnit(AnUnitInfo);
|
||||||
AnUnitInfo:=AnUnitInfo.NextUnitWithComponent;
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user