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

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

Introduction

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

Usage

From source file at.ait.dme.yuma.client.image.shape.ShapePanel.java

/**
 * adapted from fred sauer's dnd samples
 * wraps a JsGraphicsPanel and makes it draggable and resizable
 * 
 * @author Christian Sadilek
 */

From source file at.ait.dme.yuma.suite.apps.image.core.shared.shape.ShapePanel.java

/**
 * adapted from fred sauer's dnd samples
 * wraps a JsGraphicsPanel and makes it draggable and resizable
 * 
 * @author Christian Sadilek
 */

From source file ch.sebastienzurfluh.swissmuseum.core.client.view.supportwidgets.SlidingPanel.java

public class SlidingPanel extends AbsolutePanel {
    private static final int SLOW = 400; //ms

    private HorizontalPanel movingPanel = new HorizontalPanel();
    private SlideAnimator slideAnimator;

From source file ch.unifr.pai.ice.client.dragNdrop.DropAbsolutePanel.java

public class DropAbsolutePanel extends AbsolutePanel {

    int panelID;

    public DropAbsolutePanel() {
        super();

From source file ch.unifr.pai.ice.client.textedit.TextEntry1Space.java

public class TextEntry1Space extends AbsolutePanel implements ICEDataLogger, RequireInitialisation {

    VerticalPanel vPanel = new VerticalPanel();

    TextEditor textEd;
    Vector<String> resultVector;

From source file ch.unifr.pai.ice.client.tracking.LineTracking1user.java

public class LineTracking1user extends AbsolutePanel implements RequireInitialisation {

    int timerDelay = 100;

    private final int lineOffset = 50;

From source file ch.unifr.pai.mindmap.client.mindmap.BackgroundImgRepo.java

/**
 * A widget which allows (by the means of HTML5 drag and drop functionalities) to drag images from external sources (e.g. a file browser) on top of this panel.
 * On drop, it stores the image as a data-url and offers it as a thumbnail to be used for the background of the canvas
 * 
 * 
 * @author Oliver Schmid

From source file ch.unifr.pai.twice.widgets.client.MyNewTextBox.java

public class MyNewTextBox extends AbsolutePanel {

    private NativePreviewHandler previewHandler = new Event.NativePreviewHandler() {

        @Override
        public void onPreviewNativeEvent(NativePreviewEvent event) {

From source file com.ait.toolkit.clientio.uploader.client.Uploader.java

/**
 * The main GWT widget that can be constructed and then configured in order to add an uploader
 * component into a GWT application.  Basic usage is as follows:
 * <pre><code>
 * Uploader uploader = new Uploader()
 *    .setUploadURL("http://www.widgetcorp.com/uploads.php")

From source file com.allen_sauer.gwt.dnd.demo.client.example.duallist.DualListBox.java

/**
 * Example of two lists side by side for {@link DualListExample}.
 */
public class DualListBox extends AbsolutePanel {

    private static final String CSS_DEMO_DUAL_LIST_EXAMPLE_CENTER = "demo-DualListExample-center";