project group, items path is relative to the group path

allow sharing group on different computers
This commit is contained in:
Basile Burg 2016-06-25 16:55:03 +02:00
parent 47b7cc416e
commit 15630dcab8
3 changed files with 66 additions and 11 deletions

View File

@ -0,0 +1,13 @@
object _1: TProjectGroup
items = <
item
filename = '..\cesyms\cesyms_libman.coedit'
end
item
filename = '..\cetodo\cetodo_libman.coedit'
end
item
filename = '..\cesetup\cesetup.coedit'
end>
index = 0
end

View File

@ -28,17 +28,17 @@ inherited CEProjectGroupWidget: TCEProjectGroupWidget
item item
AutoSize = True AutoSize = True
Caption = 'Name' Caption = 'Name'
Width = 47 Width = 316
end end
item item
AutoSize = True AutoSize = True
Caption = 'Type' Caption = 'Type'
Width = 39 Width = 38
end end
item item
AutoSize = True AutoSize = True
Caption = 'Configuration' Caption = 'Configuration'
Width = 230 Width = 86
end> end>
GridLines = True GridLines = True
ReadOnly = True ReadOnly = True

View File

@ -11,6 +11,8 @@ uses
type type
TProjectGroup = class;
(** (**
* Represents a project in a project group * Represents a project in a project group
*) *)
@ -18,12 +20,14 @@ type
private private
fFilename: string; fFilename: string;
fProj: ICECommonProject; fProj: ICECommonProject;
fGroup: TProjectGroup;
published published
property filename: string read fFilename write fFilename; property filename: string read fFilename write fFilename;
public public
property project: ICECommonProject read fProj; property project: ICECommonProject read fProj;
procedure lazyLoad; procedure lazyLoad;
destructor destroy; override; destructor destroy; override;
function absoluteFilename: string;
end; end;
(** (**
@ -35,6 +39,7 @@ type
fItems: TCollection; fItems: TCollection;
fModified: boolean; fModified: boolean;
fOnChanged: TNotifyEvent; fOnChanged: TNotifyEvent;
fBasePath: string;
procedure setItems(value: TCollection); procedure setItems(value: TCollection);
function getItem(index: integer): TProjectGroupItem; function getItem(index: integer): TProjectGroupItem;
procedure doChanged; procedure doChanged;
@ -179,11 +184,15 @@ begin
fModified := true; fModified := true;
for it in fItems do for it in fItems do
begin begin
if SameFileName(TProjectGroupItem(it).fFilename, fname) then if SameFileName(TProjectGroupItem(it).absoluteFilename, fname) then
exit(TProjectGroupItem(it)); exit(TProjectGroupItem(it));
end; end;
result := TProjectGroupItem(fItems.Add); result := TProjectGroupItem(fItems.Add);
result.fFilename := fname; result.fGroup := self;
if fBasePath = '' then
result.fFilename := fname
else
result.fFilename := ExtractRelativepath(fBasePath, fname);
end; end;
function TProjectGroup.getProject(ix: Integer): ICECommonProject; function TProjectGroup.getProject(ix: Integer): ICECommonProject;
@ -198,7 +207,7 @@ var
begin begin
result := nil; result := nil;
for i := 0 to projectCount-1 do for i := 0 to projectCount-1 do
if SameFileName(item[i].fFilename, fname) then if SameFileName(item[i].absoluteFilename, fname) then
begin begin
item[i].lazyLoad; item[i].lazyLoad;
exit(item[i].fProj); exit(item[i].fProj);
@ -223,32 +232,56 @@ var
begin begin
fModified := true; fModified := true;
for it in fItems do for it in fItems do
begin if SameFileName(TProjectGroupItem(it).absoluteFilename, aProject.filename) then
if SameFileName(TProjectGroupItem(it).fFilename, aProject.filename) then
exit; exit;
end;
it := fItems.Add; it := fItems.Add;
TProjectGroupItem(it).fFilename := aProject.filename; if fBasePath = '' then
TProjectGroupItem(it).fFilename := aProject.filename
else
TProjectGroupItem(it).fFilename := ExtractRelativepath(fBasePath, aProject.filename);
TProjectGroupItem(it).fProj := aProject; TProjectGroupItem(it).fProj := aProject;
TProjectGroupItem(it).fGroup := self;
aProject.inGroup(true); aProject.inGroup(true);
fProjectIndex := it.Index; fProjectIndex := it.Index;
doChanged; doChanged;
end; end;
procedure TProjectGroup.openGroup(const fname: string); procedure TProjectGroup.openGroup(const fname: string);
var
i: integer;
begin begin
fBasePath := fname.extractFilePath;
loadFromFile(fname); loadFromFile(fname);
for i:= 0 to fItems.Count-1 do
getItem(i).fGroup := self;
doChanged; doChanged;
end; end;
procedure TProjectGroup.saveGroup(const fname: string); procedure TProjectGroup.saveGroup(const fname: string);
var
i: integer;
c: boolean = false;
n: string;
begin begin
n := fname.extractFilePath;
if (fBasePath <> '') and (n <> fBasePath) then
begin
c := true;
for i:= 0 to projectCount-1 do
getItem(i).fFilename := getItem(i).absoluteFilename;
end
else if fBasePath = '' then
c := true;
if c then for i:= 0 to projectCount-1 do
getItem(i).fFilename := ExtractRelativepath(n, getItem(i).fFilename);
fBasePath := n;
saveToFile(fname); saveToFile(fname);
end; end;
procedure TProjectGroup.closeGroup; procedure TProjectGroup.closeGroup;
begin begin
fItems.Clear; fItems.Clear;
fBasePath:='';
fFilename:= ''; fFilename:= '';
fModified:=false; fModified:=false;
fProjectIndex := -1; fProjectIndex := -1;
@ -293,7 +326,7 @@ procedure TProjectGroupItem.lazyLoad;
begin begin
if fProj = nil then if fProj = nil then
begin begin
fProj := loadProject(fFilename, true); fProj := loadProject(absoluteFilename, true);
fProj.inGroup(true); fProj.inGroup(true);
end; end;
end; end;
@ -305,6 +338,14 @@ begin
fProj := nil; fProj := nil;
inherited; inherited;
end; end;
function TProjectGroupItem.absoluteFilename: string;
begin
if fGroup.fBasePath = '' then
result := fFilename
else
result := expandFilenameEx(fGroup.fBasePath, fFilename);
end;
{$ENDREGION} {$ENDREGION}
{$REGION Widget Standard component things --------------------------------------} {$REGION Widget Standard component things --------------------------------------}
@ -473,6 +514,7 @@ begin
with lstProj.Items.Add do with lstProj.Items.Add do
begin begin
p := projectGroup.item[i]; p := projectGroup.item[i];
p.fGroup := projectGroup;
p.lazyLoad; p.lazyLoad;
Data:= p; Data:= p;
case p.project.getFormat of case p.project.getFormat of