List of usage examples for com.google.gwt.user.client.ui DialogBox subclass-usage
From source file com.google.appinventor.client.wizards.Wizard.java
/**
* A wizard controls a dialog box that cycles through a series of pages.
* <p>
* The user may decide to cancel the wizard before viewing or completing
* all of the pages. In that case, the wizard is closed and no further
* action is taken.
From source file com.google.gerrit.client.api.PluginLoader.java
/** Loads JavaScript plugins with a progress meter visible. */ public class PluginLoader extends DialogBox { private static PluginLoader self; public static void load(List<String> plugins, int loadTimeout, AsyncCallback<VoidResult> callback) { if (plugins == null || plugins.isEmpty()) {
From source file com.google.gwt.sample.mail.client.AboutDialog.java
/** * A simple example of an 'about' dialog box. */ public class AboutDialog extends DialogBox { interface Binder extends UiBinder<Widget, AboutDialog> {
From source file com.google.gwt.uibinder.test.client.FooDialog.java
/** * A custom subclass of DialogBox, to prove we can use them. */ public class FooDialog extends DialogBox { FooDialog() { super(false, false);
From source file com.googlecode.kanbanik.client.components.WindowBox.java
/**
* Extension of the standard GWT DialogBox to provide a more "window"-like functionality. By default, the WindowBox
* has two control-buttons in the top right corner of the header, which allow the box to be reduced to it's header
* ("minimize") or the whole box to be hidden ("close"). The visiblity of these controls can be toggled seperately
* with {@link #setMinimizeIconVisible(boolean)} and {@link #setCloseIconVisible(boolean)} respectively.
* <br><br>
From source file com.gwt2go.dev.client.ui.widget.DialogBoxExt.java
/** * Extended DialogBox widget with close button inside the pop-up header * * @author L.Pelov */ public class DialogBoxExt extends DialogBox {
From source file com.hellogwt.client.AboutDialog.java
/** * A simple example of an 'about' dialog box. */ public class AboutDialog extends DialogBox { interface Binder extends UiBinder<Widget, AboutDialog> {
From source file com.ikon.extension.frontend.client.widget.dropbox.ConfirmPopup.java
/**
* Confirm panel
*
* @author sochoa
*
*/
From source file com.ikon.extension.frontend.client.widget.dropbox.FolderSelectPopup.java
/**
* FolderSelectPopup
*
* @author sochoa
*
*/
From source file com.ikon.extension.frontend.client.widget.dropbox.SearchPopup.java
/** * SearchPopup * * @author jllort */ public class SearchPopup extends DialogBox {