package org.geogebra.web.html5.gui; /* * Copyright 2008 Google Inc. * * 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. */ import java.util.Iterator; import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.ui.DecoratedPopupPanel; import com.google.gwt.user.client.ui.Panel; import com.google.gwt.user.client.ui.Widget; /** * <p> * A {@link PopupPanel} that wraps its content in a 3x3 grid, which allows users * to add rounded corners. * </p> * * <h3>Setting the Size:</h3> * <p> * If you set the width or height of the {@link DecoratedPopupPanel}, you need * to set the height and width of the middleCenter cell to 100% so that the * middleCenter cell takes up all of the available space. If you do not set the * width and height of the {@link DecoratedPopupPanel}, it will wrap its * contents tightly. * </p> * * <pre> * .gwt-DecoratedPopupPanel .popupMiddleCenter { * height: 100%; * width: 100%; * } * </pre> * * <h3>CSS Style Rules</h3> * <ul class='css'> * <li>.gwt-DecoratedPopupPanel { the outside of the popup }</li> * <li>.gwt-DecoratedPopupPanel .popupContent { the wrapper around the content } * </li> * <li>.gwt-DecoratedPopupPanel .popupTopLeft { the top left cell }</li> * <li>.gwt-DecoratedPopupPanel .popupTopLeftInner { the inner element of the * cell }</li> * <li>.gwt-DecoratedPopupPanel .popupTopCenter { the top center cell }</li> * <li>.gwt-DecoratedPopupPanel .popupTopCenterInner { the inner element of the * cell }</li> * <li>.gwt-DecoratedPopupPanel .popupTopRight { the top right cell }</li> * <li>.gwt-DecoratedPopupPanel .popupTopRightInner { the inner element of the * cell }</li> * <li>.gwt-DecoratedPopupPanel .popupMiddleLeft { the middle left cell }</li> * <li>.gwt-DecoratedPopupPanel .popupMiddleLeftInner { the inner element of the * cell }</li> * <li>.gwt-DecoratedPopupPanel .popupMiddleCenter { the middle center cell }</li> * <li>.gwt-DecoratedPopupPanel .popupMiddleCenterInner { the inner element of * the cell }</li> * <li>.gwt-DecoratedPopupPanel .popupMiddleRight { the middle right cell }</li> * <li>.gwt-DecoratedPopupPanel .popupMiddleRightInner { the inner element of * the cell }</li> * <li>.gwt-DecoratedPopupPanel .popupBottomLeft { the bottom left cell }</li> * <li>.gwt-DecoratedPopupPanel .popupBottomLeftInner { the inner element of the * cell }</li> * <li>.gwt-DecoratedPopupPanel .popupBottomCenter { the bottom center cell }</li> * <li>.gwt-DecoratedPopupPanel .popupBottomCenterInner { the inner element of * the cell }</li> * <li>.gwt-DecoratedPopupPanel .popupBottomRight { the bottom right cell }</li> * <li>.gwt-DecoratedPopupPanel .popupBottomRightInner { the inner element of * the cell }</li> * </ul> */ public class GDecoratedPopupPanel extends GPopupPanel { private static final String DEFAULT_STYLENAME = "gwt-DecoratedPopupPanel"; /** * The panel used to nine box the contents. */ private GDecoratorPanel decPanel; /** * Creates an empty decorated popup panel. A child widget must be added to * it before it is shown. */ public GDecoratedPopupPanel(Panel root) { this(false, root); } /** * Creates an empty decorated popup panel, specifying its "auto-hide" * property. * * @param autoHide * <code>true</code> if the popup should be automatically hidden * when the user clicks outside of it */ public GDecoratedPopupPanel(boolean autoHide, Panel root) { this(autoHide, false, root); } /** * Creates an empty decorated popup panel, specifying its "auto-hide" and * "modal" properties. * * @param autoHide * <code>true</code> if the popup should be automatically hidden * when the user clicks outside of it * @param modal * <code>true</code> if keyboard or mouse events that do not * target the PopupPanel or its children should be ignored */ public GDecoratedPopupPanel(boolean autoHide, boolean modal, Panel root) { this(autoHide, modal, "popup", root); } /** * Creates an empty decorated popup panel using the specified style names. * * @param autoHide * <code>true</code> if the popup should be automatically hidden * when the user clicks outside of it * @param modal * <code>true</code> if keyboard or mouse events that do not * target the PopupPanel or its children should be ignored * @param prefix * the prefix applied to child style names */ GDecoratedPopupPanel(boolean autoHide, boolean modal, String prefix, Panel root) { super(autoHide, modal, root); String[] rowStyles = new String[] { prefix + "Top", prefix + "Middle", prefix + "Bottom" }; decPanel = new GDecoratorPanel(rowStyles, 1); decPanel.setStyleName(""); setStylePrimaryName(DEFAULT_STYLENAME); super.setWidget(decPanel); setStyleName(getContainerElement(), "popupContent", false); setStyleName(decPanel.getContainerElement(), prefix + "Content", true); } @Override public void clear() { decPanel.clear(); } @Override public Widget getWidget() { return decPanel.getWidget(); } @Override public Iterator<Widget> iterator() { return decPanel.iterator(); } @Override public boolean remove(Widget w) { return decPanel.remove(w); } @Override public void setWidget(Widget w) { decPanel.setWidget(w); maybeUpdateSize(); } @Override protected void doAttachChildren() { // See comment in doDetachChildren for an explanation of this call decPanel.onAttach(); } @Override protected void doDetachChildren() { // We need to detach the decPanel because it is not part of the iterator // of // Widgets that this class returns (see the iterator() method override). // Detaching the decPanel detaches both itself and its children. We do // not // call super.onDetachChildren() because that would detach the // decPanel's // children (redundantly) without detaching the decPanel itself. // This is similar to a {@link ComplexPanel}, but we do not want to // expose // the decPanel widget, as its just an internal implementation. decPanel.onDetach(); } /** * Get a specific Element from the panel. * * @param row * the row index * @param cell * the cell index * @return the Element at the given row and cell */ protected com.google.gwt.user.client.Element getCellElement(int row, int cell) { return DOM.asOld(decPanel.getCellElement(row, cell)); } }