rectangle.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Copyright 2007 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /**
  15. * @fileoverview A thick wrapper around rectangles.
  16. * @author robbyw@google.com (Robby Walker)
  17. */
  18. goog.provide('goog.graphics.ext.Rectangle');
  19. goog.require('goog.graphics.ext.StrokeAndFillElement');
  20. /**
  21. * Wrapper for a graphics rectangle element.
  22. * @param {goog.graphics.ext.Group} group Parent for this element.
  23. * @constructor
  24. * @extends {goog.graphics.ext.StrokeAndFillElement}
  25. * @final
  26. */
  27. goog.graphics.ext.Rectangle = function(group) {
  28. // Initialize with some stock values.
  29. var wrapper = group.getGraphicsImplementation().drawRect(
  30. 0, 0, 1, 1, null, null, group.getWrapper());
  31. goog.graphics.ext.StrokeAndFillElement.call(this, group, wrapper);
  32. };
  33. goog.inherits(
  34. goog.graphics.ext.Rectangle, goog.graphics.ext.StrokeAndFillElement);
  35. /**
  36. * Redraw the rectangle. Called when the coordinate system is changed.
  37. * @protected
  38. * @override
  39. */
  40. goog.graphics.ext.Rectangle.prototype.redraw = function() {
  41. goog.graphics.ext.Rectangle.superClass_.redraw.call(this);
  42. // Our position is already handled by transform_.
  43. this.getWrapper().setSize(this.getWidth(), this.getHeight());
  44. };