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

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

Introduction

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

Usage

From source file at.ac.fhcampuswien.atom.client.gui.attributes.components.slider.SliderBar.java

/**
 * A widget that allows the user to select a value within a range of possible
 * values using a sliding bar that responds to mouse events.
 * 
 * <h3>Keyboard Events</h3>
 * <p>

From source file bufferings.ktr.wjr.client.ui.widget.WjrNoBorderFocusPanel.java

/**
 * The focus panel with no border.
 * 
 * This class is used by WjrTree and WjrListBox. If you want to use key to
 * operate the selection, the focus is needed. So I used the focusable panel in
 * the back end of them. The focusable panel has borders, but I want not to show

From source file cc.alcina.framework.gwt.client.widget.complex.SliderBar.java

/**
 * A widget that allows the user to select a value within a range of possible
 * values using a sliding bar that responds to mouse events.
 *
 * <h3>Keyboard Events</h3>
 * <p>

From source file ch.sebastienzurfluh.swissmuseum.core.client.view.tilemenu.ModeSwapButton.java

public class ModeSwapButton extends FocusPanel implements MouseUpHandler {
    public enum State {
        DETAILED, ICON_ONLY;
    }

    private State currentState;

From source file ch.sebastienzurfluh.swissmuseum.core.client.view.tilemenu.Tile.java

/**
 * This widget is a square icon menu.
 * 
 * Tile has two modes: "icon only mode" and "detailed mode".
 *
 * @author Sebastien Zurfluh

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

/**
 * The widget representing an actual note instance in the {@link MindMapCanvas} visualization
 * 
 * @author Oliver Schmid
 * 
 */

From source file ch.unifr.pai.twice.layout.client.eclipseLayout.MiceTabLabel.java

/**
 * The tab label which implements the {@link Draggable} interface including a close button to remove the component from the layout as well as a reference to the
 * actual component widget
 * 
 * @author Oliver Schmid
 * 

From source file com.ait.lienzo.client.widget.LienzoPanel.java

/**
 * LienzoPanel acts as a Container for a {@link Viewport}.
 * 
 * <ul>
 * <li>An application will typically be composed of one or more LienzoPanels.</li>
 * <li>A LienzoPanel takes width and height as input parameters.</li>

From source file com.ait.lienzo.client.widget.panel.LienzoPanel.java

public abstract class LienzoPanel<P extends LienzoPanel> extends FocusPanel
        implements RequiresResize, ProvidesResize {
    public abstract P add(Layer layer);

    public abstract P setBackgroundLayer(Layer layer);

From source file com.allen_sauer.gwt.dnd.demo.client.example.matryoshka.RGBFocusPanel.java

/**
 * Colorful panel for dragging and dropping.
 */
public class RGBFocusPanel extends FocusPanel {

    private static final String CSS_DEMO_RGB_FOCUS_PANEL = "demo-rgb-focus-panel";