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 com.kk_electronic.kkportal.core.rpc.RpcDispatcher.java

/**
 * RpcDispatcher is a flexible {@link Dispatcher} for use with direct server side communication
 * using bundling.
 * 
 * It assumes that the server can handle the connection type by the class implementing {@link WebSocket}
 * and the it uses the correct {@link FrameEncoder} class to transmit the rpc calls, and that the rpc

From source file com.square.composants.graphiques.lib.client.composants.BlocSyntheseDepliant.java

/**
 * Bloc permettant d'avoir un bloc synthese dpliant.
 * @author Anthony GUILLEMETTE (anthony.guillemette@scub.net) - SCUB
 */
public class BlocSyntheseDepliant extends ExplorableComposite
        implements OpenHandler<CustomDisclosurePanel>, CloseHandler<CustomDisclosurePanel>,

From source file com.vaadin.addon.spreadsheet.client.PopupButtonConnector.java

@SuppressWarnings("serial")
@Connect(value = PopupButton.class, loadStyle = LoadStyle.DEFERRED)
public class PopupButtonConnector extends AbstractHasComponentsConnector
        implements ClickHandler, CloseHandler<PopupPanel> {

    public PopupButtonClientRpc rpc = new PopupButtonClientRpc() {

From source file com.vaadin.client.ui.VAbstractPopupCalendar.java

/**
 * Represents a date selection component with a text field and a popup date/time
 * selector.
 *
 * <b>Note:</b> To change the keyboard assignments used in the popup dialog you
 * should extend <code>com.vaadin.client.ui.VAbstractCalendarPanel</code> and

From source file com.vaadin.client.ui.VMenuBar.java

public class VMenuBar extends SimpleFocusablePanel
        implements CloseHandler<PopupPanel>, KeyPressHandler, KeyDownHandler, FocusHandler, SubPartAware {

    // The hierarchy of VMenuBar is a bit weird as VMenuBar is the Paintable,
    // used for the root menu but also used for the sub menus.

From source file com.vaadin.client.ui.VOverlay.java

/**
 * In Vaadin UI this VOverlay should always be used for all elements that
 * temporary float over other components like context menus etc. This is to deal
 * stacking order correctly with VWindow objects.
 * <p>
 * To use this correctly, use {@link GWT#create(Class)} to create the

From source file com.vaadin.client.ui.VPopupCalendar.java

/**
 * Represents a date selection component with a text field and a popup date
 * selector.
 * 
 * <b>Note:</b> To change the keyboard assignments used in the popup dialog you
 * should extend <code>com.vaadin.client.ui.VCalendarPanel</code> and then pass

From source file com.vaadin.client.widgets.Overlay.java

/**
 * Overlay widget extending the PopupPanel. Overlay is used to float elements on
 * top of other elements temporarily.
 * <p>
 * <b>Note:</b> This class should always be constructed with
 * {@link GWT#create(Class)}.

From source file com.vaadin.terminal.gwt.client.ui.VMenuBar.java

public class VMenuBar extends SimpleFocusablePanel implements Paintable, CloseHandler<PopupPanel>,
        ContainerResizedListener, KeyPressHandler, KeyDownHandler, FocusHandler, SubPartAware {

    // The hierarchy of VMenuBar is a bit weird as VMenuBar is the Paintable,
    // used for the root menu but also used for the sub menus.

From source file com.vaadin.terminal.gwt.client.ui.VOverlay.java

/**
 * In Vaadin UI this Overlay should always be used for all elements that
 * temporary float over other components like context menus etc. This is to deal
 * stacking order correctly with VWindow objects.
 */
public class VOverlay extends PopupPanel implements CloseHandler<PopupPanel> {