|
@@ -55,7 +55,7 @@ export class EditScence extends SGraphScene {
|
|
|
// 取消操作
|
|
|
this.focusItem.cancelOperate();
|
|
|
this.focusItem = null;
|
|
|
- // this.selectContainer.
|
|
|
+ // this.selectContainer.clear()
|
|
|
}
|
|
|
if (this.view) {
|
|
|
this.view.update();
|
|
@@ -78,7 +78,8 @@ export class EditScence extends SGraphScene {
|
|
|
|
|
|
/** 当前选中焦点Item */
|
|
|
focusItem: SGraphItem | null = null;
|
|
|
-
|
|
|
+ /** 当前选中焦点ItemList */
|
|
|
+ focusItemList: SGraphItem[] | null = null;
|
|
|
/**图例节点 */
|
|
|
Nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域) // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
|
|
|
/**图例节点 */ Markers: any = [];
|
|
@@ -193,6 +194,11 @@ export class EditScence extends SGraphScene {
|
|
|
item.connect("finishCreated", this, this.finishCreated);
|
|
|
this.grabItem = item;
|
|
|
this.focusItem = item;
|
|
|
+ // 起始item点
|
|
|
+ item.startItem = clickItem;
|
|
|
+ if (clickItem) {
|
|
|
+ clickItem.connect('onMove', item, item.changePos);
|
|
|
+ }
|
|
|
this.scenceUpdate(this);
|
|
|
// this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
// item.connect("onMove", this, this.onItemMove.bind(this));
|
|
@@ -211,7 +217,6 @@ export class EditScence extends SGraphScene {
|
|
|
item.zOrder = ItemOrder.polylineOrder;
|
|
|
this.addItem(item);
|
|
|
item.connect("finishCreated", this, this.finishCreated);
|
|
|
- // this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.grabItem = item;
|
|
|
this.focusItem = item;
|
|
|
return true;
|
|
@@ -250,7 +255,6 @@ export class EditScence extends SGraphScene {
|
|
|
this.addItem(item);
|
|
|
this.Relations.push(item);
|
|
|
item.connect("finishCreated", this, this.finishCreated);
|
|
|
- // this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.grabItem = item;
|
|
|
this.focusItem = item;
|
|
|
// 起始锚点
|
|
@@ -469,6 +473,7 @@ export class EditScence extends SGraphScene {
|
|
|
this.Nodes.push(item);
|
|
|
this.grabItem = item;
|
|
|
this.focusItem = item;
|
|
|
+ this.finishCreated(item);
|
|
|
this.scenceUpdate(this);
|
|
|
}
|
|
|
|
|
@@ -483,10 +488,11 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
updatedText(str: string): void {
|
|
|
if (this.focusItem) {
|
|
|
- const old = this.focusItem.text;
|
|
|
+ const oldMsg = this.focusItem.text;
|
|
|
+ const newMsg = str;
|
|
|
this.focusItem.text = str;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", oldMsg, newMsg));
|
|
|
this.scenceUpdate(this);
|
|
|
- // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", old, str));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -510,11 +516,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
updatedLineWidth(lineWidth: number): void {
|
|
|
if (this.focusItem) {
|
|
|
- // let old = new SFont(this.focusItem.font);
|
|
|
- // let font = new SFont(this.focusItem.font);
|
|
|
- // font.size = size;
|
|
|
+ const oldMsg = this.focusItem.lineWidth;
|
|
|
+ const newMsg = lineWidth;
|
|
|
this.focusItem.lineWidth = lineWidth;
|
|
|
- // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "font", old, font));
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "lineWidth", oldMsg, newMsg));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -524,9 +529,11 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
updatedFontColor(color: string): void {
|
|
|
if (this.focusItem) {
|
|
|
- let old = this.focusItem.color;
|
|
|
- this.focusItem.color = new SColor(color);
|
|
|
- // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
|
|
|
+ const oldMsg = this.focusItem.color;
|
|
|
+ const newMsg = new SColor(color);
|
|
|
+
|
|
|
+ this.focusItem.color = newMsg;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", oldMsg, newMsg));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -557,13 +564,17 @@ export class EditScence extends SGraphScene {
|
|
|
|
|
|
updatedWidth(width: number): void {
|
|
|
if (this.focusItem) {
|
|
|
- // let old = this.focusItem.width;
|
|
|
+ let oldMsg = null;
|
|
|
+ const newMsg = width;
|
|
|
if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
|
|
|
+ oldMsg = this.focusItem.sWidth
|
|
|
this.focusItem.sWidth = width;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "sWidth", oldMsg, newMsg));
|
|
|
} else {
|
|
|
+ oldMsg = this.focusItem.width
|
|
|
this.focusItem.width = width;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "width", oldMsg, newMsg));
|
|
|
}
|
|
|
- // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -573,13 +584,18 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
updatedHeight(height: number): void {
|
|
|
if (this.focusItem) {
|
|
|
- // let old = this.focusItem.width;
|
|
|
+ let oldMsg = null;
|
|
|
+ const newMsg = height;
|
|
|
if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
|
|
|
+ oldMsg = this.focusItem.sHeight;
|
|
|
this.focusItem.sHeight = height;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "sHeight", oldMsg, newMsg));
|
|
|
} else {
|
|
|
+ oldMsg = this.focusItem.height;
|
|
|
this.focusItem.height = height;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "height", oldMsg, newMsg));
|
|
|
}
|
|
|
- // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -604,7 +620,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
updatedbackColor(color: string): void {
|
|
|
if (this.focusItem) {
|
|
|
+ const newMsg = new SColor(color);
|
|
|
+ const oldMsg = this.focusItem.backgroundColor;
|
|
|
this.focusItem.backgroundColor = new SColor(color);
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "backgroundColor", oldMsg, newMsg));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -636,7 +655,10 @@ export class EditScence extends SGraphScene {
|
|
|
} else if (val == "solid") {
|
|
|
borderStyle = SLineStyle.Soild;
|
|
|
}
|
|
|
+ const newMsg = borderStyle;
|
|
|
+ const oldMsg = this.focusItem.lineStyle;
|
|
|
this.focusItem.lineStyle = borderStyle;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "lineStyle", oldMsg, newMsg));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -646,7 +668,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
upadataLengedName(val: string): void {
|
|
|
if (this.focusItem && this.focusItem.data) {
|
|
|
+ const newMsg = val;
|
|
|
+ const oldMsg = this.focusItem.text;
|
|
|
this.focusItem.text = val;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", oldMsg, newMsg));
|
|
|
this.scenceUpdate(this);
|
|
|
}
|
|
|
}
|
|
@@ -657,7 +682,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
upadatImageNum(num: number): void {
|
|
|
if (this.focusItem && this.focusItem.num) {
|
|
|
+ const newMsg = num;
|
|
|
+ const oldMsg = this.focusItem.num;
|
|
|
this.focusItem.num = num;
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "num", oldMsg, newMsg));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -667,7 +695,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
upadatfillColor(fillColor: string): void {
|
|
|
if (this.focusItem && this.focusItem.fillColor) {
|
|
|
+ const newMsg = new SColor(fillColor);
|
|
|
+ const oldMsg = this.focusItem.fillColor;
|
|
|
this.focusItem.fillColor = new SColor(fillColor);
|
|
|
+ this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "num", oldMsg, newMsg));
|
|
|
}
|
|
|
}
|
|
|
/**
|
|
@@ -687,6 +718,10 @@ export class EditScence extends SGraphScene {
|
|
|
upadatAttachObjectIds(AttachObjectIds: []): void {
|
|
|
if (this.focusItem) {
|
|
|
this.focusItem.data.AttachObjectIds = AttachObjectIds;
|
|
|
+ // 重新选中focusitem
|
|
|
+ const item = this.focusItem;
|
|
|
+ this.selectContainer.clear();
|
|
|
+ this.selectContainer.toggleItem(item)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -706,6 +741,7 @@ export class EditScence extends SGraphScene {
|
|
|
) {
|
|
|
this.focusItem.deletePoint(this.focusItem.curIndex);
|
|
|
} else {
|
|
|
+ this.undoStack.push(new SGraphDeleteCommand(this, this.focusItem));
|
|
|
this.removeItem(this.focusItem);
|
|
|
let a = -1;
|
|
|
this.Nodes.forEach((item: any, index: number) => {
|
|
@@ -742,6 +778,47 @@ export class EditScence extends SGraphScene {
|
|
|
}
|
|
|
this.scenceUpdate(this);
|
|
|
}
|
|
|
+ } else {
|
|
|
+ //批量删除
|
|
|
+ if (!this.focusItemList) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.undoStack.push(new SGraphDeleteListCommand(this,this.focusItemList))
|
|
|
+ this.focusItemList.forEach((focusItem) => {
|
|
|
+ this.removeItem(focusItem);
|
|
|
+ let a = -1
|
|
|
+ this.Nodes.forEach((item: any, index: number) => {
|
|
|
+ if (item.id == focusItem.id) {
|
|
|
+ a = index
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (a > -1) {
|
|
|
+ this.Nodes.splice(a, 1);
|
|
|
+ }
|
|
|
+ let b = -1;
|
|
|
+ this.Markers.forEach((item: any, index: number) => {
|
|
|
+ if (item.id == focusItem.id) {
|
|
|
+ b = index
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (b > -1) {
|
|
|
+ this.Markers.splice(b, 1);
|
|
|
+ }
|
|
|
+ let c = -1;
|
|
|
+ this.Relations.forEach((item: any, index: number) => {
|
|
|
+ if (item.id == focusItem.id) {
|
|
|
+ c = index
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (c > -1) {
|
|
|
+ this.Relations.splice(c, 1);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ this.focusItemList = [];
|
|
|
+ if (this.view) {
|
|
|
+ this.view.update();
|
|
|
+ }
|
|
|
+ this.scenceUpdate(this);
|
|
|
}
|
|
|
}
|
|
|
scenceUpdate(scence: any) {}
|
|
@@ -797,14 +874,23 @@ export class EditScence extends SGraphScene {
|
|
|
* 执行取消操作
|
|
|
*/
|
|
|
redo(): void {
|
|
|
- this.undoStack.undo();
|
|
|
+ if (this.grabItem && this.grabItem.redo) {
|
|
|
+ this.grabItem.redo()
|
|
|
+ } else {
|
|
|
+ this.undoStack.redo();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 执行重做操作执行
|
|
|
*/
|
|
|
undo(): void {
|
|
|
- this.undoStack.redo();
|
|
|
+ if (this.grabItem && this.grabItem.undo) {
|
|
|
+ this.grabItem.undo()
|
|
|
+ } else {
|
|
|
+ this.undoStack.undo();
|
|
|
+ }
|
|
|
}
|
|
|
/**
|
|
|
* 完成事件创建的回调函数
|
|
@@ -829,6 +915,9 @@ export class EditScence extends SGraphScene {
|
|
|
if (this.grabItem instanceof TipelineItem) {
|
|
|
this.setTipeEndanchor(event);
|
|
|
return true;
|
|
|
+ } else if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Create) {
|
|
|
+ this.setLineItem(event)
|
|
|
+ return true;
|
|
|
}
|
|
|
return this.grabItem.onMouseDown(event);
|
|
|
}
|
|
@@ -866,6 +955,9 @@ export class EditScence extends SGraphScene {
|
|
|
}
|
|
|
|
|
|
onMouseMove(event: SMouseEvent): boolean {
|
|
|
+ if (!this.isEditStatus) {
|
|
|
+ return super.onMouseMove(event);
|
|
|
+ }
|
|
|
if (this.isAbsorbing) {
|
|
|
if (!this.highLight) {
|
|
|
this.highLight = new HighlightItem(null);
|
|
@@ -877,6 +969,20 @@ export class EditScence extends SGraphScene {
|
|
|
return super.onMouseMove(event);
|
|
|
}
|
|
|
|
|
|
+ onMouseUp(event: SMouseEvent): boolean {
|
|
|
+ if (this.grabItem) {
|
|
|
+ if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Edit) {
|
|
|
+ this.setLineItem(event)
|
|
|
+ return true;
|
|
|
+ } else if (this.grabItem instanceof TipelineItem){
|
|
|
+ this.updateTipeAnc(event);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ return this.grabItem.onMouseUp(event);
|
|
|
+ }
|
|
|
+ return super.onMouseUp(event)
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 键盘事件
|
|
|
*
|
|
@@ -884,6 +990,9 @@ export class EditScence extends SGraphScene {
|
|
|
* @return boolean
|
|
|
*/
|
|
|
onKeyDown(event: KeyboardEvent): any {
|
|
|
+ if (!this.isEditStatus) {
|
|
|
+ return super.onKeyDown(event);
|
|
|
+ }
|
|
|
if (this.grabItem) {
|
|
|
this.grabItem.onKeyDown(event);
|
|
|
if (event.code == "Escape") {
|
|
@@ -902,8 +1011,24 @@ export class EditScence extends SGraphScene {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 鼠标双击事件
|
|
|
+ *
|
|
|
+ * @param event 事件参数
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ onDoubleClick(event: SMouseEvent): boolean {
|
|
|
+ if (!this.isEditStatus) {
|
|
|
+ return true
|
|
|
+ } else {
|
|
|
+ return super.onDoubleClick(event);
|
|
|
+ }
|
|
|
+
|
|
|
+ } // Function onDoubleClick()
|
|
|
+
|
|
|
/**
|
|
|
- * 设置结束锚点
|
|
|
+ * 设置管线结束锚点
|
|
|
*
|
|
|
*/
|
|
|
setTipeEndanchor(event: SMouseEvent): void {
|
|
@@ -932,6 +1057,169 @@ export class EditScence extends SGraphScene {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 管线item修改锚点
|
|
|
+ *
|
|
|
+ */
|
|
|
+ updateTipeAnc(event: SMouseEvent): void {
|
|
|
+ if (this.grabItem instanceof TipelineItem){
|
|
|
+ const anc = this.clickIsAnchor(event);
|
|
|
+ if (anc) {
|
|
|
+ const p = anc.mapToScene(0, 0)
|
|
|
+ event.x = p.x;
|
|
|
+ event.y = p.y;
|
|
|
+ if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
+ if (this.grabItem.curIndex == 0) {
|
|
|
+ if (this.grabItem.startAnchor){
|
|
|
+ this.grabItem.startAnchor.isConnected = false
|
|
|
+ this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ }
|
|
|
+ anc.isConnected = true;
|
|
|
+ this.grabItem.startAnchor = anc;
|
|
|
+ this.grabItem.anchor1ID = anc.id
|
|
|
+ this.grabItem.node1Id = anc.parent.id
|
|
|
+ anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
|
|
|
+ }
|
|
|
+ if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
|
|
|
+ if (this.grabItem.endAnchor){
|
|
|
+ this.grabItem.endAnchor.isConnected = false
|
|
|
+ this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ }
|
|
|
+ anc.isConnected = true;
|
|
|
+ this.grabItem.endAnchor = anc;
|
|
|
+ this.grabItem.anchor2ID = anc.id
|
|
|
+ this.grabItem.node2Id = anc.parent.id
|
|
|
+ anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.grabItem.onMouseUp(event)
|
|
|
+ return
|
|
|
+ } else {
|
|
|
+ if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
+ if (this.grabItem.curIndex == 0) {
|
|
|
+ if (this.grabItem.startAnchor){
|
|
|
+ this.grabItem.startAnchor.isConnected = false
|
|
|
+ this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ this.grabItem.startAnchor = null;
|
|
|
+ this.grabItem.anchor1ID = ''
|
|
|
+ this.grabItem.node1Id = ''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
|
|
|
+ if (this.grabItem.endAnchor){
|
|
|
+ this.grabItem.endAnchor.isConnected = false
|
|
|
+ this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ this.grabItem.endAnchor = null;
|
|
|
+ this.grabItem.anchor2ID = ''
|
|
|
+ this.grabItem.node2Id = ''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.grabItem.onMouseUp(event)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设置直线结束Item
|
|
|
+ *
|
|
|
+ */
|
|
|
+ setLineItem(event: SMouseEvent): void {
|
|
|
+ if (this.grabItem instanceof SLineMarkerItem) {
|
|
|
+ const item = this.clickIsItem(event);
|
|
|
+ // 鼠标点是否在某个item内
|
|
|
+ if (item) {
|
|
|
+ let scenePoint = item.boundingRect().center();
|
|
|
+ const p = item.mapToScene(scenePoint.x, scenePoint.y);
|
|
|
+ event.x = p.x;
|
|
|
+ event.y = p.y;
|
|
|
+ if (this.grabItem.status == SItemStatus.Create) {
|
|
|
+ // 点击在item内、创建状态且端点列表不为空时将直线结束端点和item绑定
|
|
|
+ if (this.grabItem.line.length) {
|
|
|
+ if (this.grabItem.startItem ?.id == item.id) {
|
|
|
+ this.grabItem.endItem = null;
|
|
|
+ } else {
|
|
|
+ this.grabItem.endItem = item;
|
|
|
+ this.grabItem.line[1] = new SPoint(event.x, event.y);
|
|
|
+ item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.grabItem.onMouseDown(event);
|
|
|
+ return
|
|
|
+ } else if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
+ // 点击在item内、编辑状态且点击的为结束端点时
|
|
|
+ if (this.grabItem.curIndex == 1) {
|
|
|
+ // 直线关联的起始item是直线结束端点所在的item时,不吸附在点击item中心并将直线关联的结束item置为null
|
|
|
+ if (this.grabItem.startItem ?.id == item.id) {
|
|
|
+ this.grabItem.endItem = null;
|
|
|
+ } else {// 反正吸附,关联
|
|
|
+ this.grabItem.endItem = item;
|
|
|
+ this.grabItem.line[1] = new SPoint(event.x, event.y);
|
|
|
+ item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ }
|
|
|
+ } else if (this.grabItem.curIndex == 0) {
|
|
|
+ if (this.grabItem.endItem ?.id == item.id) {
|
|
|
+ this.grabItem.startItem = null;
|
|
|
+ } else {
|
|
|
+ this.grabItem.startItem = item;
|
|
|
+ this.grabItem.line[0] = new SPoint(event.x, event.y);
|
|
|
+ item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 如果不在item内且点击的是直线的某个端点,将端点的关联item置为null
|
|
|
+ if (this.grabItem.line.length && this.grabItem.curIndex != -1) {
|
|
|
+ if (this.grabItem.curIndex == 1) {
|
|
|
+ this.grabItem.endItem = null;
|
|
|
+ } else if (this.grabItem.curIndex == 0) {
|
|
|
+ this.grabItem.startItem = null;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.grabItem.onMouseDown(event);
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // if (this.grabItem.status == SItemStatus.Create) {
|
|
|
+ // // 鼠标点是否在某个item内
|
|
|
+ // if (item) {
|
|
|
+ // let scenePoint = item.boundingRect().center();
|
|
|
+ // const p = item.mapToScene(scenePoint.x, scenePoint.y);
|
|
|
+ // event.x = p.x;
|
|
|
+ // event.y = p.y;
|
|
|
+ // if (this.grabItem.line.length && this.grabItem.curIndex == -1) {
|
|
|
+ // this.grabItem.endItem = item;
|
|
|
+ // this.grabItem.line[1] = new SPoint(event.x, event.y);
|
|
|
+ // item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ // }
|
|
|
+ // this.grabItem.onMouseDown(event);
|
|
|
+ // return
|
|
|
+ // } else {
|
|
|
+ // if (this.grabItem.line.length && this.grabItem.curIndex != -1) {
|
|
|
+ // if (this.grabItem.curIndex == 1) {
|
|
|
+ // this.grabItem.endItem = null;
|
|
|
+ // } else if (this.grabItem.curIndex == 0) {
|
|
|
+ // this.grabItem.startItem = null;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // } else if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
+ // if (this.grabItem.curIndex == 1) {
|
|
|
+ // this.grabItem.endItem = item;
|
|
|
+ // this.grabItem.line[1] = new SPoint(event.x, event.y);
|
|
|
+ // item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ // } else if (this.grabItem.curIndex == 0) {
|
|
|
+ // this.grabItem.startItem = item;
|
|
|
+ // this.grabItem.line[0] = new SPoint(event.x, event.y);
|
|
|
+ // item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ this.grabItem.onMouseUp(event);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 划线时点击位置是否是锚点
|
|
|
*
|
|
|
* @param event 事件
|