Example usage for com.google.gwt.event.logical.shared ResizeHandler interface-usage

List of usage examples for com.google.gwt.event.logical.shared ResizeHandler interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared ResizeHandler interface-usage.

Usage

From source file asquare.gwt.tk.client.ui.behavior.impl.GlassPanelControllerStandard.java

public class GlassPanelControllerStandard extends ControllerAdaptor implements GlassPanelController, ResizeHandler {
    private HandlerRegistration m_windowResizeRegistration;

    /*
     * These track the last known scrollbar state. They are helpful in
     * determining if the panel size needs to be updated when the window is

From source file ch.unifr.pai.twice.multipointer.client.ExtendedWebsocketControl.java

/**
 * The currently used controller for multi-cursor device types
 * 
 * @author Oliver Schmid
 * 
 */

From source file ch.unifr.pai.twice.multipointer.client.WebsocketControl.java

/**
 * Use {@link ExtendedWebsocketControl} instead
 * 
 * @author Oliver Schmid
 * 
 */

From source file ch.unifr.pai.twice.multipointer.provider.client.MultiCursorController.java

/**
 * The currently used controller for multi-cursor device types
 * 
 * @author Oliver Schmid
 * 
 */

From source file com.appspot.codsallarts.client.Application.java

/**
 * <p>
 * A generic application that includes a title bar, main menu, content area, and
 * some external links at the top.
 * </p>
 * <h3>CSS Style Rules</h3>

From source file com.arcbees.website.client.application.error.NotFoundView.java

public class NotFoundView extends ViewImpl implements NotFoundPresenter.MyView, ResizeHandler {
    interface Binder extends UiBinder<Widget, NotFoundView> {
    }

    @UiField
    HTMLPanel error;

From source file com.badlogic.gdx.backends.gwt.widgets.ResizableWidgetCollection.java

/** A collection of {@link ResizableWidget} that periodically checks the outer dimensions of a widget and redraws it as necessary.
 * Every {@link ResizableWidgetCollection} uses a timer, so consider the cost when adding one.
 * 
 * Typically, a {@link ResizableWidgetCollection} is only needed if you expect your widgets to resize based on window resizing or
 * other events. Fixed sized Widgets do not need to be added to a {@link ResizableWidgetCollection} as they cannot be resized. */
public class ResizableWidgetCollection implements ResizeHandler, Iterable<ResizableWidget> {

From source file com.centretown.planets.client.application.widget.SizeableView.java

public abstract class SizeableView<T extends UiHandlers> extends ViewWithUiHandlers<T> implements ResizeHandler {

    private final static int CRAZY = 60;
    private int sanityCheck = 0;
    private Element element;

From source file com.cms.gwt.fs.client.view.calendar.ExtMonthPanel.java

public class ExtMonthPanel extends AbsolutePanel implements ResizeHandler, DateEventListener, DatePanel {

    private ArrayList<MonthPanelDropController> dropControllers = new ArrayList<MonthPanelDropController>();

    private Calendar current = new GregorianCalendar();

From source file com.fullmetalgalaxy.client.game.board.MAppBoard.java

/**
 * @author Vincent Legendre
 *
 */

public class MAppBoard extends GuiEntryPoint implements ResizeHandler, ModelUpdateEvent.Handler {