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

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

Introduction

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

Usage

From source file com.audata.client.search.QuickSearchPanel.java

public class QuickSearchPanel extends HorizontalPanel implements FocusListener, KeyboardListener, ClickListener {

    private static final Language LANG = (Language) GWT.create(Language.class);
    private static String qsMsg = LANG.quick_search_Text();

    private TextBox criteria;

From source file com.calclab.emite.widgets.client.logout.LogoutWidget.java

public class LogoutWidget extends HorizontalPanel implements EmiteWidget {

    private final Label label;
    private final Button button;
    final Event0 onLogout;

From source file com.cognitivemedicine.metricsdashboard.client.adminconsole.ChartsTab.java

/**
 * This feature still needs to be fleshed out. The idea is to use this tab to associate Metrics with
 * chart types.
 * 
 * @author sschechter
 *

From source file com.cognitivemedicine.metricsdashboard.client.adminconsole.MetricsTab.java

/**
 * This tab is used to create new Metric Groups and associate them with Metrics
 * 
 * @author sschechter
 *
 */

From source file com.cognitivemedicine.metricsdashboard.client.adminconsole.RolesTab.java

public class RolesTab extends HorizontalPanel {
    private DashboardController controller;

    public RolesTab(DashboardController controller) {
        this.controller = controller;

From source file com.cognitivemedicine.metricsdashboard.client.dashboard.DashboardToolStripBar.java

/**
 * A toolstrip bar for the dashboard
 * 
 * @author sschechter
 * 
 */

From source file com.dimdim.conference.ui.sharing.client.CollaborationWidgetDisplayPanel.java

/**
 * @author Jayant Pandit
 * @email Jayant.Pandit@communiva.com
 * 
 */

From source file com.dimdim.conference.ui.sharing.client.ResourceSharingPanel.java

/**
 * @author Jayant Pandit
 * @email Jayant.Pandit@communiva.com
 * 
 * This panel simply switches between various shares. Only one of the sharing
 * panels can be active at a given time.

From source file com.enably.chrometric.client.FilterPanel.java

public class FilterPanel extends HorizontalPanel {

    public FilterPanel() {
        setStyleName("filters");
        build();
    }

From source file com.ephesoft.gxt.core.client.ThumbnailStack.java

public class ThumbnailStack extends HorizontalPanel {

    private static final int MAXIMUM_STACKED_IMAGES = 5;
    private List<Image> imageList;

    public ThumbnailStack(final List<Image> imageList) {