List of usage examples for com.google.gwt.user.client.ui DockPanel subclass-usage
From source file org.pentaho.gwt.widgets.client.wizards.AbstractWizardPanel.java
/**
* @author wseyler
*
* Abstract class for implenenting a wizard panel (step). Each step has it's own instance of this class. So a
* wizard with 5 steps will have 5 distince implementations of this class to display for each step.
*/
From source file org.pentaho.mantle.client.admin.ContentCleanerPanel.java
public class ContentCleanerPanel extends DockPanel implements ISysAdminPanel { private static ContentCleanerPanel instance = new ContentCleanerPanel(); /** * Use get instance for use in Admin, otherwise use constructor
From source file org.pentaho.pac.client.AdminConsoleMasterDetailsPanel.java
public class AdminConsoleMasterDetailsPanel extends DockPanel implements ClickListener { protected class PageInfo { boolean hide = false; ToggleButton activationButton; Widget page;
From source file org.pentaho.pac.client.AdminConsoleMasterPanel.java
public class AdminConsoleMasterPanel extends DockPanel { VerticalPanel buttonPanel = new VerticalPanel(); CommonTasksPanel commonTasksPanel = new CommonTasksPanel(); VerticalPanel verticalPanel = new VerticalPanel(); public AdminConsoleMasterPanel() {
From source file org.pentaho.pac.client.common.ui.GroupBox.java
public class GroupBox extends DockPanel { private Label title; private Grid grid; public static final int GREEN = 0; public static final int GREY = 1;
From source file org.pentaho.pac.client.datasources.DataSourcesPanel.java
public class DataSourcesPanel extends DockPanel implements ClickListener, ChangeListener { public static final String EMPTY_STRING = ""; //$NON-NLS-1$ public static final int GENERAL_PANEL_ID = 0; public static final int ADVANCE_PANEL_ID = 1;
From source file org.pentaho.pac.client.PentahoAdminConsole.java
public class PentahoAdminConsole extends DockPanel implements IRefreshableAdminConsole { public static final String DEFAULT_HOMEPAGE_URL = "http://www.pentaho.com/console_home"; //$NON-NLS-1$ protected AdminConsoleToolbar toolbar = new AdminConsoleToolbar(this); protected AdminConsoleMasterDetailsPanel adminConsoleMasterDetailsPanel = new AdminConsoleMasterDetailsPanel();
From source file org.pentaho.pac.client.roles.RolesPanel.java
public class RolesPanel extends DockPanel implements ClickListener, ChangeListener, PopupListener, KeyboardListener { class RoleNameFilter implements IListBoxFilter { String roleNameFilter;
From source file org.pentaho.pac.client.UsersAndRolesPanel.java
public class UsersAndRolesPanel extends DockPanel implements ClickListener { ToggleButton usersButton = new ToggleButton(Messages.getString("users"), Messages.getString("users")); //$NON-NLS-1$//$NON-NLS-2$ ToggleButton rolesButton = new ToggleButton(Messages.getString("roles"), Messages.getString("roles")); //$NON-NLS-1$//$NON-NLS-2$ DeckPanel deckPanel = new DeckPanel();
From source file org.rstudio.core.client.widget.CenterPanel.java
public class CenterPanel extends DockPanel { public CenterPanel(Widget widget) { add(widget, DockPanel.CENTER); setCellHorizontalAlignment(widget, DockPanel.ALIGN_CENTER); setCellVerticalAlignment(widget, DockPanel.ALIGN_MIDDLE); }