Source: extension/shapeDiPolygon.js

  1. /**
  2. * @fileoverview A class representing a shape called
  3. * "Directed Polygon" useful for topological image
  4. * annotation
  5. */
  6. goog.provide('xrx.shape.DiPolygon');
  7. goog.provide('xrx.shape.DiPolygonPolygon');
  8. goog.provide('xrx.shape.DiPolygonArrow');
  9. goog.provide('xrx.shape.DiPolygonArrowModifiable');
  10. goog.require('xrx.geometry');
  11. goog.require('xrx.shape.Group');
  12. goog.require('xrx.shape.Line');
  13. goog.require('xrx.shape.LineModifiable');
  14. goog.require('xrx.shape.Polygon');
  15. goog.require('xrx.shape.Rect');
  16. /**
  17. * @constructor
  18. */
  19. xrx.shape.DiPolygonArrow = function(drawing, diPolygon) {
  20. goog.base(this, drawing);
  21. this.diPolygon_ = diPolygon;
  22. this.angle_;
  23. };
  24. goog.inherits(xrx.shape.DiPolygonArrow, xrx.shape.Line);
  25. xrx.shape.DiPolygonArrow.prototype.getDiPolygon = function() {
  26. return this.diPolygon_;
  27. };
  28. xrx.shape.DiPolygonArrow.prototype.getModifiable = function() {
  29. if (this.modifiable_ === undefined) this.modifiable_ =
  30. new xrx.shape.DiPolygonArrowModifiable(this);
  31. return this.modifiable_;
  32. };
  33. /**
  34. * @constructor
  35. */
  36. xrx.shape.DiPolygonArrowModifiable = function(diPolygonArrow) {
  37. goog.base(this, diPolygonArrow);
  38. };
  39. goog.inherits(xrx.shape.DiPolygonArrowModifiable, xrx.shape.LineModifiable);
  40. /**
  41. * @private
  42. */
  43. xrx.shape.DiPolygonArrowModifiable.prototype.setCoordAt = function(pos, coord) {
  44. var box = this.shape_.getDiPolygon().getBox();
  45. var x1 = coord[0];
  46. var y1 = coord[1];
  47. if (x1 < box.x) {
  48. x1 = box.x;
  49. } else if (x1 > box.x2) {
  50. x1 = box.x2;
  51. }
  52. if (y1 < box.y) {
  53. y1 = box.y;
  54. } else if (y1 > box.y2) {
  55. y1 = box.y2;
  56. }
  57. var centerX = box.x + (box.width / 2);
  58. var centerY = box.y + (box.height / 2);
  59. var x2 = centerX - (x1 - centerX);
  60. var y2 = centerY - (y1 - centerY);
  61. if (pos === 0) {
  62. this.dragger_[0].setCoordX(x1);
  63. this.dragger_[0].setCoordY(y1);
  64. this.dragger_[1].setCoordX(x2);
  65. this.dragger_[1].setCoordY(y2);
  66. this.shape_.setX1(x1);
  67. this.shape_.setY1(y1);
  68. this.shape_.setX2(x2);
  69. this.shape_.setY2(y2);
  70. } else {
  71. this.dragger_[1].setCoordX(x1);
  72. this.dragger_[1].setCoordY(y1);
  73. this.dragger_[0].setCoordX(x2);
  74. this.dragger_[0].setCoordY(y2);
  75. this.shape_.setX1(x2);
  76. this.shape_.setY1(y2);
  77. this.shape_.setX2(x1);
  78. this.shape_.setY2(y1);
  79. }
  80. };
  81. xrx.shape.DiPolygonArrowModifiable.prototype.move = function() {
  82. return;
  83. };
  84. xrx.shape.DiPolygonPolygon = function(drawing) {
  85. goog.base(this, drawing);
  86. };
  87. goog.inherits(xrx.shape.DiPolygonPolygon, xrx.shape.Polygon);
  88. /**
  89. * @constructor
  90. */
  91. xrx.shape.DiPolygon = function(drawing) {
  92. goog.base(this, drawing);
  93. this.box_;
  94. this.init_();
  95. };
  96. goog.inherits(xrx.shape.DiPolygon, xrx.shape.Group);
  97. xrx.shape.DiPolygon.prototype.getArrow = function() {
  98. return this.arrow_;
  99. };
  100. xrx.shape.DiPolygon.prototype.getBox = function() {
  101. return this.box_;
  102. };
  103. xrx.shape.DiPolygon.prototype.MARGIN = 20;
  104. xrx.shape.DiPolygon.prototype.setCoords = function(coords) {
  105. this.childs_[0].setCoords(coords);
  106. };
  107. xrx.shape.DiPolygon.prototype.init_ = function() {
  108. var polygon = new xrx.shape.DiPolygonPolygon(this.drawing_);
  109. var arrow = new xrx.shape.DiPolygonArrow(this.drawing_, this);
  110. this.addChildren([polygon, arrow]);
  111. };