Aggiornato nome IdGroup in GroupId

This commit is contained in:
Annamaria Sassi
2025-10-22 17:00:44 +02:00
parent fad95d22b6
commit aa956217eb
14 changed files with 80 additions and 76 deletions
+2 -2
View File
@@ -193,9 +193,9 @@ namespace WebWindowComplex.Models
public abstract Area Copy(Area ParentArea);
public void SetIdGroup(int nIdGroup)
public void SetGroupId(int nGroupId)
{
m_GroupId = nIdGroup;
m_GroupId = nGroupId;
}
public void SwapAree()
+2 -2
View File
@@ -64,7 +64,7 @@ namespace WebWindowComplex.Models
{
Fill newFill = new Fill(newParentArea, m_ParentWindow);
AddCounterGroup();
newFill.SetIdGroup(nCounterGroup);
newFill.SetGroupId(nCounterGroup);
newFill.SetFillType(SelFillType);
newFill.SetAreaType(AreaType);
return newFill;
@@ -78,7 +78,7 @@ namespace WebWindowComplex.Models
{
Fill Fill = new Fill(AreaParent, AreaParent.ParentWindow);
AddCounterGroup();
Fill.SetIdGroup(nCounterGroup);
Fill.SetGroupId(nCounterGroup);
Fill.SetAreaType(AreaTypes.FILL);
Fill.SetFillType(FillType);
return Fill;
+2 -2
View File
@@ -460,7 +460,7 @@ namespace WebWindowComplex.Models
{
Sash newSash = new Sash(newParentArea, m_ParentWindow);
AddCounterGroup();
newSash.SetIdGroup(nCounterGroup);
newSash.SetGroupId(nCounterGroup);
newSash.SetAreaType(AreaType);
// Imposta la quantità di ante e definisce SashDimension di ogni anta ai valori di default
newSash.SetSashQty(nSashQty);
@@ -561,7 +561,7 @@ namespace WebWindowComplex.Models
{
Sash newSash = new Sash(Area, Area.ParentWindow);
AddCounterGroup();
newSash.SetIdGroup(nCounterGroup);
newSash.SetGroupId(nCounterGroup);
newSash.SetAreaType(AreaTypes.SASH);
newSash.SetSashQty(1);
newSash.SetOrientationSashType(OrientationSash.VERTICAL);
+2 -2
View File
@@ -316,7 +316,7 @@ namespace WebWindowComplex.Models
{
Split newSplit = new Split(newParentArea, ParentWindow);
AddCounterGroup();
newSplit.SetIdGroup(nCounterGroup);
newSplit.SetGroupId(nCounterGroup);
newSplit.SetSplitStartVert(bSplitStartVert);
newSplit.SetSplitQtyVert(nSplitQtyVert);
for (int i = 0; i < SplitVertList.Count; i++)
@@ -363,7 +363,7 @@ namespace WebWindowComplex.Models
{
Split Split = new Split(Area, Area.ParentWindow);
AddCounterGroup();
Split.SetIdGroup(nCounterGroup);
Split.SetGroupId(nCounterGroup);
Split.SetAreaType(AreaTypes.SPLIT);
Split.SetSplitShape(SplitShape, true);
return Split;
+2 -2
View File
@@ -19,7 +19,7 @@ namespace WebWindowComplex.Models
{
Splitted newSplitted = new Splitted(newParentArea, ParentWindow);
AddCounterGroup();
newSplitted.SetIdGroup(nCounterGroup);
newSplitted.SetGroupId(nCounterGroup);
newSplitted.SetAreaType(AreaType);
foreach (var item in AreaList)
{
@@ -37,7 +37,7 @@ namespace WebWindowComplex.Models
{
Splitted Splitted = new Splitted(ParentArea, ParentArea.ParentWindow);
AddCounterGroup();
Splitted.SetIdGroup(nCounterGroup);
Splitted.SetGroupId(nCounterGroup);
Splitted.SetAreaType(AreaTypes.SPLITTED);
return Splitted;
}