ShowMarkItem.ts 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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) 2009-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import { SGraphSvgItem, SGraphItem } from "@persagy-web/graph"
  27. import { SPainter, SColor } from "@persagy-web/draw";
  28. import { SMouseEvent } from "@persagy-web/base/";
  29. export class ShowMarkItem extends SGraphSvgItem {
  30. /** 图标数据 */
  31. data: any;
  32. /**
  33. * 构造函数
  34. */
  35. constructor(parent: SGraphItem | null, data: any) {
  36. super(parent,data);
  37. this.data = data;
  38. this.width = this.data.width;
  39. this.height = this.data.height;
  40. // 将原点置为图的中心
  41. this.zOrder = 1000;
  42. // 是否随放大缩小移动;
  43. this.isTransform = false;
  44. this.url = data.url;
  45. this.moveTo(this.data.x, this.data.y);
  46. }
  47. /**
  48. * 鼠标移入事件
  49. *
  50. * @param event 鼠标事件
  51. */
  52. onMouseEnter(event: SMouseEvent): boolean {
  53. super.onMouseEnter(event)
  54. this.$emit("onMouseEnter", event);
  55. return true
  56. }
  57. /**
  58. * 鼠标移出事件
  59. *
  60. * @param event 鼠标事件
  61. */
  62. onMouseLeave(event: SMouseEvent): boolean {
  63. super.onMouseLeave(event);
  64. this.$emit("onMouseLeave", event);
  65. return true
  66. }
  67. /**
  68. * 点击事件
  69. */
  70. onMouseDown(event: SMouseEvent) {
  71. this.$emit("click", event);
  72. this.$emit('onMouseDown', event)
  73. return true;
  74. }
  75. }