|
@@ -32,7 +32,7 @@ import { rgbaNum } from "@persagy-web/big-edit/lib/until";
|
|
|
// 引入命令
|
|
|
import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand"
|
|
|
import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
|
|
|
-import { PTopoParser, SBasePipeUninTool } from "./"
|
|
|
+import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint } from "./"
|
|
|
|
|
|
/**
|
|
|
* 拓扑图场景类
|
|
@@ -53,8 +53,8 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
/**
|
|
|
* 改变 view 背景色
|
|
|
- *
|
|
|
- * @param val 颜色值
|
|
|
+ *
|
|
|
+ * @param val 颜色值
|
|
|
*/
|
|
|
changeBackgroundColor(val: any) {
|
|
|
if (!this.view) return;
|
|
@@ -110,7 +110,6 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
return this.grabItem.onMouseDown(event);
|
|
|
}
|
|
|
-
|
|
|
if (this.editCmd == "EditBaseLine") {
|
|
|
this.addPolyLineArrow(event);
|
|
|
this.clearCmdStatus();
|
|
@@ -153,12 +152,39 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
this.addBasePipe(event, this.legendObj);
|
|
|
this.clearCmdStatus();
|
|
|
}
|
|
|
- else if (this.editCmd == "") {
|
|
|
+ else if (this.editCmd == "equation") {
|
|
|
+ // 添加公式
|
|
|
+ this.addEquation(event, this.editCmd);
|
|
|
+ this.clearCmdStatus();
|
|
|
+ } else if (this.editCmd == "infoPoint") {
|
|
|
+ // 添加信息点
|
|
|
+ this.addInfoPoint(event, this.editCmd);
|
|
|
+ this.clearCmdStatus();
|
|
|
+ }else if (this.editCmd == "") {
|
|
|
super.onMouseDown(event);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 鼠标双击事件
|
|
|
+ *
|
|
|
+ * @param event 事件参数
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ onDoubleClick(event: SMouseEvent): boolean {
|
|
|
+ // 如果为复制状态则双击失效
|
|
|
+ // if (this.isCopy == "true") {
|
|
|
+ // return true
|
|
|
+ // }
|
|
|
+ if (!this.isEditStatus) {
|
|
|
+ return true
|
|
|
+ } else {
|
|
|
+ return super.onDoubleClick(event);
|
|
|
+ }
|
|
|
+
|
|
|
+ } // Function onDoubleClick()
|
|
|
+
|
|
|
+ /**
|
|
|
* 添加基本管道联通器
|
|
|
*
|
|
|
* @param event 鼠标事件
|
|
@@ -204,6 +230,76 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 添加公式
|
|
|
+ * @param event
|
|
|
+ */
|
|
|
+ addEquation(event: SMouseEvent, cmd: string) {
|
|
|
+ const data = {
|
|
|
+ /** 名称 */
|
|
|
+ name: '公式',
|
|
|
+ /** 图标 */
|
|
|
+ type: "Text",
|
|
|
+ /** 位置 */
|
|
|
+ pos: { x: event.x, y: event.y },
|
|
|
+ size: { width: 0, height: 0 },
|
|
|
+ /** 由应用自己定义 */
|
|
|
+ properties: {
|
|
|
+ type: "Equation" // 自定义类型用于区分mark与node
|
|
|
+ },
|
|
|
+ style: {
|
|
|
+ default: {
|
|
|
+ text: '请在右侧属性栏填写公式!',
|
|
|
+ color: "#646c73",
|
|
|
+ font: 14,
|
|
|
+ backgroundcolor: "#f7f9facc",
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ const item = new SBaseEquation(null, data);
|
|
|
+ item.moveTo(event.x, event.y);
|
|
|
+ item.moveable = true;
|
|
|
+ this.addItem(item);
|
|
|
+ this.grabItem = null;
|
|
|
+ item.connect("onContextMenu", this, this.getItem);
|
|
|
+ this.finishCreated(item);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加信息点
|
|
|
+ * @param event
|
|
|
+ */
|
|
|
+ addInfoPoint(event: SMouseEvent, cmd: string) {
|
|
|
+ const data = {
|
|
|
+ /** 名称 */
|
|
|
+ name: '信息点',
|
|
|
+ /** 图标 */
|
|
|
+ type: "Text",
|
|
|
+ /** 位置 */
|
|
|
+ pos: { x: event.x, y: event.y },
|
|
|
+ size: { width: 0, height: 0 },
|
|
|
+ /** 由应用自己定义 */
|
|
|
+ properties: {
|
|
|
+ type: "InfoPoint" // 自定义类型用于区分mark与node
|
|
|
+ },
|
|
|
+ style: {
|
|
|
+ default: {
|
|
|
+ text: '信息点',
|
|
|
+ color: "#646c73",
|
|
|
+ font: 14,
|
|
|
+ backgroundcolor: "#f7f9facc",
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ const item = new SBaseInfoPoint(null, data);
|
|
|
+ item.moveTo(event.x, event.y);
|
|
|
+ item.moveable = true;
|
|
|
+ this.addItem(item);
|
|
|
+ this.grabItem = null;
|
|
|
+ item.connect("onContextMenu", this, this.getItem);
|
|
|
+ this.finishCreated(item);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 鼠标右键事件
|
|
|
*
|
|
|
* @param event 鼠标事件参数
|