|
@@ -24,7 +24,6 @@
|
|
|
* *********************************************************************************************************************
|
|
|
*/
|
|
|
|
|
|
-
|
|
|
import { SColor, SLine, SPainter, SPoint, SRect } from "@persagy-web/draw/";
|
|
|
import { SMouseButton, SMouseEvent, SUndoStack } from "@persagy-web/base";
|
|
|
import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
|
|
@@ -37,6 +36,7 @@ import {
|
|
|
} from "@persagy-web/graph/";
|
|
|
import { SGraphEdit } from ".."
|
|
|
import { Marker } from "../type/Marker";
|
|
|
+
|
|
|
/**
|
|
|
* 直线编辑类
|
|
|
*
|
|
@@ -60,88 +60,85 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
private minY = Number.MAX_SAFE_INTEGER;
|
|
|
/** Y坐标最大值 */
|
|
|
private maxY = Number.MIN_SAFE_INTEGER;
|
|
|
-
|
|
|
/** 线段 */
|
|
|
private _line: SPoint[] = [];
|
|
|
get line(): SPoint[] {
|
|
|
return this._line;
|
|
|
- }
|
|
|
+ } // Get line
|
|
|
set line(arr: SPoint[]) {
|
|
|
this._line = arr;
|
|
|
this.update();
|
|
|
- }
|
|
|
-
|
|
|
+ } // Set line
|
|
|
/** 是否垂直水平绘制 */
|
|
|
private _verAndLeve: Boolean = false;
|
|
|
get verAndLeve(): Boolean {
|
|
|
return this._verAndLeve;
|
|
|
- }
|
|
|
+ } // Get verAndLeve
|
|
|
set verAndLeve(bool: Boolean) {
|
|
|
this._verAndLeve = bool;
|
|
|
this.update();
|
|
|
- }
|
|
|
+ } // Set verAndLeve
|
|
|
|
|
|
/** 是否完成绘制 */
|
|
|
protected _status: SItemStatus = SItemStatus.Normal;
|
|
|
get status(): SItemStatus {
|
|
|
return this._status;
|
|
|
- }
|
|
|
+ } // Get status
|
|
|
set status(v: SItemStatus) {
|
|
|
this._status = v;
|
|
|
this.undoStack.clear();
|
|
|
this.update();
|
|
|
- }
|
|
|
+ } // Set status
|
|
|
|
|
|
/** 线条颜色 */
|
|
|
private _strokeColor: SColor = SColor.Black;
|
|
|
get strokeColor(): SColor {
|
|
|
return this._strokeColor;
|
|
|
- }
|
|
|
+ } // Get strokeColor
|
|
|
set strokeColor(v: SColor) {
|
|
|
this._strokeColor = v;
|
|
|
this.update();
|
|
|
- }
|
|
|
+ }// Get strokeColor
|
|
|
|
|
|
/** 线条样式 */
|
|
|
private _lineStyle: SLineStyle = SLineStyle.Solid;
|
|
|
get lineStyle(): SLineStyle {
|
|
|
return this._lineStyle;
|
|
|
- }
|
|
|
+ } // Get lineStyle
|
|
|
set lineStyle(v: SLineStyle) {
|
|
|
this._lineStyle = v;
|
|
|
this.update();
|
|
|
- }
|
|
|
+ } // Set lineStyle
|
|
|
|
|
|
/** 端点填充色 */
|
|
|
private _fillColor: SColor = SColor.White;
|
|
|
get fillColor(): SColor {
|
|
|
return this._fillColor;
|
|
|
- }
|
|
|
+ } // Get fillColor
|
|
|
set fillColor(v: SColor) {
|
|
|
this._fillColor = v;
|
|
|
this.update();
|
|
|
- }
|
|
|
+ } //Set fillColor
|
|
|
|
|
|
/** 选中端点填充色 */
|
|
|
private _activeFillColor: SColor = new SColor("#2196f3");
|
|
|
get activeFillColor(): SColor {
|
|
|
return this._activeFillColor;
|
|
|
- }
|
|
|
+ } //Get activeFillColor
|
|
|
set activeFillColor(v: SColor) {
|
|
|
this._activeFillColor = v;
|
|
|
this.update();
|
|
|
- }
|
|
|
+ } //Set activeFillColor
|
|
|
|
|
|
/** 线条宽度 */
|
|
|
private _lineWidth: number = 1;
|
|
|
get lineWidth(): number {
|
|
|
return this._lineWidth;
|
|
|
- }
|
|
|
+ } //Get lineWidth
|
|
|
set lineWidth(v: number) {
|
|
|
- console.log('lineWidth', v)
|
|
|
this._lineWidth = v;
|
|
|
this.update();
|
|
|
- }
|
|
|
+ } //Set lineWidth
|
|
|
|
|
|
/** 拖动灵敏度 */
|
|
|
dis: number = 5;
|
|
@@ -173,7 +170,7 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
if (data.style.default.line) {
|
|
|
let setPointList: SPoint[];
|
|
|
setPointList = data.style.default.line.map(i => {
|
|
|
- return new SPoint(i.X, i.Y)
|
|
|
+ return new SPoint(i.x, i.y)
|
|
|
});
|
|
|
this.line = setPointList;
|
|
|
}
|
|
@@ -499,6 +496,11 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
);
|
|
|
} // Function boundingRect()
|
|
|
|
|
|
+ /**
|
|
|
+ * 返回对象储存的相关数据
|
|
|
+ *
|
|
|
+ * @return formData
|
|
|
+ */
|
|
|
toData() {
|
|
|
const Line = [{ x: this.line[0].x, y: this.line[0].y }, { x: this.line[1].x, y: this.line[1].y }];
|
|
|
this.data.style.default.line = Line;
|
|
@@ -506,7 +508,8 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
this.data.style.default.lineStyle = this.lineStyle;
|
|
|
this.data.style.default.strokeColor = this.strokeColor;
|
|
|
return this.data
|
|
|
- }
|
|
|
+ } // Function toData()
|
|
|
+
|
|
|
/**
|
|
|
* Item绘制操作
|
|
|
*
|