List of usage examples for com.google.gwt.user.client.ui HorizontalPanel subclass-usage
From source file ch.heftix.mailxel.client.StatusItem.java
public class StatusItem extends HorizontalPanel { private Image working = new Image("img/process-working.gif"); private Label lTitle = new Label(); private Label lDone = new Label(); public boolean isDone = false;
From source file ch.sebastienzurfluh.swissmuseum.parcours.client.view.infos.InfoMenubar.java
public class InfoMenubar extends HorizontalPanel { public InfoMenubar(final AnimationHelper animationHelper, final Widget goBackTo) { this.setStyleName("infoMenuBar"); final AppInfoPanel appInfo = new AppInfoPanel(goBackTo, animationHelper); final InstitutInfoPanel institutInfo = new InstitutInfoPanel(goBackTo, animationHelper);
From source file ch.unifr.pai.ice.client.dragNdrop.DND4users4spaces.java
public class DND4users4spaces extends HorizontalPanel implements RequireInitialisation { // AbsolutePanel dragPanel = new AbsolutePanel(); int blobsToDrop = 0;
From source file ch.unifr.pai.ice.client.textedit.TextEntrySepSpace.java
public class TextEntrySepSpace extends HorizontalPanel implements ICEDataLogger, RequireInitialisation { Vector<String> resultVector; int nbExpFinished = 0; int nbUser; Vector<String> userLogVector = new Vector<String>();
From source file ch.unifr.pai.ice.client.tracking.LineTracking2users.java
public class LineTracking2users extends HorizontalPanel implements RequireInitialisation { int expFinished = 0; int nbUser = 2; int timerDelay = 100; Image lineImage1 = new Image(GWT.getModuleBaseURL() + "black_line_2.jpg");
From source file ch.unifr.pai.twice.layout.client.commons.MiceDialogCaption.java
/**
* The caption of the dialog for the eclipse layout (including fullscreen and close button)
*
* @author Oliver Schmid
*
*/
From source file client.template.panel.DecisionPanel.java
public abstract class DecisionPanel extends HorizontalPanel { protected Button button; protected Image activity; protected AsyncCallback callback; protected ListPanel list; protected ListBox dropdown;
From source file com.algorithmstudy.visualizer.client.AlgorithmSelectionPanel.java
/** * Implements and manages the bar containing the algorithm selection options and manages the * creation/deletion of the panel showing the current algorithm being visualized. */ public class AlgorithmSelectionPanel extends HorizontalPanel {
From source file com.algorithmstudy.visualizer.client.sort.SortingSubSelectionPanel.java
public class SortingSubSelectionPanel extends HorizontalPanel { private SortingDisplayPanel displayPanel; private ListBox numberChoice; private int lastNumberChoice;
From source file com.audata.client.admin.SecurityPanel.java
/** * Admin panel for Security Levels and Caveats * @author jonm * */ public class SecurityPanel extends HorizontalPanel implements ClickListener, UpdateListener {