|
@@ -109,7 +109,10 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Type: "BaseLine" // 自定义类型用于区分mark与node
|
|
|
},
|
|
|
Style: {
|
|
|
- Line: [{ X: event.x, Y: event.y }],
|
|
|
+ Default: {
|
|
|
+ Line: [{ X: event.x, Y: event.y }],
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
const lineItem = new SBaseLineEdit(null, data);
|
|
@@ -138,29 +141,28 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Type: "Text",
|
|
|
/** 位置 */
|
|
|
Pos: { X: event.x, Y: event.y },
|
|
|
+ Size: { Width: 0, Height: 0 },
|
|
|
/** 由应用自己定义 */
|
|
|
Properties: {
|
|
|
+ Type: "BaseText" // 自定义类型用于区分mark与node
|
|
|
},
|
|
|
Style: {
|
|
|
- Text: '请在右侧属性栏输入文字!',
|
|
|
- Color: "#646c73",
|
|
|
- Font: 14,
|
|
|
- BackgroundColor: "#f7f9facc",
|
|
|
- Type: "BaseText" // 自定义类型用于区分mark与node
|
|
|
+ Default: {
|
|
|
+ Text: '请在右侧属性栏输入文字!',
|
|
|
+ Color: "#646c73",
|
|
|
+ Font: 14,
|
|
|
+ BackgroundColor: "#f7f9facc",
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- const item = new SBaseExpainEdit(null, data);
|
|
|
+ const item = new SBaseTextEdit(null, data);
|
|
|
item.moveTo(event.x, event.y);
|
|
|
- item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- // this.Markers.push(item);
|
|
|
this.grabItem = null;
|
|
|
- // this.focusItem = item;
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
|
this.finishCreated(item);
|
|
|
- // this.scenceUpdate(this);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -170,8 +172,6 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
*/
|
|
|
addExplainItem(event: SMouseEvent): void {
|
|
|
const data = {
|
|
|
- /** ID */
|
|
|
- ID: uuid(),
|
|
|
/** 名称 */
|
|
|
Name: '基础注释文本',
|
|
|
/** 图标 */
|
|
@@ -180,7 +180,6 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Pos: { X: event.x, Y: event.y },
|
|
|
/** 由应用自己定义 */
|
|
|
Properties: {
|
|
|
- // IconUrl: require(`../../assets/images/t-text-hover.png`),
|
|
|
Text: '请在右侧属性栏输入文字!',
|
|
|
Color: "#646c73",
|
|
|
Font: 14,
|
|
@@ -220,12 +219,14 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Pos: { X: event.x, Y: event.y },
|
|
|
/** 由应用自己定义 */
|
|
|
Properties: {
|
|
|
- // IconUrl: require(`../../assets/images/t-img-hover.png`),
|
|
|
- StrokeColor: "#c0ccda",
|
|
|
- Url: '',
|
|
|
Type: "BaseImage",
|
|
|
},
|
|
|
- Style: {}
|
|
|
+ Style: {
|
|
|
+ Default: {
|
|
|
+ StrokeColor: "#c0ccda",
|
|
|
+ Url: '',
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
const item = new SPersagyImageEdit(null, data);
|
|
|
item.selectable = true;
|
|
@@ -251,7 +252,9 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Type: "BaseRect",
|
|
|
},
|
|
|
Style: {
|
|
|
- Line: [{ X: event.x, Y: event.y }],
|
|
|
+ Default: {
|
|
|
+ Line: [{ X: event.x, Y: event.y }],
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
const rectItem = new SBaseRectEdit(null, data);
|
|
@@ -279,7 +282,9 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Properties: {
|
|
|
},
|
|
|
Style: {
|
|
|
- Line: [{ X: event.x, Y: event.y }],
|
|
|
+ Default: {
|
|
|
+ Line: [{ X: event.x, Y: event.y }],
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
const triangleItem = new SBaseTriangelEdit(null, data);
|
|
@@ -307,7 +312,9 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Properties: {
|
|
|
},
|
|
|
Style: {
|
|
|
- Line: [{ X: event.x, Y: event.y }],
|
|
|
+ Default: {
|
|
|
+ Line: [{ X: event.x, Y: event.y }],
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
const arrowItem = new SBaseArrowEdit(null, data);
|
|
@@ -366,7 +373,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
List = this.selectContainer.itemList;
|
|
|
};
|
|
|
let styleValue: any
|
|
|
- if (styleType == "strokeColor") {
|
|
|
+ if (styleType == "strokeColor" || styleType == "backgroundColor") {
|
|
|
const colorlist = rgbaNum(changeStyle)
|
|
|
styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
|
|
|
} else if (styleType == "lineStyle") {
|