Lines Matching defs:popup

330      * A popup window used by the floating toolbar.
343 private final View mParent; // Parent for the popup window.
346 /* Margins between the popup window and it's content. */
378 private final Point mCoordsOnWindow = new Point(); // popup window coordinates.
407 private boolean mDismissed = true; // tracks whether this popup is dismissed or dismissing.
408 private boolean mHidden; // tracks whether this popup is hidden or hiding.
435 * Initializes a new floating toolbar popup.
532 * Shows this popup at the specified coordinates.
533 * The specified coordinates may be adjusted to make sure the popup is entirely on-screen.
551 // specify the popup position in screen coordinates.
559 * Gets rid of this popup. If the popup isn't currently showing, this will be a no-op.
575 * Hides this popup. This is a no-op if this popup is not showing.
576 * Use {@link #isHidden()} to distinguish between a hidden and a dismissed popup.
589 * Returns {@code true} if this popup is currently showing. {@code false} otherwise.
596 * Returns {@code true} if this popup is currently hidden. {@code false} otherwise.
603 * Updates the coordinates of this popup.
604 * The specified coordinates may be adjusted to make sure the popup is entirely on-screen.
605 * This is a no-op if this popup is not showing.
619 // specify the popup position in screen coordinates.
727 * Performs the "show" animation on the floating popup.
734 * Performs the "dismiss" animation on the floating popup.
741 * Performs the "hide" animation on the floating popup.
919 * Defines the position of the floating toolbar popup panels when transition animation has
1081 * Sets the touchable region of this popup to be zero. This means that all touch events on
1082 * this popup will go through to the surface behind it.
1089 * Sets the touchable region of this popup to be the area occupied by its content.
1111 * Make the touchable area of this popup be the area specified by mTouchableRegion.
1112 * This should be called after the popup window has been dismissed (dismiss/hide)
1540 OverflowPanel(FloatingToolbarPopup popup) {
1541 super(Preconditions.checkNotNull(popup).mContext);
1542 this.mPopup = popup;