List of usage examples for com.google.gwt.user.client.ui HorizontalPanel subclass-usage
From source file org.pentaho.mantle.client.solutionbrowser.tabs.TabWidget.java
public class TabWidget extends HorizontalPanel implements MouseListener { private static enum TABCOMMANDTYPE { BACK, RELOAD, RELOAD_ALL, CLOSE, CLOSE_ALL, CLOSE_OTHERS, NEW_WINDOW, CREATE_DEEP_LINK };
From source file org.pentaho.mantle.client.ui.CustomDropDown.java
public class CustomDropDown extends HorizontalPanel implements HasText { private static final String STYLE = "custom-dropdown"; private final PopupPanel popup = new PopupPanel(true, true) { private FocusPanel pageBackground = null;
From source file org.pentaho.pac.client.AdminConsoleToolbar.java
public class AdminConsoleToolbar extends HorizontalPanel { ToolbarIndicator toolbarIndicator; private Timer statusTimer = null; HorizontalPanel buttonsPanel = new HorizontalPanel(); HorizontalPanel indicatorsRight = new HorizontalPanel();
From source file org.pentaho.pac.client.common.ui.AccumulatorPanel.java
public class AccumulatorPanel<T> extends HorizontalPanel implements ClickListener { Button addToAccumulationBtn = new Button(">"); //$NON-NLS-1$ Button removeFromAccumulationBtn = new Button("<"); //$NON-NLS-1$ GenericObjectListBox<T> availableItemsListBox = new GenericObjectListBox<T>(true); GenericObjectListBox<T> accumulatedItemsListBox = new GenericObjectListBox<T>(true); Label availableItemsLabel = new Label(Messages.getString("availableItemsTitle")); //$NON-NLS-1$
From source file org.pentaho.pac.client.common.ui.toolbar.Toolbar.java
/**
* Displays a collection of buttons in a standard toolbar view. Also supports
* ToolbarGroup objects that manage related buttons.
*
* @author nbaker
*/
From source file org.pentaho.pac.client.scheduler.view.SchedulerToolbar.java
public class SchedulerToolbar extends HorizontalPanel { public final static String ALL_GROUPS_FILTER = Messages.getString("allGroups"); //$NON-NLS-1$ private PushButton createBtn = null; private PushButton updateBtn = null; private PushButton deleteBtn = null;
From source file org.pentaho.pac.client.ToolbarIndicator.java
public class ToolbarIndicator extends HorizontalPanel { protected Label statusLabel; protected VerticalPanel imageHolderPanel; private Image serverAliveImage; private Image serverDeadImage;
From source file org.pentaho.pac.client.users.UsersPanel.java
public class UsersPanel extends HorizontalPanel implements ClickListener, ChangeListener, PopupListener, KeyboardListener { class UserNameFilter implements IListBoxFilter { String userNameFilter;
From source file org.pentaho.pat.client.ui.widgets.CellLabelPanel.java
/**
* Creates the panel for Cell Labels.
*
* @author tom(at)wamonline.org.uk
*
*/
From source file org.pentaho.pat.client.ui.widgets.MemberSelectionLabel.java
/**
* The Class MemberSelectionLabel.
*
* @created Sept 8, 2009
* @author tom(at)wamonline.co.uk
*/