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

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

Introduction

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

Usage

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

public class ConfigTabPanel extends TabLayoutPanel {

    public ConfigTabPanel() {
        super(1.5, Unit.EM);
    }

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

/**
 * A {@link TabLayoutPanel} that shows scroll buttons if necessary
 */
public class ScrolledTabLayoutPanel extends TabLayoutPanel {

    private static final int IMAGE_PADDING_PIXELS = 4;

From source file ch.unifr.pai.twice.layout.client.eclipseLayout.MiceLayoutTabPanel.java

/**
 * The {@link MiceLayoutTabPanel} is a panel which provides tabs that can contain multiple widget components. The labels of the tab are draggable and can be *
 * rearranged as it is known from the eclipse user interface. Additionally, the screen can be split if a tab is dragged to a border of the tab panel.
 * 
 * @author Oliver Schmid
 * 

From source file com.astrofizzbizz.raspberrypicamera.client.tablayout.MyTabLayoutPanel.java

public class MyTabLayoutPanel extends TabLayoutPanel {
    private int panelWidth = 285;
    private int panelHeight = 130;
    private int cameraSettingsPanelTabId;
    private int takeImagePanelTabId;
    private int timeLapseLatestImageViewerPanelTabId;

From source file com.threerings.admin.web.client.ConfigEditorPanel.java

/**
 * The main panel of the configuration editor. All service calls are routed through here.
 * Subclass this class in your project.
 */
public abstract class ConfigEditorPanel extends TabLayoutPanel implements ConfigAccessor {
    /**

From source file de.metanome.frontend.client.BasePage.java

/**
 * Overall Application page that has tabs for the various functions (subpages). It also coordinates
 * control between these subpages. Should be added to RootPanel.
 *
 * @author Claudia Exeler
 */

From source file de.metanome.frontend.client.datasources.DataSourcePage.java

/**
 * Page to configure data inputs.
 */
public class DataSourcePage extends TabLayoutPanel implements TabContent {

    private static final String DATABASE_CONNECTION = "Database Connection";

From source file hu.mapro.gwt.client.widget.ScrollableTabLayoutPanel.java

public class ScrollableTabLayoutPanel extends TabLayoutPanel {

    interface CSS extends CssResource {
        String leftEnabled();

        String rightEnabled();

From source file nz.org.winters.appspot.acrareporter.client.ui.ScrolledTabLayoutPanel.java

public class ScrolledTabLayoutPanel extends TabLayoutPanel {

    private static final int IMAGE_PADDING_PIXELS = 4;

    private LayoutPanel panel;
    private FlowPanel tabBar;

From source file org.rstudio.core.client.theme.DialogTabLayoutPanel.java

public class DialogTabLayoutPanel extends TabLayoutPanel {
    public DialogTabLayoutPanel() {
        super(14, Unit.PX);

        ThemeStyles styles = ThemeResources.INSTANCE.themeStyles();
        addStyleName(styles.dialogTabPanel());