List of usage examples for com.google.gwt.user.client.ui DialogBox subclass-usage
From source file org.phrasebook.transword.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 org.restlet.example.book.restlet.ch09.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 org.roda.wui.client.common.dialogs.DefaultSelectDialog.java
public class DefaultSelectDialog<T extends IsIndexed, O> extends DialogBox implements SelectDialog<T> { private static final Binder binder = GWT.create(Binder.class); @SuppressWarnings("rawtypes") interface Binder extends UiBinder<Widget, DefaultSelectDialog> { }
From source file org.roda.wui.client.common.dialogs.EditMultipleRiskIncidenceDialog.java
public class EditMultipleRiskIncidenceDialog<T extends IsIndexed> extends DialogBox implements SelectDialog<T> { private static final Binder binder = GWT.create(Binder.class); @SuppressWarnings("rawtypes") interface Binder extends UiBinder<Widget, EditMultipleRiskIncidenceDialog> { }
From source file org.rstudio.core.client.widget.ModalDialogBase.java
public abstract class ModalDialogBase extends DialogBox { protected ModalDialogBase() { this(null); } protected ModalDialogBase(SimplePanel containerPanel) {
From source file org.sakaiproject.sgs2.client.ui.widget.Sgs2DialogBox.java
public class Sgs2DialogBox extends DialogBox { private Button button = null; private VerticalPanel mainVerticalPanel = null; private VerticalPanel verticalPanel = null; private HandlerRegistration handlerRegistration = null;
From source file org.simpledbm.samples.forum.client.AboutDialog.java
public class AboutDialog extends DialogBox { public AboutDialog() { setText("About the SimpleForum Sample"); FlowPanel panel = new FlowPanel(); HTML text = new HTML( "This sample application demonstrates the " + "SimpleDBM's network client server API in a simple "
From source file org.simpledbm.samples.forum.client.NewPostViewImpl.java
public class NewPostViewImpl extends DialogBox implements ClickHandler { private final PostsHandler postsHandler; private final Topic topic; VerticalPanel outer = new VerticalPanel(); RichTextArea textArea = new RichTextArea();
From source file org.simpledbm.samples.forum.client.NewTopicViewImpl.java
public class NewTopicViewImpl extends DialogBox implements ClickHandler { private final TopicsHandler topicsHandler; private final Forum forum; VerticalPanel outer = new VerticalPanel(); TextBox topicText = new TextBox();
From source file org.spiffyui.client.widgets.dialog.Dialog.java
/** * This is a common ancestor class where we can change * the behavior or look of all Dialogs. It handles the ESC key and the close X icon. * Buttons are added to a button bar. */ public abstract class Dialog extends DialogBox {