1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
|
// Copyright 2006 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 Common positioning code.
*
* @author eae@google.com (Emil A Eklund)
*/
goog.provide('goog.positioning');
goog.provide('goog.positioning.Corner');
goog.provide('goog.positioning.CornerBit');
goog.provide('goog.positioning.Overflow');
goog.provide('goog.positioning.OverflowStatus');
goog.require('goog.asserts');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.math.Coordinate');
goog.require('goog.math.Rect');
goog.require('goog.math.Size');
goog.require('goog.style');
goog.require('goog.style.bidi');
/**
* Enum for bits in the {@see goog.positioning.Corner) bitmap.
*
* @enum {number}
*/
goog.positioning.CornerBit = {
BOTTOM: 1,
CENTER: 2,
RIGHT: 4,
FLIP_RTL: 8
};
/**
* Enum for representing an element corner for positioning the popup.
*
* The START constants map to LEFT if element directionality is left
* to right and RIGHT if the directionality is right to left.
* Likewise END maps to RIGHT or LEFT depending on the directionality.
*
* @enum {number}
*/
goog.positioning.Corner = {
TOP_LEFT: 0,
TOP_RIGHT: goog.positioning.CornerBit.RIGHT,
BOTTOM_LEFT: goog.positioning.CornerBit.BOTTOM,
BOTTOM_RIGHT:
goog.positioning.CornerBit.BOTTOM | goog.positioning.CornerBit.RIGHT,
TOP_START: goog.positioning.CornerBit.FLIP_RTL,
TOP_END:
goog.positioning.CornerBit.FLIP_RTL | goog.positioning.CornerBit.RIGHT,
BOTTOM_START:
goog.positioning.CornerBit.BOTTOM | goog.positioning.CornerBit.FLIP_RTL,
BOTTOM_END: goog.positioning.CornerBit.BOTTOM |
goog.positioning.CornerBit.RIGHT | goog.positioning.CornerBit.FLIP_RTL,
TOP_CENTER: goog.positioning.CornerBit.CENTER,
BOTTOM_CENTER:
goog.positioning.CornerBit.BOTTOM | goog.positioning.CornerBit.CENTER
};
/**
* Enum for representing position handling in cases where the element would be
* positioned outside the viewport.
*
* @enum {number}
*/
goog.positioning.Overflow = {
/** Ignore overflow */
IGNORE: 0,
/** Try to fit horizontally in the viewport at all costs. */
ADJUST_X: 1,
/** If the element can't fit horizontally, report positioning failure. */
FAIL_X: 2,
/** Try to fit vertically in the viewport at all costs. */
ADJUST_Y: 4,
/** If the element can't fit vertically, report positioning failure. */
FAIL_Y: 8,
/** Resize the element's width to fit in the viewport. */
RESIZE_WIDTH: 16,
/** Resize the element's height to fit in the viewport. */
RESIZE_HEIGHT: 32,
/**
* If the anchor goes off-screen in the x-direction, position the movable
* element off-screen. Otherwise, try to fit horizontally in the viewport.
*/
ADJUST_X_EXCEPT_OFFSCREEN: 64 | 1,
/**
* If the anchor goes off-screen in the y-direction, position the movable
* element off-screen. Otherwise, try to fit vertically in the viewport.
*/
ADJUST_Y_EXCEPT_OFFSCREEN: 128 | 4
};
/**
* Enum for representing the outcome of a positioning call.
*
* @enum {number}
*/
goog.positioning.OverflowStatus = {
NONE: 0,
ADJUSTED_X: 1,
ADJUSTED_Y: 2,
WIDTH_ADJUSTED: 4,
HEIGHT_ADJUSTED: 8,
FAILED_LEFT: 16,
FAILED_RIGHT: 32,
FAILED_TOP: 64,
FAILED_BOTTOM: 128,
FAILED_OUTSIDE_VIEWPORT: 256
};
/**
* Shorthand to check if a status code contains any fail code.
* @type {number}
*/
goog.positioning.OverflowStatus.FAILED =
goog.positioning.OverflowStatus.FAILED_LEFT |
goog.positioning.OverflowStatus.FAILED_RIGHT |
goog.positioning.OverflowStatus.FAILED_TOP |
goog.positioning.OverflowStatus.FAILED_BOTTOM |
goog.positioning.OverflowStatus.FAILED_OUTSIDE_VIEWPORT;
/**
* Shorthand to check if horizontal positioning failed.
* @type {number}
*/
goog.positioning.OverflowStatus.FAILED_HORIZONTAL =
goog.positioning.OverflowStatus.FAILED_LEFT |
goog.positioning.OverflowStatus.FAILED_RIGHT;
/**
* Shorthand to check if vertical positioning failed.
* @type {number}
*/
goog.positioning.OverflowStatus.FAILED_VERTICAL =
goog.positioning.OverflowStatus.FAILED_TOP |
goog.positioning.OverflowStatus.FAILED_BOTTOM;
/**
* Positions a movable element relative to an anchor element. The caller
* specifies the corners that should touch. This functions then moves the
* movable element accordingly.
*
* @param {Element} anchorElement The element that is the anchor for where
* the movable element should position itself.
* @param {goog.positioning.Corner} anchorElementCorner The corner of the
* anchorElement for positioning the movable element.
* @param {Element} movableElement The element to move.
* @param {goog.positioning.Corner} movableElementCorner The corner of the
* movableElement that that should be positioned adjacent to the anchor
* element.
* @param {goog.math.Coordinate=} opt_offset An offset specified in pixels.
* After the normal positioning algorithm is applied, the offset is then
* applied. Positive coordinates move the popup closer to the center of the
* anchor element. Negative coordinates move the popup away from the center
* of the anchor element.
* @param {goog.math.Box=} opt_margin A margin specified in pixels.
* After the normal positioning algorithm is applied and any offset, the
* margin is then applied. Positive coordinates move the popup away from the
* spot it was positioned towards its center. Negative coordinates move it
* towards the spot it was positioned away from its center.
* @param {?number=} opt_overflow Overflow handling mode. Defaults to IGNORE if
* not specified. Bitmap, {@see goog.positioning.Overflow}.
* @param {goog.math.Size=} opt_preferredSize The preferred size of the
* movableElement.
* @param {goog.math.Box=} opt_viewport Box object describing the dimensions of
* the viewport. The viewport is specified relative to offsetParent of
* {@code movableElement}. In other words, the viewport can be thought of as
* describing a "position: absolute" element contained in the offsetParent.
* It defaults to visible area of nearest scrollable ancestor of
* {@code movableElement} (see {@code goog.style.getVisibleRectForElement}).
* @return {goog.positioning.OverflowStatus} Status bitmap,
* {@see goog.positioning.OverflowStatus}.
*/
goog.positioning.positionAtAnchor = function(
anchorElement, anchorElementCorner, movableElement, movableElementCorner,
opt_offset, opt_margin, opt_overflow, opt_preferredSize, opt_viewport) {
goog.asserts.assert(movableElement);
var movableParentTopLeft =
goog.positioning.getOffsetParentPageOffset(movableElement);
// Get the visible part of the anchor element. anchorRect is
// relative to anchorElement's page.
var anchorRect = goog.positioning.getVisiblePart_(anchorElement);
// Translate anchorRect to be relative to movableElement's page.
goog.style.translateRectForAnotherFrame(
anchorRect, goog.dom.getDomHelper(anchorElement),
goog.dom.getDomHelper(movableElement));
// Offset based on which corner of the element we want to position against.
var corner =
goog.positioning.getEffectiveCorner(anchorElement, anchorElementCorner);
var offsetLeft = anchorRect.left;
if (corner & goog.positioning.CornerBit.RIGHT) {
offsetLeft += anchorRect.width;
} else if (corner & goog.positioning.CornerBit.CENTER) {
offsetLeft += anchorRect.width / 2;
}
// absolutePos is a candidate position relative to the
// movableElement's window.
var absolutePos = new goog.math.Coordinate(
offsetLeft, anchorRect.top +
(corner & goog.positioning.CornerBit.BOTTOM ? anchorRect.height : 0));
// Translate absolutePos to be relative to the offsetParent.
absolutePos =
goog.math.Coordinate.difference(absolutePos, movableParentTopLeft);
// Apply offset, if specified
if (opt_offset) {
absolutePos.x +=
(corner & goog.positioning.CornerBit.RIGHT ? -1 : 1) * opt_offset.x;
absolutePos.y +=
(corner & goog.positioning.CornerBit.BOTTOM ? -1 : 1) * opt_offset.y;
}
// Determine dimension of viewport.
var viewport;
if (opt_overflow) {
if (opt_viewport) {
viewport = opt_viewport;
} else {
viewport = goog.style.getVisibleRectForElement(movableElement);
if (viewport) {
viewport.top -= movableParentTopLeft.y;
viewport.right -= movableParentTopLeft.x;
viewport.bottom -= movableParentTopLeft.y;
viewport.left -= movableParentTopLeft.x;
}
}
}
return goog.positioning.positionAtCoordinate(
absolutePos, movableElement, movableElementCorner, opt_margin, viewport,
opt_overflow, opt_preferredSize);
};
/**
* Calculates the page offset of the given element's
* offsetParent. This value can be used to translate any x- and
* y-offset relative to the page to an offset relative to the
* offsetParent, which can then be used directly with as position
* coordinate for {@code positionWithCoordinate}.
* @param {!Element} movableElement The element to calculate.
* @return {!goog.math.Coordinate} The page offset, may be (0, 0).
*/
goog.positioning.getOffsetParentPageOffset = function(movableElement) {
// Ignore offset for the BODY element unless its position is non-static.
// For cases where the offset parent is HTML rather than the BODY (such as in
// IE strict mode) there's no need to get the position of the BODY as it
// doesn't affect the page offset.
var movableParentTopLeft;
var parent = /** @type {?} */ (movableElement).offsetParent;
if (parent) {
var isBody = parent.tagName == goog.dom.TagName.HTML ||
parent.tagName == goog.dom.TagName.BODY;
if (!isBody || goog.style.getComputedPosition(parent) != 'static') {
// Get the top-left corner of the parent, in page coordinates.
movableParentTopLeft = goog.style.getPageOffset(parent);
if (!isBody) {
movableParentTopLeft = goog.math.Coordinate.difference(
movableParentTopLeft,
new goog.math.Coordinate(
goog.style.bidi.getScrollLeft(parent), parent.scrollTop));
}
}
}
return movableParentTopLeft || new goog.math.Coordinate();
};
/**
* Returns intersection of the specified element and
* goog.style.getVisibleRectForElement for it.
*
* @param {Element} el The target element.
* @return {!goog.math.Rect} Intersection of getVisibleRectForElement
* and the current bounding rectangle of the element. If the
* intersection is empty, returns the bounding rectangle.
* @private
*/
goog.positioning.getVisiblePart_ = function(el) {
var rect = goog.style.getBounds(el);
var visibleBox = goog.style.getVisibleRectForElement(el);
if (visibleBox) {
rect.intersection(goog.math.Rect.createFromBox(visibleBox));
}
return rect;
};
/**
* Positions the specified corner of the movable element at the
* specified coordinate.
*
* @param {goog.math.Coordinate} absolutePos The coordinate to position the
* element at.
* @param {Element} movableElement The element to be positioned.
* @param {goog.positioning.Corner} movableElementCorner The corner of the
* movableElement that that should be positioned.
* @param {goog.math.Box=} opt_margin A margin specified in pixels.
* After the normal positioning algorithm is applied and any offset, the
* margin is then applied. Positive coordinates move the popup away from the
* spot it was positioned towards its center. Negative coordinates move it
* towards the spot it was positioned away from its center.
* @param {goog.math.Box=} opt_viewport Box object describing the dimensions of
* the viewport. Required if opt_overflow is specified.
* @param {?number=} opt_overflow Overflow handling mode. Defaults to IGNORE if
* not specified, {@see goog.positioning.Overflow}.
* @param {goog.math.Size=} opt_preferredSize The preferred size of the
* movableElement. Defaults to the current size.
* @return {goog.positioning.OverflowStatus} Status bitmap.
*/
goog.positioning.positionAtCoordinate = function(
absolutePos, movableElement, movableElementCorner, opt_margin, opt_viewport,
opt_overflow, opt_preferredSize) {
absolutePos = absolutePos.clone();
// Offset based on attached corner and desired margin.
var corner =
goog.positioning.getEffectiveCorner(movableElement, movableElementCorner);
var elementSize = goog.style.getSize(movableElement);
var size =
opt_preferredSize ? opt_preferredSize.clone() : elementSize.clone();
var positionResult = goog.positioning.getPositionAtCoordinate(
absolutePos, size, corner, opt_margin, opt_viewport, opt_overflow);
if (positionResult.status & goog.positioning.OverflowStatus.FAILED) {
return positionResult.status;
}
goog.style.setPosition(movableElement, positionResult.rect.getTopLeft());
size = positionResult.rect.getSize();
if (!goog.math.Size.equals(elementSize, size)) {
goog.style.setBorderBoxSize(movableElement, size);
}
return positionResult.status;
};
/**
* Computes the position for an element to be placed on-screen at the
* specified coordinates. Returns an object containing both the resulting
* rectangle, and the overflow status bitmap.
*
* @param {!goog.math.Coordinate} absolutePos The coordinate to position the
* element at.
* @param {!goog.math.Size} elementSize The size of the element to be
* positioned.
* @param {goog.positioning.Corner} elementCorner The corner of the
* movableElement that that should be positioned.
* @param {goog.math.Box=} opt_margin A margin specified in pixels.
* After the normal positioning algorithm is applied and any offset, the
* margin is then applied. Positive coordinates move the popup away from the
* spot it was positioned towards its center. Negative coordinates move it
* towards the spot it was positioned away from its center.
* @param {goog.math.Box=} opt_viewport Box object describing the dimensions of
* the viewport. Required if opt_overflow is specified.
* @param {?number=} opt_overflow Overflow handling mode. Defaults to IGNORE
* if not specified, {@see goog.positioning.Overflow}.
* @return {{rect:!goog.math.Rect, status:goog.positioning.OverflowStatus}}
* Object containing the computed position and status bitmap.
*/
goog.positioning.getPositionAtCoordinate = function(
absolutePos, elementSize, elementCorner, opt_margin, opt_viewport,
opt_overflow) {
absolutePos = absolutePos.clone();
elementSize = elementSize.clone();
var status = goog.positioning.OverflowStatus.NONE;
if (opt_margin || elementCorner != goog.positioning.Corner.TOP_LEFT) {
if (elementCorner & goog.positioning.CornerBit.RIGHT) {
absolutePos.x -= elementSize.width + (opt_margin ? opt_margin.right : 0);
} else if (elementCorner & goog.positioning.CornerBit.CENTER) {
absolutePos.x -= elementSize.width / 2;
} else if (opt_margin) {
absolutePos.x += opt_margin.left;
}
if (elementCorner & goog.positioning.CornerBit.BOTTOM) {
absolutePos.y -=
elementSize.height + (opt_margin ? opt_margin.bottom : 0);
} else if (opt_margin) {
absolutePos.y += opt_margin.top;
}
}
// Adjust position to fit inside viewport.
if (opt_overflow) {
status = opt_viewport ?
goog.positioning.adjustForViewport_(
absolutePos, elementSize, opt_viewport, opt_overflow) :
goog.positioning.OverflowStatus.FAILED_OUTSIDE_VIEWPORT;
}
var rect = new goog.math.Rect(0, 0, 0, 0);
rect.left = absolutePos.x;
rect.top = absolutePos.y;
rect.width = elementSize.width;
rect.height = elementSize.height;
return {rect: rect, status: status};
};
/**
* Adjusts the position and/or size of an element, identified by its position
* and size, to fit inside the viewport. If the position or size of the element
* is adjusted the pos or size objects, respectively, are modified.
*
* @param {goog.math.Coordinate} pos Position of element, updated if the
* position is adjusted.
* @param {goog.math.Size} size Size of element, updated if the size is
* adjusted.
* @param {goog.math.Box} viewport Bounding box describing the viewport.
* @param {number} overflow Overflow handling mode,
* {@see goog.positioning.Overflow}.
* @return {goog.positioning.OverflowStatus} Status bitmap,
* {@see goog.positioning.OverflowStatus}.
* @private
*/
goog.positioning.adjustForViewport_ = function(pos, size, viewport, overflow) {
var status = goog.positioning.OverflowStatus.NONE;
var ADJUST_X_EXCEPT_OFFSCREEN =
goog.positioning.Overflow.ADJUST_X_EXCEPT_OFFSCREEN;
var ADJUST_Y_EXCEPT_OFFSCREEN =
goog.positioning.Overflow.ADJUST_Y_EXCEPT_OFFSCREEN;
if ((overflow & ADJUST_X_EXCEPT_OFFSCREEN) == ADJUST_X_EXCEPT_OFFSCREEN &&
(pos.x < viewport.left || pos.x >= viewport.right)) {
overflow &= ~goog.positioning.Overflow.ADJUST_X;
}
if ((overflow & ADJUST_Y_EXCEPT_OFFSCREEN) == ADJUST_Y_EXCEPT_OFFSCREEN &&
(pos.y < viewport.top || pos.y >= viewport.bottom)) {
overflow &= ~goog.positioning.Overflow.ADJUST_Y;
}
// Left edge outside viewport, try to move it.
if (pos.x < viewport.left && overflow & goog.positioning.Overflow.ADJUST_X) {
pos.x = viewport.left;
status |= goog.positioning.OverflowStatus.ADJUSTED_X;
}
// Ensure object is inside the viewport width if required.
if (overflow & goog.positioning.Overflow.RESIZE_WIDTH) {
// Move left edge inside viewport.
var originalX = pos.x;
if (pos.x < viewport.left) {
pos.x = viewport.left;
status |= goog.positioning.OverflowStatus.WIDTH_ADJUSTED;
}
// Shrink width to inside right of viewport.
if (pos.x + size.width > viewport.right) {
// Set the width to be either the new maximum width within the viewport
// or the width originally within the viewport, whichever is less.
size.width = Math.min(
viewport.right - pos.x, originalX + size.width - viewport.left);
size.width = Math.max(size.width, 0);
status |= goog.positioning.OverflowStatus.WIDTH_ADJUSTED;
}
}
// Right edge outside viewport, try to move it.
if (pos.x + size.width > viewport.right &&
overflow & goog.positioning.Overflow.ADJUST_X) {
pos.x = Math.max(viewport.right - size.width, viewport.left);
status |= goog.positioning.OverflowStatus.ADJUSTED_X;
}
// Left or right edge still outside viewport, fail if the FAIL_X option was
// specified, ignore it otherwise.
if (overflow & goog.positioning.Overflow.FAIL_X) {
status |=
(pos.x < viewport.left ? goog.positioning.OverflowStatus.FAILED_LEFT :
0) |
(pos.x + size.width > viewport.right ?
goog.positioning.OverflowStatus.FAILED_RIGHT :
0);
}
// Top edge outside viewport, try to move it.
if (pos.y < viewport.top && overflow & goog.positioning.Overflow.ADJUST_Y) {
pos.y = viewport.top;
status |= goog.positioning.OverflowStatus.ADJUSTED_Y;
}
// Ensure object is inside the viewport height if required.
if (overflow & goog.positioning.Overflow.RESIZE_HEIGHT) {
// Move top edge inside viewport.
var originalY = pos.y;
if (pos.y < viewport.top) {
pos.y = viewport.top;
status |= goog.positioning.OverflowStatus.HEIGHT_ADJUSTED;
}
// Shrink height to inside bottom of viewport.
if (pos.y + size.height > viewport.bottom) {
// Set the height to be either the new maximum height within the viewport
// or the height originally within the viewport, whichever is less.
size.height = Math.min(
viewport.bottom - pos.y, originalY + size.height - viewport.top);
size.height = Math.max(size.height, 0);
status |= goog.positioning.OverflowStatus.HEIGHT_ADJUSTED;
}
}
// Bottom edge outside viewport, try to move it.
if (pos.y + size.height > viewport.bottom &&
overflow & goog.positioning.Overflow.ADJUST_Y) {
pos.y = Math.max(viewport.bottom - size.height, viewport.top);
status |= goog.positioning.OverflowStatus.ADJUSTED_Y;
}
// Top or bottom edge still outside viewport, fail if the FAIL_Y option was
// specified, ignore it otherwise.
if (overflow & goog.positioning.Overflow.FAIL_Y) {
status |=
(pos.y < viewport.top ? goog.positioning.OverflowStatus.FAILED_TOP :
0) |
(pos.y + size.height > viewport.bottom ?
goog.positioning.OverflowStatus.FAILED_BOTTOM :
0);
}
return status;
};
/**
* Returns an absolute corner (top/bottom left/right) given an absolute
* or relative (top/bottom start/end) corner and the direction of an element.
* Absolute corners remain unchanged.
* @param {Element} element DOM element to test for RTL direction.
* @param {goog.positioning.Corner} corner The popup corner used for
* positioning.
* @return {goog.positioning.Corner} Effective corner.
*/
goog.positioning.getEffectiveCorner = function(element, corner) {
return /** @type {goog.positioning.Corner} */ (
(corner & goog.positioning.CornerBit.FLIP_RTL &&
goog.style.isRightToLeft(element) ?
corner ^ goog.positioning.CornerBit.RIGHT :
corner) &
~goog.positioning.CornerBit.FLIP_RTL);
};
/**
* Returns the corner opposite the given one horizontally.
* @param {goog.positioning.Corner} corner The popup corner used to flip.
* @return {goog.positioning.Corner} The opposite corner horizontally.
*/
goog.positioning.flipCornerHorizontal = function(corner) {
return /** @type {goog.positioning.Corner} */ (
corner ^ goog.positioning.CornerBit.RIGHT);
};
/**
* Returns the corner opposite the given one vertically.
* @param {goog.positioning.Corner} corner The popup corner used to flip.
* @return {goog.positioning.Corner} The opposite corner vertically.
*/
goog.positioning.flipCornerVertical = function(corner) {
return /** @type {goog.positioning.Corner} */ (
corner ^ goog.positioning.CornerBit.BOTTOM);
};
/**
* Returns the corner opposite the given one horizontally and vertically.
* @param {goog.positioning.Corner} corner The popup corner used to flip.
* @return {goog.positioning.Corner} The opposite corner horizontally and
* vertically.
*/
goog.positioning.flipCorner = function(corner) {
return /** @type {goog.positioning.Corner} */ (
corner ^ goog.positioning.CornerBit.BOTTOM ^
goog.positioning.CornerBit.RIGHT);
};
|