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

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

Introduction

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

Usage

From source file com.google.code.p.gwtchismes.client.GWTCFieldSet.java

/**
 * <p>
 * <b>A widget that groups a set of form fields in squared box.</b>
 * </p>
 *  
 * @author Manuel Carrasco Moino

From source file com.haulmont.cuba.web.toolkit.ui.client.aggregation.TableAggregationRow.java

/**
 * Special aggregation row for {@link com.haulmont.cuba.web.toolkit.ui.client.table.CubaScrollTableWidget} and
 * {@link com.haulmont.cuba.web.toolkit.ui.client.treetable.CubaTreeTableWidget}
 */
public class TableAggregationRow extends Panel {

From source file com.haulmont.cuba.web.widgets.client.aggregation.TableAggregationRow.java

/**
 * Special aggregation row for {@link com.haulmont.cuba.web.widgets.client.table.CubaScrollTableWidget} and
 * {@link com.haulmont.cuba.web.widgets.client.treetable.CubaTreeTableWidget}
 */
public class TableAggregationRow extends Panel {

From source file com.ritchey.client.view.SimplePanel.java

/**
 * Base class for panels that contain only one widget.
 */
public class SimplePanel extends Panel implements HasOneWidget {

    Widget widget;

From source file com.vaadin.addon.spreadsheet.client.SheetWidget.java

public class SheetWidget extends Panel {

    private static final String SELECTED_COLUMN_HEADER_CLASSNAME = "selected-column-header";
    private static final String SELECTED_ROW_HEADER_CLASSNAME = "selected-row-header";
    private static final String FREEZE_PANE_INACTIVE_STYLENAME = "inactive";
    private static final String RESIZE_LINE_CLASSNAME = "resize-line";

From source file com.vaadin.tapio.googlemaps.client.CustomInfoWindow.java

public class CustomInfoWindow extends Panel {

    private InfoWindow window;
    private Widget contents;
    private CloseClickMapHandler closeHandler;
    private HandlerRegistration closeHandlerReg;

From source file com.vaadin.terminal.gwt.client.ui.layout.ChildComponentContainer.java

public class ChildComponentContainer extends Panel {

    /**
     * Size of the container DIV excluding any margins and also excluding the
     * expansion amount (containerExpansion)
     */

From source file my.client.common.PanelForView.java

/**
 * Base class for panels that contain only one widget.
 */
public class PanelForView extends Panel implements HasOneWidget {
    Widget currntWidget;
    Widget widget;

From source file net.sf.mmm.client.ui.gwt.widgets.SingleCompositePanel.java

/**
 * This is a custom {@link Widget} that represents a {@link Panel} owing a single child.
 * 
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */

From source file nz.co.doltech.gwtjui.core.client.Wrapper.java

public abstract class Wrapper extends Panel implements HasOneWidget {

    private class GhostWidget extends Widget {
        public GhostWidget(Element element) {
            setElement(element);
        }