List of usage examples for com.google.gwt.event.logical.shared HasCloseHandlers interface-usage
From source file be.progs.routeshare.client.RouteShareMenu.java
/** * Menu for the RouteShare application. * * @author Joachim Van der Auwera */ public class RouteShareMenu extends Composite
From source file cc.alcina.framework.gwt.client.widget.dialog.RelativePopupPanel.java
/**
* A panel that can "pop up" over other widgets. It overlays the browser's
* client area (and any previously-created popups).
*
* <p>
* A RelativePopupPanel should not generally be added to other panels; rather,
From source file cc.kune.common.client.ui.dialogs.BSBasicDialog.java
public class BSBasicDialog extends Composite implements BasicDialogView, HasCloseHandlers<BSBasicDialog> { interface BSBasicDialogUiBinder extends UiBinder<Widget, BSBasicDialog> { } private static BSBasicDialogUiBinder uiBinder = GWT.create(BSBasicDialogUiBinder.class);
From source file cc.kune.common.client.ui.dialogs.CustomModalHeader.java
public class CustomModalHeader extends ModalHeader implements HasCloseHandlers { private final CloseButton closeButton = new CloseButton(); private IconLabel heading; public CustomModalHeader() { super();
From source file com.alkacon.geranium.client.ui.FieldSet.java
/** * A panel that behaves like a HTML fieldset.<p> */ public class FieldSet extends Composite implements HasOpenHandlers<FieldSet>, HasCloseHandlers<FieldSet> { /** The ui-binder interface for this composite. */
From source file com.edgenius.wiki.gwt.client.page.widgets.PageTreeWidget.java
/** * @author Dapeng.Ni */ public class PageTreeWidget extends SimplePanel implements HasSelectionHandlers<TreeItem>, HasOpenHandlers<TreeItem>, HasCloseHandlers<TreeItem>, SelectionHandler<TreeItem>, OpenHandler<TreeItem>, CloseHandler<TreeItem>, ElementRequesterCallback {
From source file com.geocento.webapps.eobroker.common.client.widgets.material.MaterialSearch.java
public class MaterialSearch extends MaterialValueBox<String> implements HasCloseHandlers<String>, HasActive { public interface Presenter { void textChanged(String text); void suggestionSelected(SearchObject suggestion);
From source file com.github.gwt.user.client.ui.DateTimePickerPanel.java
/**
* Panel with some {@link com.github.gwt.user.client.ui.grids.DateGrid} and
* {@link com.github.gwt.user.client.ui.Pager} bound together.
*
* @author Rinat Enikeev (rinat.enikeev[at]gmail[dot]com)
* @version %I%, %G%
From source file com.github.gwt.user.client.ui.DateTimePickerSpecification.java
/**
* Specification of capabilities of {@link DateTimePicker}.
*
* @author Rinat Enikeev (rinat.enikeev[at]gmail[dot]com)
* @version %I%, %G%
* @since 1.0
From source file com.github.gwtbootstrap.client.ui.event.HasCloseHandlers.java
/**
* Interface for widgets that handle {@link com.google.gwt.event.logical.shared.CloseEvent}s and {@link ClosedEvent}s.
*
* @author Dominik Mayer
* @author Danilo Reinert
*