mirror of https://gitlab.com/basile.b/dexed.git
fix, LastDocAndProjs, ProjGroups, problem with config indexes
This commit is contained in:
parent
85a67e4473
commit
837589b2c1
|
@ -1058,25 +1058,33 @@ end;
|
||||||
|
|
||||||
procedure TLastDocsAndProjs.Assign(source: TPersistent);
|
procedure TLastDocsAndProjs.Assign(source: TPersistent);
|
||||||
var
|
var
|
||||||
grp: IProjectGroup;
|
|
||||||
prj: ICommonProject = nil;
|
prj: ICommonProject = nil;
|
||||||
pix: integer;
|
grp: IProjectGroup;
|
||||||
begin
|
begin
|
||||||
if source = MainForm then
|
if source = MainForm then
|
||||||
begin
|
begin
|
||||||
grp := getProjectGroup;
|
// freestanding project
|
||||||
pix := grp.reloadedProjectIndex;
|
|
||||||
prj := MainForm.fFreeProj;
|
prj := MainForm.fFreeProj;
|
||||||
if prj.isAssigned then
|
if prj.isAssigned then
|
||||||
begin
|
begin
|
||||||
fProjName := prj.filename;
|
fProjName := prj.filename;
|
||||||
fProjectConfigIndex := prj.getActiveConfigurationIndex;
|
// freestanding has the focus
|
||||||
|
if MainForm.fProj = prj then
|
||||||
|
begin
|
||||||
|
fProjectIndex := -1;
|
||||||
|
fProjectConfigIndex := prj.getActiveConfigurationIndex();
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
fProjectGroup := getProjectGroup.groupFilename;
|
|
||||||
if prj = MainForm.fProj then
|
// group, group item has the focus
|
||||||
fProjectIndex := -1
|
grp := getProjectGroup();
|
||||||
else
|
fProjectGroup := grp.groupFilename();
|
||||||
fProjectIndex := pix;
|
if fProjectGroup.isNotEmpty() and MainForm.fProj.inGroup() then
|
||||||
|
begin
|
||||||
|
fProjectIndex := grp.getProjectIndex();
|
||||||
|
fProjectConfigIndex := MainForm.fProj.getActiveConfigurationIndex();
|
||||||
|
end;
|
||||||
|
|
||||||
end else
|
end else
|
||||||
inherited;
|
inherited;
|
||||||
end;
|
end;
|
||||||
|
@ -1093,17 +1101,19 @@ begin
|
||||||
dst := TMainForm(target);
|
dst := TMainForm(target);
|
||||||
if dst.fProjFromCommandLine then
|
if dst.fProjFromCommandLine then
|
||||||
exit;
|
exit;
|
||||||
|
// reload freestanding
|
||||||
if fProjName.isNotEmpty and fProjName.fileExists then
|
if fProjName.isNotEmpty and fProjName.fileExists() then
|
||||||
begin
|
begin
|
||||||
dst.openProj(fProjName);
|
dst.openProj(fProjName);
|
||||||
if dst.fProj.isNotAssigned then
|
if dst.fProj.isNotAssigned then
|
||||||
exit;
|
exit;
|
||||||
hdl := getMultiDocHandler;
|
// set the highlighter in case one of the reloaded file is a project description
|
||||||
|
hdl := getMultiDocHandler();
|
||||||
if hdl.isAssigned then
|
if hdl.isAssigned then
|
||||||
mem := hdl.findDocument(dst.fProj.filename);
|
mem := hdl.findDocument(dst.fProj.filename);
|
||||||
if mem.isAssigned then
|
if mem.isAssigned then
|
||||||
begin
|
begin
|
||||||
|
mem.isProjectDescription:=true;
|
||||||
case dst.fProj.getFormat of
|
case dst.fProj.getFormat of
|
||||||
pfDEXED : mem.Highlighter := LfmSyn;
|
pfDEXED : mem.Highlighter := LfmSyn;
|
||||||
pfDUB : mem.Highlighter := JsSyn;
|
pfDUB : mem.Highlighter := JsSyn;
|
||||||
|
@ -1112,17 +1122,22 @@ begin
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
// reload group
|
||||||
grp := getProjectGroup;
|
grp := getProjectGroup;
|
||||||
if fProjectGroup.isNotEmpty and fProjectGroup.fileExists then
|
if fProjectGroup.isNotEmpty and fProjectGroup.fileExists then
|
||||||
grp.openGroup(fProjectGroup);
|
grp.openGroup(fProjectGroup);
|
||||||
|
|
||||||
|
// activate either freestanding or group item
|
||||||
if fProjectIndex.equals(-1) and dst.fFreeProj.isAssigned then
|
if fProjectIndex.equals(-1) and dst.fFreeProj.isAssigned then
|
||||||
dst.fFreeProj.activate
|
dst.fFreeProj.activate()
|
||||||
else if (fProjectIndex >= 0) and (grp.projectCount > 0)
|
else if (fProjectIndex >= 0) and (grp.projectCount > 0)
|
||||||
and (fProjectIndex < grp.projectCount) then
|
and (fProjectIndex < grp.projectCount) then
|
||||||
begin
|
begin
|
||||||
grp.setProjectIndex(fProjectIndex);
|
grp.setProjectIndex(fProjectIndex);
|
||||||
grp.getProject(grp.getProjectIndex).activate;
|
grp.getProject(grp.getProjectIndex).activate;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
// now the right proj should have the focus
|
||||||
if assigned(dst.fProj) then
|
if assigned(dst.fProj) then
|
||||||
dst.fProj.setActiveConfigurationIndex(fProjectConfigIndex);
|
dst.fProj.setActiveConfigurationIndex(fProjectConfigIndex);
|
||||||
end
|
end
|
||||||
|
|
|
@ -31,11 +31,10 @@ type
|
||||||
fProj: ICommonProject;
|
fProj: ICommonProject;
|
||||||
fGroup: TProjectGroup;
|
fGroup: TProjectGroup;
|
||||||
fAsyncMode: TProjectAsyncMode;
|
fAsyncMode: TProjectAsyncMode;
|
||||||
function storeConfigIndex: boolean;
|
|
||||||
published
|
published
|
||||||
property filename: string read fFilename write fFilename;
|
property filename: string read fFilename write fFilename;
|
||||||
property asyncMode: TProjectAsyncMode read fAsyncMode write fAsyncMode;
|
property asyncMode: TProjectAsyncMode read fAsyncMode write fAsyncMode;
|
||||||
property configurationIndex: integer read fConfigIndex write fConfigIndex stored storeConfigIndex;
|
property configurationIndex: integer read fConfigIndex write fConfigIndex;
|
||||||
public
|
public
|
||||||
property project: ICommonProject read fProj;
|
property project: ICommonProject read fProj;
|
||||||
procedure lazyLoad;
|
procedure lazyLoad;
|
||||||
|
@ -71,6 +70,7 @@ type
|
||||||
protected
|
protected
|
||||||
procedure afterLoad; override;
|
procedure afterLoad; override;
|
||||||
procedure afterSave; override;
|
procedure afterSave; override;
|
||||||
|
procedure beforeSave; override;
|
||||||
public
|
public
|
||||||
constructor create(aOwner: TComponent); override;
|
constructor create(aOwner: TComponent); override;
|
||||||
destructor destroy; override;
|
destructor destroy; override;
|
||||||
|
@ -358,6 +358,20 @@ begin
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TProjectGroup.beforeSave;
|
||||||
|
var
|
||||||
|
it: TCollectionItem;
|
||||||
|
gi: TProjectGroupItem;
|
||||||
|
begin
|
||||||
|
inherited;
|
||||||
|
for it in fItems do
|
||||||
|
begin
|
||||||
|
gi := TProjectGroupItem(it);
|
||||||
|
if assigned(gi.fProj) then
|
||||||
|
gi.fConfigIndex:= gi.fProj.getActiveConfigurationIndex();
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TProjectGroup.afterSave;
|
procedure TProjectGroup.afterSave;
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
|
@ -494,14 +508,12 @@ begin
|
||||||
if fProj.isAssigned then
|
if fProj.isAssigned then
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
//setActiveConfigurationIndex changes the project
|
//setActiveConfigurationIndex changes the project modified flag
|
||||||
//modified flag
|
|
||||||
projectGroup.saveModified;
|
projectGroup.saveModified;
|
||||||
|
|
||||||
fProj := loadProject(absoluteFilename, true);
|
fProj := loadProject(absoluteFilename, true);
|
||||||
fProj.inGroup(true);
|
fProj.inGroup(true);
|
||||||
if fProj.getFormat = pfDUB then
|
fProj.setActiveConfigurationIndex(fConfigIndex);
|
||||||
fProj.setActiveConfigurationIndex(fConfigIndex);
|
|
||||||
|
|
||||||
projectGroup.restoreModified;
|
projectGroup.restoreModified;
|
||||||
end;
|
end;
|
||||||
|
@ -514,11 +526,6 @@ begin
|
||||||
inherited;
|
inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TProjectGroupItem.storeConfigIndex: boolean;
|
|
||||||
begin
|
|
||||||
exit(fProj.getFormat = pfDUB);
|
|
||||||
end;
|
|
||||||
|
|
||||||
function TProjectGroupItem.absoluteFilename: string;
|
function TProjectGroupItem.absoluteFilename: string;
|
||||||
begin
|
begin
|
||||||
if fGroup.fBasePath = '' then
|
if fGroup.fBasePath = '' then
|
||||||
|
|
Loading…
Reference in New Issue