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

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

Introduction

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

Usage

From source file $.HelloScreen.java

    public class HelloScreen extends VerticalPanel {

        static class Factory implements Screen.EntryPoint {
            @Override
            public void onLoad(Screen screen) {
                screen.setPageTitle("Hello");

From source file burrito.client.widgets.draganddrop.VerticalPanelWithSpacer.java

public class VerticalPanelWithSpacer extends VerticalPanel {

    private static final String CSS_CLASS = "vertical-spacer";

    public VerticalPanelWithSpacer() {
        Label spacer = new Label("");

From source file ch.heftix.mailxel.client.AddressOverviewGrid.java

public class AddressOverviewGrid extends VerticalPanel {

    private List<AddressTO> addresses = new ArrayList<AddressTO>();

    public static final int LABEL_ROW = 0;
    public static final int HEADER_ROW_1 = 1;

From source file ch.heftix.mailxel.client.AddressUploadGrid.java

public class AddressUploadGrid extends VerticalPanel {

    private Label statusMessage = new Label();

    private TextArea textArea = new TextArea();

From source file ch.heftix.mailxel.client.AttachmentPanel.java

public class AttachmentPanel extends VerticalPanel {

    public AttachmentPanel(final AttachmentTO attachmentTO, final MailServiceAsync mailxelService,
            final MailxelPanel mailxelPanel, final boolean directDownload) {

        String url = GWT.getModuleBaseURL() + "mailxel?id=" + Integer.toString(attachmentTO.id);

From source file ch.heftix.mailxel.client.CategoryOverviewGrid.java

public class CategoryOverviewGrid extends VerticalPanel {

    private List<Category> categories = new ArrayList<Category>();

    public static final int LABEL_ROW = 0;
    public static final int HEADER_ROW_1 = 1;

From source file ch.heftix.mailxel.client.ConfigGrid.java

public class ConfigGrid extends VerticalPanel {

    private FlexTable grid = new FlexTable();

    private Label status = new Label();

From source file ch.heftix.mailxel.client.IconOverviewGrid.java

public class IconOverviewGrid extends VerticalPanel {

    private List<IconTO> icons = new ArrayList<IconTO>();

    public static final int LABEL_ROW = 0;
    public static final int HEADER_ROW_1 = 1;

From source file ch.heftix.mailxel.client.MailDetailGrid.java

public class MailDetailGrid extends VerticalPanel implements MailDetailDisplay, HasMailxelTab {

    private MailServiceAsync mailxelService = null;
    private FlexTable grid = null;
    private TextArea bodyArea = null;
    private FlexTable categoryHistory = null;

From source file ch.heftix.mailxel.client.MailOverviewCellTable.java

public class MailOverviewCellTable extends VerticalPanel implements HasPrevNext {

    private List<Envelope> envelopes = new ArrayList<Envelope>();
    // private List<CheckBox> checkboxes = new ArrayList<CheckBox>();

    private CursoredList<Envelope> cl = null;