SBaseTextEdit.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. /*
  2. * *********************************************************************************************************************
  3. *
  4. * !!
  5. * .F88X
  6. * X8888Y
  7. * .}888888N;
  8. * i888888N; .:! .I$WI:
  9. * R888888I .'N88~ i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
  10. * .R888888I .;N8888~ .X8' "8I.!,/8" !%NY8`"8I8~~8>,88I
  11. * +888888N; .8888888Y "&&8Y.}8,
  12. * ./888888N; .R888888Y .'}~ .>}'.`+> i}! "i' +/' .'i~ !11,.:">, .~]! .i}i
  13. * ~888888%: .I888888l .]88~`1/iY88Ii+1'.R$8$8]"888888888> Y8$ W8E X8E W8888'188Il}Y88$*
  14. * 18888888 E8888881 .]W%8$`R8X'&8%++N8i,8N%N8+l8%` .}8N:.R$RE%N88N%N$K$R 188,FE$8%~Y88I
  15. * .E888888I .i8888888' .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
  16. * 8888888I .,N888888~ ~88i"8W,!N8*.I88.}888%F,i$88"F88" 888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
  17. * i888888N' I888Y ]88;/EX*IFKFK88X K8R .l8W 88Y ~88}'88E&%8W.X8N``]88!.$8K .:W8I
  18. * .i888888N; I8Y .&8$ .X88! i881.:%888>I88 ;88] +88+.';;;;:.Y88X 18N.,88l .+88/
  19. * .:R888888I
  20. * .&888888I Copyright (c) 2016-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import { SPainter, SRect, SColor, SFont, SPoint, SSize } from "@persagy-web/draw";
  27. import { SGraphItem, STextOrigin, SLineStyle, SAnchorItem } from "@persagy-web/graph/";
  28. import { SItemStatus } from "@persagy-web/big";
  29. import { SGraphEdit } from ".."
  30. import { Marker } from "../type/Marker";
  31. import { ItemOrder } from '@persagy-web/big/lib';
  32. /**
  33. * 文本编辑类
  34. *
  35. * @author 韩耀龙 <han_yao_long@163.com>
  36. */
  37. export class SBaseTextEdit extends SGraphEdit {
  38. /////////////////////////////////////////////////////////////////////////////////////////////////////////////
  39. //属性
  40. /**编辑相关操作的数据 */
  41. data: Marker;
  42. /** 起始锚点 */
  43. startItem: SGraphItem | null = null;
  44. /** 结束锚点 */
  45. endItem: SGraphItem | null = null;
  46. /** 编辑状态 */
  47. protected _status: SItemStatus = SItemStatus.Normal;
  48. get status(): SItemStatus {
  49. return this._status;
  50. } //Get status
  51. set status(value: SItemStatus) {
  52. const oldStatus = this._status;
  53. const newStatus = value;
  54. this._status = value;
  55. //状态变更触发事件
  56. this.$emit('StatusChange', oldStatus, newStatus)
  57. this.update();
  58. } //Set status
  59. /** 记录 painter */
  60. private _painter: SPainter | null = null;
  61. /** 文本内容 */
  62. private _text: string = "";
  63. get text(): string {
  64. return this._text;
  65. } //Get text
  66. set text(v: string) {
  67. this._text = v;
  68. this._textArr = this.text.split(/\n/g);
  69. this.drawFormatText();
  70. this.update();
  71. } //Set text
  72. /** 切割后的文本数组 */
  73. private _textArr: string[] = [];
  74. /** 锚点 list */
  75. anchorList: SAnchorItem[] = [];
  76. /** 宽度 */
  77. private _width: number = 64;
  78. get width(): number {
  79. return this._width;
  80. } //Get width
  81. set width(v: number) {
  82. if (v > 0) {
  83. if (v != this._width) {
  84. let w = this._width;
  85. this._width = v;
  86. this.onResize(
  87. new SSize(w, this._height),
  88. new SSize(this._width, this._height)
  89. );
  90. }
  91. }
  92. } //Set width
  93. /** 高度 */
  94. private _height: number = 64;
  95. get height(): number {
  96. return this._height;
  97. } //Get height
  98. set height(v: number) {
  99. if (v > 0) {
  100. if (v != this._height) {
  101. let h = this._height;
  102. this._height = v;
  103. this.onResize(
  104. new SSize(this._width, h),
  105. new SSize(this._width, this._height)
  106. );
  107. }
  108. }
  109. } //Set height
  110. /** 原点 */
  111. origin = new SPoint();
  112. /** 文本颜色 */
  113. private _color: SColor = new SColor("#333333");
  114. get color(): SColor {
  115. return this._color;
  116. } //Get color
  117. set color(v: SColor) {
  118. this._color = v;
  119. this.update();
  120. } //Set color
  121. /** 字体 */
  122. private _font: SFont = new SFont("sans-serif", 12);
  123. get font(): SFont {
  124. return this._font;
  125. } //Get font
  126. set font(v: SFont) {
  127. this._font = v;
  128. this.drawFormatText();
  129. this.update();
  130. } //Set font
  131. /** 背景色 */
  132. private _backgroundColor: SColor = SColor.Transparent;
  133. get backgroundColor(): SColor {
  134. return this._backgroundColor;
  135. } //Get backgroundColor
  136. set backgroundColor(v: SColor) {
  137. this._backgroundColor = v;
  138. this.update();
  139. } //Set backgroundColor
  140. /** 边框色 */
  141. private _strokeColor: SColor = SColor.Transparent;
  142. get strokeColor(): SColor {
  143. return this._strokeColor;
  144. } //Get strokeColor
  145. set strokeColor(v: SColor) {
  146. this._strokeColor = v;
  147. this.update();
  148. } //Set strokeColor
  149. /** 边框宽度 */
  150. private _lineWidth: number = 1;
  151. get lineWidth(): number {
  152. return this._lineWidth;
  153. } //Get lineWidth
  154. set lineWidth(v: number) {
  155. this._lineWidth = v;
  156. this.update();
  157. } //Set lineWidth
  158. /** 边框样式 */
  159. private _borderStyle: SLineStyle = SLineStyle.None;
  160. get borderStyle(): SLineStyle {
  161. return this._borderStyle;
  162. } //Get borderStyle
  163. set borderStyle(v: SLineStyle) {
  164. this._borderStyle = v;
  165. this.update();
  166. } //Set borderStyle
  167. /** 原点位置 */
  168. private _originPosition: STextOrigin = STextOrigin.LeftTop;
  169. get originPosition(): STextOrigin {
  170. return this._originPosition;
  171. } //Get originPosition
  172. set originPosition(v: STextOrigin) {
  173. this._originPosition = v;
  174. this.update();
  175. } //Set originPosition
  176. /** 文本绘制最大宽 */
  177. maxWidth: number | undefined = undefined;
  178. /**
  179. * 构造函数
  180. *
  181. * @param parent 指向父 Item
  182. * @param data 文本数据
  183. */
  184. constructor(parent: SGraphItem | null, data: Marker) {
  185. super(parent);
  186. this.showSelect = false;
  187. this.zOrder = ItemOrder.textOrder;
  188. this.isTransform = false;
  189. this.data = data;
  190. this.name = data.name;
  191. this.moveTo(data.pos.x, data.pos.y);
  192. if (data.size) {
  193. this.width = data.size.width;
  194. this.height = data.size.height;
  195. }
  196. if (data.style && data.style.default) {
  197. // 高度
  198. if (data.style.default.zorder) {
  199. this.zOrder = data.style.default.zorder;
  200. }
  201. // 文本
  202. if (data.style.default.text) {
  203. this.text = data.style.default.text;
  204. }
  205. // 文本颜色
  206. if (data.style.default.strokeColor) {
  207. this.strokeColor = new SColor(data.style.default.strokeColor);
  208. }
  209. // 字体大小
  210. if (data.style.default.font) {
  211. this.font = new SFont("sans-serif", data.style.default.font);
  212. }
  213. // 背景色
  214. if (data.style.default.backgroundColor) {
  215. this.backgroundColor = new SColor(data.style.default.backgroundColor);
  216. }
  217. }
  218. } // Constructor
  219. /**
  220. * 宽高发发生变化
  221. *
  222. * @param oldSize 改之前的大小
  223. * @param newSize 改之后大小
  224. */
  225. protected onResize(oldSize: SSize, newSize: SSize) { } // Function onResize()
  226. /**
  227. * 对象边界区域
  228. *
  229. * @return 边界区域
  230. */
  231. boundingRect(): SRect {
  232. return new SRect(
  233. -this.origin.x,
  234. -this.origin.y,
  235. this.width,
  236. this.height
  237. );
  238. } // Function boundingRect()
  239. /**
  240. * 移动后处理所有坐标,并肩原点置为场景原点
  241. *
  242. * @param x x 坐标
  243. * @param y y 坐标
  244. */
  245. moveToOrigin(x: number, y: number): void {
  246. this.moveTo(this.x + x, this.y + y);
  247. } // Function moveToOrigin()
  248. /**
  249. * 绘制显示状态文本 Item
  250. *
  251. * @param painter 绘制类
  252. */
  253. protected drawShowText(painter: SPainter): void {
  254. painter.translate(-this.origin.x, -this.origin.y);
  255. //绘制矩形轮廓
  256. if (this.selected) {
  257. painter.shadow.shadowBlur = 10;
  258. painter.shadow.shadowColor = new SColor(`#00000033`);
  259. painter.shadow.shadowOffsetX = 5;
  260. painter.shadow.shadowOffsetY = 5;
  261. } else {
  262. painter.shadow.shadowColor = SColor.Transparent;
  263. }
  264. painter.brush.color = this.backgroundColor;
  265. painter.pen.lineWidth = this.lineWidth;
  266. painter.pen.color = this.strokeColor;
  267. painter.drawRect(0, 0, this.width, this.height);
  268. //绘制文本
  269. painter.brush.color = new SColor(this.color);
  270. painter.shadow.shadowColor = SColor.Transparent;
  271. painter.font = this.font;
  272. this._textArr.forEach((text: string, index: number) => {
  273. painter.drawText(
  274. text,
  275. this.font.size / 4,
  276. index * (this.font.size * 1.25) + this.font.size / 4,
  277. this.maxWidth
  278. );
  279. });
  280. } // Function drawShowText()
  281. /**
  282. * 根据换行切割文本,绘制多行并计算外轮廓宽高
  283. */
  284. protected drawFormatText(): void {
  285. if (this._painter instanceof SPainter) {
  286. this._painter.save();
  287. this._painter.font = this.font;
  288. let textMaxWidth = 0;
  289. let fontSize: number = this.font.size;
  290. this._textArr.forEach((text: string, index: number) => {
  291. let textWidth: number = this._painter
  292. ? this._painter.textWidth(text) + fontSize / 2
  293. : fontSize / 2;
  294. if (textWidth > textMaxWidth) {
  295. textMaxWidth = textWidth;
  296. }
  297. });
  298. // 在绘制文本后计算文本的宽高
  299. this.width = textMaxWidth;
  300. this.height = fontSize * 1.25 * this._textArr.length + fontSize / 8;
  301. // 设置原点位置(默认左上角)
  302. if (this.originPosition == STextOrigin.Center) {
  303. this.origin = new SPoint(this.width / 2, this.height / 2);
  304. }
  305. this._painter.restore();
  306. }
  307. } // Function drawFormatText()
  308. /**
  309. * 返回对象储存的相关数据
  310. *
  311. * @return 对象储存的相关数据
  312. */
  313. toData(): any {
  314. if (this.data.size) {
  315. this.data.size.width = this.width;
  316. this.data.size.height = this.height;
  317. }
  318. this.data.pos.x = this.pos.x;
  319. this.data.pos.y = this.pos.y;
  320. this.data.style.default.zorder = this.zOrder;
  321. this.data.style.default.text = this.text;
  322. this.data.style.default.strokeColor = this.strokeColor.value;
  323. this.data.style.default.font = this.font.size;
  324. this.data.style.default.backgroundColor = this.backgroundColor.value;
  325. return this.data;
  326. } // Function toData()
  327. /**
  328. * Item 绘制操作
  329. *
  330. * @param painter 绘画类
  331. */
  332. onDraw(painter: SPainter): void {
  333. if (!(this._painter instanceof SPainter)) {
  334. this._painter = painter;
  335. this.drawFormatText();
  336. }
  337. this.drawShowText(painter);
  338. } // Function onDraw()
  339. } // Class SBaseTextEdit