List of usage examples for com.google.gwt.user.client.ui DialogBox subclass-usage
From source file edu.colorado.csdms.wmt.client.ui.dialog.RunDialogBox.java
/**
* A customized DialogBox with a droplist for choosing the host to run the
* model, as well as input fields for logging into the host.
*
* @author Mark Piper (mark.piper@colorado.edu)
*/
From source file edu.colorado.csdms.wmt.client.ui.dialog.SaveDialogBox.java
/**
* A customized DialogBox with a field for setting the name/description of the
* model, and a "Labels" button for applying labels to the model (used for
* filtering). "OK" and "Cancel" buttons are shown on the bottom of the dialog.
*
* @author Mark Piper (mark.piper@colorado.edu)
From source file edu.ucdenver.bios.glimmpseweb.client.shared.CancelDialogBox.java
public class CancelDialogBox extends DialogBox { private static final String STYLE_BUTTON = "buttonStyle"; public Widget cancelDialogBox() { DialogBox dialogBox = new DialogBox(); dialogBox.setGlassEnabled(true);
From source file edu.ucdenver.bios.glimmpseweb.client.shared.ExplanationDialogBox.java
/**
* Explanation dialog panel
*
* @author Vijay Akula
* @author Sarah Kreidler
*
From source file edu.ucsb.eucalyptus.admin.client.extensions.store.HowToRunDialog.java
class HowToRunDialog extends DialogBox { public HowToRunDialog(ImageInfo imageInfo, final ImageState imageState) { Button closeButton = new Button("Close"); closeButton.addClickHandler(new ClickHandler() {
From source file edu.ucsb.eucalyptus.admin.client.extensions.store.ImageErrorDialog.java
class ImageErrorDialog extends DialogBox { public ImageErrorDialog(ImageInfo imageInfo, final ImageState imageState) { Button closeButton = new Button("Close"); Button clearErrorButton = new Button("Clear Error");
From source file edu.udes.bio.genus.client.algo.match.MatchDialog.java
/** * The Class MatchDialog. */ public class MatchDialog extends DialogBox { protected final static String EMPTYSTRING = "";
From source file es.deusto.weblab.client.experiments.logic.ui.ChangeUnknownGateDialogBox.java
class ChangeUnknownGateDialogBox extends DialogBox { static IWebLabI18N i18n = GWT.create(IWebLabI18N.class); public ChangeUnknownGateDialogBox(final LogicExperiment board) { this.setText(i18n.chooseCorrectGate());
From source file es.deusto.weblab.client.experiments.logic.ui.MobileChangeUnknownGateDialogBox.java
class MobileChangeUnknownGateDialogBox extends DialogBox { static IWebLabI18N i18n = GWT.create(IWebLabI18N.class); private final Map<Image, Operation> images2operations = new HashMap<Image, Operation>(); public MobileChangeUnknownGateDialogBox(final MobileLogicExperiment board) {
From source file es.ugr.rodgom.ludiuca.client.profesor.AboutDialog.java
/** * A simple example of an 'about' dialog box. */ public class AboutDialog extends DialogBox { interface Binder extends UiBinder<Widget, AboutDialog> {