Example usage for com.google.gwt.user.client.ui DecoratedPopupPanel subclass-usage

List of usage examples for com.google.gwt.user.client.ui DecoratedPopupPanel subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui DecoratedPopupPanel subclass-usage.

Usage

From source file com.apress.progwt.client.college.gui.ext.ContextMenu.java

public class ContextMenu extends DecoratedPopupPanel {

    protected int x;
    protected int y;

    public ContextMenu(Widget w, final int x, final int y) {

From source file com.chinarewards.gwt.license.client.ui.DialogBox.java

/**
 * A form of popup that has a caption area at the top and can be dragged by the
 * user. Unlike a PopupPanel, calls to {@link #setWidth(String)} and
 * {@link #setHeight(String)} will set the width and height of the dialog box
 * itself, even if a widget has not been added as yet.
 * <p>

From source file com.chinarewards.gwt.license.client.ui.MyDialogBox.java

/**
 * A form of popup that has a caption area at the top and can be dragged by the
 * user. Unlike a PopupPanel, calls to {@link #setWidth(String)} and
 * {@link #setHeight(String)} will set the width and height of the dialog box
 * itself, even if a widget has not been added as yet.
 * <p>

From source file com.google.appinventor.client.RpcStatusPopup.java

/**
 * Popup that shows a status message while an asynchronous request is
 * happening.
 *
 */
public class RpcStatusPopup extends DecoratedPopupPanel implements RpcListener {

From source file com.moesol.gwt.maps.client.controls.BubbleControl.java

/**
 * Animated bubble to show on map.
 * You need to set CSS styles on the map-BubbleControl
 * or the bubble will show above the map. Below is an
 * example.
 <pre>

From source file com.tasktop.c2c.server.tasks.client.widgets.TaskDetailsPopupPanel.java

/**
 * @author Clint Morgan (Tasktop Technologies Inc.)
 * 
 */
public class TaskDetailsPopupPanel extends DecoratedPopupPanel
        implements Editor<Task>, PlaceChangeEvent.Handler, PlaceChangeRequestEvent.Handler {

From source file com.tasktop.c2c.server.tasks.client.widgets.wiki.ConfluenceCheatSheetPopup.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class ConfluenceCheatSheetPopup extends DecoratedPopupPanel {

From source file com.tasktop.c2c.server.tasks.client.widgets.wiki.TextileCheatSheetPopup.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class TextileCheatSheetPopup extends DecoratedPopupPanel {

From source file com.xclinical.mdr.client.ui.PopupDialog.java

/**
 * A simple popup panel that contains a single widgets as its child.
 * 
 * @author Michael Schollmeyer (michael@mictale.com)
 *
 * @param <T> is the type of the child window.

From source file org.drools.workbench.screens.scenariosimulation.client.popup.CustomBusyPopup.java

public class CustomBusyPopup extends DecoratedPopupPanel {

    private static CustomBusyPopup.LoadingViewBinder uiBinder = GWT.create(CustomBusyPopup.LoadingViewBinder.class);
    private static final CustomBusyPopup INSTANCE = new CustomBusyPopup();

    private static Timer deferredShowTimer = new Timer() {