Example usage for com.google.gwt.event.logical.shared CloseHandler interface-usage

List of usage examples for com.google.gwt.event.logical.shared CloseHandler interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared CloseHandler interface-usage.

Usage

From source file org.openelis.gwt.widget.tree.TreeHeaderBar.java

public class TreeHeaderBar extends Composite implements MouseMoveHandler, MouseDownHandler, MouseUpHandler,
        CloseHandler<PopupPanel>, ActionHandler<MenuItem.Action>, ClickHandler, HasMouseOutHandlers {

    public static String headerStyle = "Header";
    public static String headerCellStyle = "HeaderCell";
    public ArrayList<Label> hLabels = new ArrayList<Label>();

From source file org.openxdata.designer.client.widget.skiprule.ValueWidget.java

/**
 * 
 *  www.openxdata.org - Licensed as written in license.txt and original sources of this file and its authors are found in sources.txt.
 *
 */
public class ValueWidget extends Composite implements ItemSelectionListener, CloseHandler<PopupPanel> {

From source file org.openxdata.querybuilder.client.widget.ValueWidget.java

/**
 * 
 *  www.openxdata.org - Licensed as written in license.txt and original sources of this file and its authors are found in sources.txt.
 *
 */
public class ValueWidget extends Composite implements ItemSelectionListener, CloseHandler<PopupPanel> {

From source file org.rest.client.ui.desktop.AddEncodingViewImpl.java

public class AddEncodingViewImpl implements HasText, AddEncodingView, CloseHandler<PopupPanel>, KeyDownHandler {

    interface Binder extends UiBinder<DialogBox, AddEncodingViewImpl> {
        Binder BINDER = GWT.create(Binder.class);
    }

From source file org.rest.client.ui.desktop.EditProjectViewImpl.java

public class EditProjectViewImpl implements HasText, EditProjectView, CloseHandler<PopupPanel>, KeyDownHandler {

    interface Binder extends UiBinder<DialogBox, EditProjectViewImpl> {
        Binder BINDER = GWT.create(Binder.class);
    }

From source file org.rstudio.studio.client.common.satellite.SatelliteManager.java

@Singleton
public class SatelliteManager implements CloseHandler<Window> {
    @Inject
    public SatelliteManager(Session session, EventBus events,
            Provider<ApplicationUncaughtExceptionHandler> pUncaughtExceptionHandler) {
        session_ = session;

From source file org.spiffyui.spsample.client.WidgetsPanel.java

/**
 * This is the widgets sample panel
 *
 */
public class WidgetsPanel extends HTMLPanel implements CloseHandler<PopupPanel> {
    private static final SPSampleStrings STRINGS = (SPSampleStrings) GWT.create(SPSampleStrings.class);

From source file org.vaadin.addons.tuningdatefield.widgetset.client.ui.TuningDateFieldWidget.java

/**
 * A text box with a toggle button that displays a {@link TuningDateFieldCalendarWidget}.
 * 
 * @author Frederic.Dreyfus
 * 
 */

From source file org.xwiki.gwt.user.client.ui.CompositeDialogBox.java

/**
 * The base class for any custom dialog box. It prevents unwanted modifications of the content from outside. It wraps
 * {@link DialogBox} object that you can customize and which is not accessible outside.
 * 
 * @version $Id: 98f140029a78efc19131a1182233e1a606d5f820 $
 */

From source file org.xwiki.gwt.user.client.ui.wizard.Wizard.java

/**
 * Wizard to handle the loading and navigation in a list of chained dialogs.
 * 
 * @version $Id: 8e906ea14620ef90aa979a241898ed0210a7ffff $
 */
public class Wizard implements NavigationListener, CloseHandler<CompositeDialogBox> {