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

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

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui RequiresResize interface-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 ca.wimsc.client.common.widgets.google.MobileScrollPanelInternal.java

/**
 * A panel implementation that behaves like a {@link com.google.gwt.user.client.ui.ScrollPanel ScrollPanel} by default,
 * but switches to a manual drag-scroll implementation on browsers that support touch events.
 * 
 * TODO(jgw): Implement scroll events. TODO(jgw): This is widgetry that doesn't belong in this package. TODO(jgw):
 * Consider rolling it directly into ScrollPanel. Maybe.

From source file ch.takoyaki.email.html.client.ui.AceTextEditorWrapper.java

public class AceTextEditorWrapper extends Composite implements TextEditor, RequiresResize {

    private final List<Ready> onReadyCallbacks = new LinkedList<AceTextEditorWrapper.Ready>();
    private final HandlerRegistration attachHandlerReg;

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

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 ch.unifr.pai.mindmap.client.QRUrl.java

/**
 * A {@link TWICEModule} that provides a visual tag (QR code) of the current URL by requesting its data from the {@link QRCodeGeneratorServlet}
 * 
 * @author Oliver Schmid
 * 
 */

From source file ch.unifr.pai.twice.layout.client.commons.ResizableDecoratorPanel.java

/**
 * The resizable decorator panel used to manage the resizing of the different split layout panels in the eclipse layout
 * 
 * @author Oliver Schmid
 * 
 */

From source file cn.mapway.document.ui.client.component.ace.AceEditor.java

/**
 * A GWT widget for the Ajax.org Code Editor (ACE).
 *
 * @see <a href="http://ace.ajax.org/">Ajax.org Code Editor</a>
 */
public class AceEditor extends Composite implements RequiresResize, HasText, TakesValue<String> {

From source file codingcareers.webapp.client.ace.AceEditor.java

/**
 * A GWT widget for the Ajax.org Code Editor (ACE).
 *
 * @see <a href="http://ace.ajax.org/">Ajax.org Code Editor</a>
 */
public class AceEditor extends Composite implements RequiresResize, HasText, TakesValue<String> {