Ejemplo n.º 1
0
  public VWindow() {
    super(false, false, true); // no autohide, not modal, shadow
    // Different style of shadow for windows
    setShadowStyle("window");

    Roles.getDialogRole().set(getElement());
    Roles.getDialogRole().setAriaRelevantProperty(getElement(), RelevantValue.ADDITIONS);

    constructDOM();
    contentPanel.addScrollHandler(this);
    contentPanel.addKeyDownHandler(this);
    contentPanel.addKeyUpHandler(this);
    contentPanel.addFocusHandler(this);
    contentPanel.addBlurHandler(this);
  }