Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/graphics/ext/rectangle.js
2868 views
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
16
/**
17
* @fileoverview A thick wrapper around rectangles.
18
* @author [email protected] (Robby Walker)
19
*/
20
21
22
goog.provide('goog.graphics.ext.Rectangle');
23
24
goog.require('goog.graphics.ext.StrokeAndFillElement');
25
26
27
28
/**
29
* Wrapper for a graphics rectangle element.
30
* @param {goog.graphics.ext.Group} group Parent for this element.
31
* @constructor
32
* @extends {goog.graphics.ext.StrokeAndFillElement}
33
* @final
34
*/
35
goog.graphics.ext.Rectangle = function(group) {
36
// Initialize with some stock values.
37
var wrapper = group.getGraphicsImplementation().drawRect(
38
0, 0, 1, 1, null, null, group.getWrapper());
39
goog.graphics.ext.StrokeAndFillElement.call(this, group, wrapper);
40
};
41
goog.inherits(
42
goog.graphics.ext.Rectangle, goog.graphics.ext.StrokeAndFillElement);
43
44
45
/**
46
* Redraw the rectangle. Called when the coordinate system is changed.
47
* @protected
48
* @override
49
*/
50
goog.graphics.ext.Rectangle.prototype.redraw = function() {
51
goog.graphics.ext.Rectangle.superClass_.redraw.call(this);
52
53
// Our position is already handled by transform_.
54
this.getWrapper().setSize(this.getWidth(), this.getHeight());
55
};
56
57