Source: core/drawing/engine/canvas/canvasContainer.js

  1. /**
  2. * @fileoverview Abstract Canvas class representing a container.
  3. * @private
  4. */
  5. goog.provide('xrx.canvas.Container');
  6. goog.require('xrx.canvas.Element');
  7. /**
  8. * Abstract Canvas class representing a container.
  9. * @param {xrx.canvas.Canvas} canvas The parent canvas object.
  10. * @constructor
  11. * @private
  12. */
  13. xrx.canvas.Container = function(canvas) {
  14. goog.base(this, canvas);
  15. /**
  16. * The child elements of this container.
  17. * @type {Array<xrx.canvas.Element>}
  18. */
  19. this.childs_ = [];
  20. };
  21. goog.inherits(xrx.canvas.Container, xrx.canvas.Element);
  22. /**
  23. * Adds a child element to this container.
  24. * @param {xrx.canvas.Element} element The child element.
  25. */
  26. xrx.canvas.Container.prototype.addChild = function(element) {
  27. this.childs_.push(element);
  28. };
  29. /**
  30. * Returns the child elements of this container.
  31. * @return {Array<xrx.canvas.Element>} The child elements.
  32. */
  33. xrx.canvas.Container.prototype.getChildren = function() {
  34. return this.childs_;
  35. };
  36. /**
  37. * Removes all child elements from this container.
  38. */
  39. xrx.canvas.Container.prototype.removeChildren = function() {
  40. this.childs_ = [];
  41. };
  42. /**
  43. * Removes a child element at an index.
  44. * @param {number} index The index.
  45. */
  46. xrx.canvas.Container.prototype.removeChildAt = function(index) {
  47. this.childs_.splice(index, 1);
  48. };
  49. xrx.canvas.Container.prototype.disposeInternal = function() {
  50. var child;
  51. while(child = this.childs_.pop()) {
  52. child.dispose();
  53. }
  54. this.childs_ = null;
  55. goog.base(this, 'disposeInternal');
  56. };