12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // Copyright 2007 The Closure Library Authors. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS-IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- /**
- * @fileoverview A thin wrapper around the DOM element for images.
- */
- goog.provide('goog.graphics.ImageElement');
- goog.require('goog.graphics.Element');
- /**
- * Interface for a graphics image element.
- * You should not construct objects from this constructor. Instead,
- * you should use {@code goog.graphics.Graphics.drawImage} and it
- * will return an implementation of this interface for you.
- *
- * @param {Element} element The DOM element to wrap.
- * @param {goog.graphics.AbstractGraphics} graphics The graphics creating
- * this element.
- * @constructor
- * @extends {goog.graphics.Element}
- * @deprecated goog.graphics is deprecated. It existed to abstract over browser
- * differences before the canvas tag was widely supported. See
- * http://en.wikipedia.org/wiki/Canvas_element for details.
- */
- goog.graphics.ImageElement = function(element, graphics) {
- goog.graphics.Element.call(this, element, graphics);
- };
- goog.inherits(goog.graphics.ImageElement, goog.graphics.Element);
- /**
- * Update the position of the image.
- *
- * @param {number} x X coordinate (left).
- * @param {number} y Y coordinate (top).
- */
- goog.graphics.ImageElement.prototype.setPosition = goog.abstractMethod;
- /**
- * Update the size of the image.
- *
- * @param {number} width Width of image.
- * @param {number} height Height of image.
- */
- goog.graphics.ImageElement.prototype.setSize = goog.abstractMethod;
- /**
- * Update the source of the image.
- * @param {string} src Source of the image.
- */
- goog.graphics.ImageElement.prototype.setSource = goog.abstractMethod;
|