use of com.haulmont.cuba.gui.components.Window.BeforeCloseWithShortcutEvent in project cuba by cuba-platform.
the class WebWindowManager method isCloseWithShortcutPrevented.
protected boolean isCloseWithShortcutPrevented(Window currentWindow) {
WebWindow webWindow = (WebWindow) ComponentsHelper.getWindowImplementation(currentWindow);
if (webWindow != null) {
BeforeCloseWithShortcutEvent event = new BeforeCloseWithShortcutEvent(webWindow);
webWindow.fireBeforeCloseWithShortcut(event);
return event.isClosePrevented();
}
return false;
}
Aggregations