Example usage for com.google.gwt.user.client.ui ProvidesResize interface-usage

List of usage examples for com.google.gwt.user.client.ui ProvidesResize interface-usage

Introduction

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

Usage

From source file at.ac.fhcampuswien.atom.client.gui.frames.TabLayoutPanelCopy.java

/**
 * A panel that represents a tabbed set of pages, each of which contains another
 * widget. Its child widgets are shown as the user selects the various tabs
 * associated with them. The tabs can contain arbitrary text, HTML, or widgets.
 *
 * <p>

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

/**
 * The tab panel with JQueryUI theme.
 * 
 * @author bufferings[at]gmail.com
 */
public class WjrTabPanel extends ResizeComposite implements ProvidesResize, IndexedPanel,

From source file ch.takoyaki.email.html.client.ui.generic.ClosableTabLayoutPanel.java

public class ClosableTabLayoutPanel extends Composite implements CloseableTabs, RequiresResize, ProvidesResize {

    public static interface Resources extends ClientBundle {
        public static final Resources INSTANCE = GWT.create(Resources.class);

        @Source("left.png")

From source file ch.takoyaki.email.html.client.ui.generic.ResizableFlowPanel.java

public class ResizableFlowPanel extends FlowPanel implements RequiresResize, ProvidesResize {
    public void onResize() {
        for (Widget c : getChildren()) {
            if (c instanceof RequiresResize) {
                ((RequiresResize) c).onResize();
            }

From source file ch.takoyaki.email.html.client.ui.generic.VSplitPanel.java

public class VSplitPanel extends Composite implements RequiresResize, ProvidesResize {

    private static VSplitPanelBinder uiBinder = GWT.create(VSplitPanelBinder.class);

    interface VSplitPanelBinder extends UiBinder<Widget, VSplitPanel> {
    }

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.areahomeschoolers.baconbits.client.content.calendar.Calendar.java

public class Calendar extends CalendarWidget implements RequiresResize, ProvidesResize {

    /**
     * The component to manage the presentation of appointments in a single day layout.
     */
    private DayView dayView = null;

From source file com.axlight.gbrain.client.MainPane.java

public class MainPane extends AbsolutePanel implements ProvidesResize, RequiresResize, ScrollHandler {

    private final GBrainServiceAsync gbrainService = GWT.create(GBrainService.class);

    private final NodeManager nodeManager;
    private final AsyncCallback<Void> nullCallback;

From source file com.bearsoft.gwt.ui.containers.DraggablePanel.java

/**
 * 
 * @author mg
 */
public class DraggablePanel extends SimplePanel implements RequiresResize, ProvidesResize {