Class Window
-
- All Implemented Interfaces:
Action.Container
,Action.Notifier
,ConnectorEventListener
,ContextClickEvent.ContextClickNotifier
,FieldEvents.BlurNotifier
,FieldEvents.FocusNotifier
,MethodEventSource
,ClientConnector
,Scrollable
,Sizeable
,VariableOwner
,Connector
,Component
,Component.Focusable
,HasComponents
,HasComponents.ComponentAttachDetachNotifier
,LegacyComponent
,SingleComponentContainer
,Serializable
,Iterable<Component>
,EventListener
- Direct Known Subclasses:
ColorPickerPopup
public class Window extends Panel implements FieldEvents.FocusNotifier, FieldEvents.BlurNotifier, LegacyComponent
A component that represents a floating popup window that can be added to aUI
. A window is added to aUI
usingUI.addWindow(Window)
.The contents of a window is set using
AbstractSingleComponentContainer.setContent(Component)
or by using theWindow(String, Component)
constructor.A window can be positioned on the screen using absolute coordinates (pixels) or set to be centered using
center()
The caption is displayed in the window header.
In Vaadin versions prior to 7.0.0, Window was also used as application level windows. This function is now covered by the
UI
class.- Since:
- 3.0
- Author:
- Vaadin Ltd.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Window.CloseEvent
static interface
Window.CloseListener
An interface used for listening to Window close events.static class
Window.CloseShortcut
AShortcutListener
specifically made to define a keyboard shortcut that closes the window.static class
Window.ResizeEvent
Resize events are fired whenever the client-side fires a resize-event (e.g.static interface
Window.ResizeListener
Listener for window resize events.static class
Window.WindowModeChangeEvent
Event which is fired when the mode of the Window changes.static interface
Window.WindowModeChangeListener
An interface used for listening to Window maximize / restore events.-
Nested classes/interfaces inherited from interface com.vaadin.server.ClientConnector
ClientConnector.AttachEvent, ClientConnector.AttachListener, ClientConnector.ConnectorErrorEvent, ClientConnector.DetachEvent, ClientConnector.DetachListener
-
Nested classes/interfaces inherited from interface com.vaadin.ui.Component
Component.ErrorEvent, Component.Event, Component.Focusable, Component.Listener
-
Nested classes/interfaces inherited from interface com.vaadin.ui.HasComponents
HasComponents.ComponentAttachDetachNotifier, HasComponents.ComponentAttachEvent, HasComponents.ComponentAttachListener, HasComponents.ComponentDetachEvent, HasComponents.ComponentDetachListener
-
Nested classes/interfaces inherited from interface com.vaadin.server.Sizeable
Sizeable.Unit
-
-
Field Summary
-
Fields inherited from class com.vaadin.ui.Panel
actionManager
-
Fields inherited from class com.vaadin.ui.AbstractComponent
DESIGN_ATTR_PLAIN_TEXT
-
Fields inherited from interface com.vaadin.server.Sizeable
SIZE_UNDEFINED, UNITS_CM, UNITS_EM, UNITS_EX, UNITS_INCH, UNITS_MM, UNITS_PERCENTAGE, UNITS_PICAS, UNITS_PIXELS, UNITS_POINTS
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addBlurListener(FieldEvents.BlurListener listener)
Adds aBlurListener
to the Component which gets fired when aField
loses keyboard focus.void
addCloseListener(Window.CloseListener listener)
Adds a CloseListener to the window.void
addCloseShortcut(int keyCode, int... modifiers)
Adds a close shortcut - pressing this key while holding down all (if any) modifiers specified while this Window is in focus will close the Window.void
addFocusListener(FieldEvents.FocusListener listener)
Adds aFocusListener
to the Component which gets fired when aField
receives keyboard focus.void
addListener(FieldEvents.BlurListener listener)
Deprecated.As of 7.0, replaced byaddBlurListener(BlurListener)
void
addListener(FieldEvents.FocusListener listener)
Deprecated.As of 7.0, replaced byaddFocusListener(FocusListener)
void
addListener(Window.CloseListener listener)
Deprecated.As of 7.0, replaced byaddCloseListener(CloseListener)
void
addListener(Window.ResizeListener listener)
Deprecated.As of 7.0, replaced byaddResizeListener(ResizeListener)
void
addResizeListener(Window.ResizeListener listener)
Add a resize listener.void
addWindowModeChangeListener(Window.WindowModeChangeListener listener)
Adds a WindowModeChangeListener to the window.void
bringToFront()
If there are currently several windows visible, calling this method makes this window topmost.void
center()
Sets this window to be centered relative to its parent window.void
changeVariables(Object source, Map<String,Object> variables)
Called when one or more variables handled by the implementing class are changed.void
close()
Method that handles window closing (from UI).protected void
fireClose()
protected void
fireResize()
Fire the resize event.protected void
fireWindowWindowModeChange()
void
focus()
Moves keyboard focus to the component.Component[]
getAssistiveDescription()
Gets the components that are used as assistive description.String
getAssistivePostfix()
Gets the accessibility postfix for the window caption.String
getAssistivePrefix()
Gets the accessibility prefix for the window caption.WindowRole
getAssistiveRole()
Gets the WAI-ARIA role the window.Collection<Window.CloseShortcut>
getCloseShortcuts()
Returns an unmodifiable collection ofWindow.CloseShortcut
objects currently registered with thisWindow
.protected Collection<String>
getCustomAttributes()
Returns a collection of attributes that should not be handled by the basic implementation of theAbstractComponent.readDesign(org.jsoup.nodes.Element,com.vaadin.ui.declarative.DesignContext)
andAbstractComponent.writeDesign(org.jsoup.nodes.Element,com.vaadin.ui.declarative.DesignContext)
methods.int
getPositionX()
Gets the distance of Window left border in pixels from left border of the containing (main window) when the window is inWindowMode.NORMAL
.int
getPositionY()
Gets the distance of Window top border in pixels from top border of the containing (main window) when the window is inWindowMode.NORMAL
state, or when next set to that state.protected WindowState
getState()
Returns the shared state bean with information to be sent from the server to the client.protected WindowState
getState(boolean markAsDirty)
Returns the shared state for this connector.String
getTabStopBottomAssistiveText()
Gets the message that is provided to users of assistive devices when the user reaches the bottom of the window when leaving a window with the tab key is prevented.String
getTabStopTopAssistiveText()
Gets the message that is provided to users of assistive devices when the user reaches the top of the window when leaving a window with the tab key is prevented.WindowMode
getWindowMode()
Gets the current mode of the window.boolean
hasCloseShortcut(int keyCode, int... modifiers)
Checks if a close window shortcut key has already been registered.boolean
isClosable()
Returns the closable status of the window.boolean
isDraggable()
Indicates whether a window can be dragged or not.boolean
isModal()
boolean
isResizable()
boolean
isResizeLazy()
boolean
isTabStopEnabled()
Get if it is prevented to leave a window with the tab key.void
paintContent(PaintTarget target)
Paints the Paintable into a UIDL stream.void
readDesign(org.jsoup.nodes.Element design, DesignContext context)
Reads the component state from the given design.protected void
readDesignChildren(org.jsoup.select.Elements children, DesignContext context)
Reads the content and possible assistive descriptions from the list of child elements of a design.void
removeAllCloseShortcuts()
Removes all close shortcuts.void
removeBlurListener(FieldEvents.BlurListener listener)
Removes aBlurListener
from the Component.void
removeCloseListener(Window.CloseListener listener)
Removes the CloseListener from the window.void
removeCloseShortcut()
Deprecated.UseremoveCloseShortcut(int, int...)
instead.void
removeCloseShortcut(int keyCode, int... modifiers)
Removes a close shortcut previously added withaddCloseShortcut(int, int...)
.void
removeFocusListener(FieldEvents.FocusListener listener)
Removes aFocusListener
from the Component.void
removeListener(FieldEvents.BlurListener listener)
Deprecated.As of 7.0, replaced byremoveBlurListener(BlurListener)
void
removeListener(FieldEvents.FocusListener listener)
Deprecated.As of 7.0, replaced byremoveFocusListener(FocusListener)
void
removeListener(Window.CloseListener listener)
Deprecated.As of 7.0, replaced byremoveCloseListener(CloseListener)
void
removeListener(Window.ResizeListener listener)
Deprecated.As of 7.0, replaced byremoveResizeListener(ResizeListener)
void
removeResizeListener(Window.ResizeListener listener)
Remove a resize listener.void
removeWindowModeChangeListener(Window.WindowModeChangeListener listener)
Removes the WindowModeChangeListener from the window.void
setAssistiveDescription(Component... components)
Allows to specify which components contain the description for the window.void
setAssistivePostfix(String assistivePostfix)
Sets the accessibility postfix for the window caption.void
setAssistivePrefix(String prefix)
Sets the accessibility prefix for the window caption.void
setAssistiveRole(WindowRole role)
Sets the WAI-ARIA role the window.void
setClosable(boolean closable)
Sets the closable status for the window.void
setCloseShortcut(int keyCode, int... modifiers)
Deprecated.UseaddCloseShortcut(int, int...)
instead.void
setDraggable(boolean draggable)
Enables or disables that a window can be dragged (moved) by the user.void
setModal(boolean modal)
Sets window modality.void
setParent(HasComponents parent)
Sets the parent connector of the component.void
setPosition(int x, int y)
Sets the position of the window on the screen usingsetPositionX(int)
andsetPositionY(int)
void
setPositionX(int positionX)
Sets the distance of Window left border in pixels from left border of the containing (main window).void
setPositionY(int positionY)
Sets the distance of Window top border in pixels from top border of the containing (main window).void
setResizable(boolean resizable)
Sets window resizable.void
setResizeLazy(boolean resizeLazy)
Should resize operations be lazy, i.e.void
setTabStopBottomAssistiveText(String bottomMessage)
Sets the message that is provided to users of assistive devices when the user reaches the bottom of the window when leaving a window with the tab key is prevented.void
setTabStopEnabled(boolean tabStop)
Set if it should be prevented to set the focus to a component outside a non-modal window with the tab key.void
setTabStopTopAssistiveText(String topMessage)
Sets the message that is provided to users of assistive devices when the user reaches the top of the window when leaving a window with the tab key is prevented.void
setWindowMode(WindowMode windowMode)
Sets the mode for the windowvoid
writeDesign(org.jsoup.nodes.Element design, DesignContext context)
Writes the component state to the given design.-
Methods inherited from class com.vaadin.ui.Panel
addAction, addActionHandler, addClickListener, addListener, getActionManager, getScrollLeft, getScrollTop, getTabIndex, removeAction, removeActionHandler, removeAllActionHandlers, removeClickListener, removeListener, setCaption, setScrollLeft, setScrollTop, setTabIndex
-
Methods inherited from class com.vaadin.ui.AbstractSingleComponentContainer
addComponentAttachListener, addComponentDetachListener, fireComponentAttachEvent, fireComponentDetachEvent, getComponentCount, getContent, iterator, removeComponentAttachListener, removeComponentDetachListener, removeFromParent, setContent, setHeight, setWidth
-
Methods inherited from class com.vaadin.ui.AbstractComponent
addContextClickListener, addListener, addShortcutListener, addStyleName, attach, beforeClientResponse, detach, findAncestor, fireComponentErrorEvent, fireComponentEvent, getCaption, getComponentError, getData, getDebugId, getDescription, getErrorMessage, getExplicitImmediateValue, getHeight, getHeightUnits, getIcon, getId, getLocale, getParent, getPrimaryStyleName, getStyleName, getWidth, getWidthUnits, isCaptionAsHtml, isConnectorEnabled, isEnabled, isImmediate, isOrHasAncestor, isReadOnly, isResponsive, isVisible, removeContextClickListener, removeListener, removeShortcutListener, removeStyleName, setCaptionAsHtml, setComponentError, setData, setDebugId, setDescription, setEnabled, setHeight, setHeightUndefined, setIcon, setId, setImmediate, setLocale, setPrimaryStyleName, setReadOnly, setResponsive, setSizeFull, setSizeUndefined, setStyleName, setStyleName, setVisible, setWidth, setWidthUndefined
-
Methods inherited from class com.vaadin.server.AbstractClientConnector
addAttachListener, addDetachListener, addExtension, addListener, addListener, addListener, addMethodInvocationToQueue, createState, encodeState, equals, fireEvent, getAllChildrenIterable, getConnectorId, getErrorHandler, getExtensions, getListeners, getResource, getRpcManager, getRpcProxy, getSession, getStateType, getUI, handleConnectorRequest, hashCode, hasListeners, isAttached, isThis, markAsDirty, markAsDirtyRecursive, registerRpc, registerRpc, removeAttachListener, removeDetachListener, removeExtension, removeListener, removeListener, removeListener, removeListener, requestRepaint, requestRepaintAll, retrievePendingRpcCalls, setErrorHandler, setResource
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.server.ClientConnector
addAttachListener, addDetachListener, beforeClientResponse, detach, encodeState, getErrorHandler, getExtensions, getRpcManager, getStateType, handleConnectorRequest, isAttached, isConnectorEnabled, markAsDirtyRecursive, removeAttachListener, removeDetachListener, removeExtension, requestRepaint, requestRepaintAll, retrievePendingRpcCalls, setErrorHandler
-
Methods inherited from interface com.vaadin.ui.Component
addListener, addStyleName, attach, getCaption, getDescription, getIcon, getId, getLocale, getParent, getPrimaryStyleName, getStyleName, getUI, isEnabled, isReadOnly, isVisible, removeListener, removeStyleName, setCaption, setEnabled, setIcon, setId, setPrimaryStyleName, setReadOnly, setStyleName, setVisible
-
Methods inherited from interface com.vaadin.shared.Connector
getConnectorId
-
Methods inherited from interface com.vaadin.ui.LegacyComponent
markAsDirty
-
Methods inherited from interface com.vaadin.server.Sizeable
getHeight, getHeightUnits, getWidth, getWidthUnits, setHeight, setHeight, setHeightUndefined, setSizeFull, setSizeUndefined, setWidth, setWidth, setWidthUndefined
-
Methods inherited from interface com.vaadin.server.VariableOwner
isEnabled, isImmediate
-
-
-
-
Constructor Detail
-
Window
public Window()
Creates a new, empty window
-
Window
public Window(String caption)
Creates a new, empty window with a given title.- Parameters:
caption
- the title of the window.
-
-
Method Detail
-
paintContent
public void paintContent(PaintTarget target) throws PaintException
Description copied from interface:LegacyComponent
Paints the Paintable into a UIDL stream. This method creates the UIDL sequence describing it and outputs it to the given UIDL stream.
It is called when the contents of the component should be painted in response to the component first being shown or having been altered so that its visual representation is changed.
- Specified by:
paintContent
in interfaceLegacyComponent
- Overrides:
paintContent
in classPanel
- Parameters:
target
- the target UIDL stream where the component should paint itself to.- Throws:
PaintException
- if the paint operation failed.
-
setParent
public void setParent(HasComponents parent)
Description copied from interface:Component
Sets the parent connector of the component.This method automatically calls
Component.attach()
if the component becomes attached to the session, regardless of whether it was attached previously. Conversely, if the component currently is attached to the session,ClientConnector.detach()
is called for the connector before attaching it to a new parent.This method is rarely called directly.
ComponentContainer.addComponent(Component)
or aHasComponents
specific method is normally used for adding components to a parent and the used method will call this method implicitly.- Specified by:
setParent
in interfaceComponent
- Overrides:
setParent
in classAbstractComponent
- Parameters:
parent
- the parent connector
-
changeVariables
public void changeVariables(Object source, Map<String,Object> variables)
Description copied from class:Panel
Called when one or more variables handled by the implementing class are changed.- Specified by:
changeVariables
in interfaceVariableOwner
- Overrides:
changeVariables
in classPanel
- Parameters:
source
- the Source of the variable change. This is the origin of the event. For example in Web Adapter this is the request.variables
- the Mapping from variable names to new variable values.- See Also:
VariableOwner.changeVariables(Object, Map)
-
close
public void close()
Method that handles window closing (from UI).By default, windows are removed from their respective UIs and thus visually closed on browser-side.
To react to a window being closed (after it is closed), register a
Window.CloseListener
.
-
getPositionX
public int getPositionX()
Gets the distance of Window left border in pixels from left border of the containing (main window) when the window is inWindowMode.NORMAL
.- Returns:
- the Distance of Window left border in pixels from left border of the containing (main window).or -1 if unspecified
- Since:
- 4.0.0
-
setPosition
public void setPosition(int x, int y)
Sets the position of the window on the screen usingsetPositionX(int)
andsetPositionY(int)
- Parameters:
x
- The new x coordinate for the windowy
- The new y coordinate for the window- Since:
- 7.5
-
setPositionX
public void setPositionX(int positionX)
Sets the distance of Window left border in pixels from left border of the containing (main window). Has effect only if inWindowMode.NORMAL
mode.- Parameters:
positionX
- the Distance of Window left border in pixels from left border of the containing (main window). or -1 if unspecified.- Since:
- 4.0.0
-
getPositionY
public int getPositionY()
Gets the distance of Window top border in pixels from top border of the containing (main window) when the window is inWindowMode.NORMAL
state, or when next set to that state.- Returns:
- Distance of Window top border in pixels from top border of the containing (main window). or -1 if unspecified
- Since:
- 4.0.0
-
setPositionY
public void setPositionY(int positionY)
Sets the distance of Window top border in pixels from top border of the containing (main window). Has effect only if inWindowMode.NORMAL
mode.- Parameters:
positionY
- the Distance of Window top border in pixels from top border of the containing (main window). or -1 if unspecified- Since:
- 4.0.0
-
addCloseListener
public void addCloseListener(Window.CloseListener listener)
Adds a CloseListener to the window. For a window the CloseListener is fired when the user closes it (clicks on the close button). For a browser level window the CloseListener is fired when the browser level window is closed. Note that closing a browser level window does not mean it will be destroyed. Also note that Opera does not send events like all other browsers and therefore the close listener might not be called if Opera is used.Since Vaadin 6.5, removing windows using
#removeWindow(Window)
does fire the CloseListener.- Parameters:
listener
- the CloseListener to add.
-
addListener
@Deprecated public void addListener(Window.CloseListener listener)
Deprecated.As of 7.0, replaced byaddCloseListener(CloseListener)
-
removeCloseListener
public void removeCloseListener(Window.CloseListener listener)
Removes the CloseListener from the window.For more information on CloseListeners see
Window.CloseListener
.- Parameters:
listener
- the CloseListener to remove.
-
removeListener
@Deprecated public void removeListener(Window.CloseListener listener)
Deprecated.As of 7.0, replaced byremoveCloseListener(CloseListener)
-
fireClose
protected void fireClose()
-
addWindowModeChangeListener
public void addWindowModeChangeListener(Window.WindowModeChangeListener listener)
Adds a WindowModeChangeListener to the window. The WindowModeChangeEvent is fired when the user changed the display state by clicking the maximize/restore button or by double clicking on the window header. The event is also fired if the state is changed usingsetWindowMode(WindowMode)
.- Parameters:
listener
- the WindowModeChangeListener to add.
-
removeWindowModeChangeListener
public void removeWindowModeChangeListener(Window.WindowModeChangeListener listener)
Removes the WindowModeChangeListener from the window.- Parameters:
listener
- the WindowModeChangeListener to remove.
-
fireWindowWindowModeChange
protected void fireWindowWindowModeChange()
-
addResizeListener
public void addResizeListener(Window.ResizeListener listener)
Add a resize listener.- Parameters:
listener
-
-
addListener
@Deprecated public void addListener(Window.ResizeListener listener)
Deprecated.As of 7.0, replaced byaddResizeListener(ResizeListener)
-
removeResizeListener
public void removeResizeListener(Window.ResizeListener listener)
Remove a resize listener.- Parameters:
listener
-
-
removeListener
@Deprecated public void removeListener(Window.ResizeListener listener)
Deprecated.As of 7.0, replaced byremoveResizeListener(ResizeListener)
-
fireResize
protected void fireResize()
Fire the resize event.
-
bringToFront
public void bringToFront()
If there are currently several windows visible, calling this method makes this window topmost.This method can only be called if this window connected a UI. Else an illegal state exception is thrown. Also if there are modal windows and this window is not modal, and illegal state exception is thrown.
-
setModal
public void setModal(boolean modal)
Sets window modality. When a modal window is open, components outside that window cannot be accessed.Keyboard navigation is restricted by blocking the tab key at the top and bottom of the window by activating the tab stop function internally.
- Parameters:
modal
- true if modality is to be turned on
-
isModal
public boolean isModal()
- Returns:
- true if this window is modal.
-
setResizable
public void setResizable(boolean resizable)
Sets window resizable.- Parameters:
resizable
- true if resizability is to be turned on
-
isResizable
public boolean isResizable()
- Returns:
- true if window is resizable by the end-user, otherwise false.
-
isResizeLazy
public boolean isResizeLazy()
- Returns:
- true if a delay is used before recalculating sizes, false if sizes are recalculated immediately.
-
setResizeLazy
public void setResizeLazy(boolean resizeLazy)
Should resize operations be lazy, i.e. should there be a delay before layout sizes are recalculated. Speeds up resize operations in slow UIs with the penalty of slightly decreased usability. Note, some browser send false resize events for the browser window and are therefore always lazy.- Parameters:
resizeLazy
- true to use a delay before recalculating sizes, false to calculate immediately.
-
center
public void center()
Sets this window to be centered relative to its parent window. Affects windows only. If the window is resized as a result of the size of its content changing, it will keep itself centered as long as its position is not explicitly changed programmatically or by the user.NOTE: This method has several issues as currently implemented. Please refer to http://dev.vaadin.com/ticket/8971 for details.
-
isClosable
public boolean isClosable()
Returns the closable status of the window. If a window is closable, it typically shows an X in the upper right corner. Clicking on the X sends a close event to the server. Setting closable to false will remove the X from the window and prevent the user from closing the window. Note! For historical reasons readonly controls the closability of the window and therefore readonly and closable affect each other. Setting readonly to true will set closable to false and vice versa.- Returns:
- true if the window can be closed by the user.
-
setClosable
public void setClosable(boolean closable)
Sets the closable status for the window. If a window is closable it typically shows an X in the upper right corner. Clicking on the X sends a close event to the server. Setting closable to false will remove the X from the window and prevent the user from closing the window. Note! For historical reasons readonly controls the closability of the window and therefore readonly and closable affect each other. Setting readonly to true will set closable to false and vice versa.- Parameters:
closable
- determines if the window can be closed by the user.
-
isDraggable
public boolean isDraggable()
Indicates whether a window can be dragged or not. By default a window is draggable.- Parameters:
draggable
- true if the window can be dragged by the user
-
setDraggable
public void setDraggable(boolean draggable)
Enables or disables that a window can be dragged (moved) by the user. By default a window is draggable.- Parameters:
draggable
- true if the window can be dragged by the user
-
getWindowMode
public WindowMode getWindowMode()
Gets the current mode of the window.- Returns:
- the mode of the window.
- See Also:
WindowMode
-
setWindowMode
public void setWindowMode(WindowMode windowMode)
Sets the mode for the window- Parameters:
windowMode
- The new mode- See Also:
WindowMode
-
setCloseShortcut
@Deprecated public void setCloseShortcut(int keyCode, int... modifiers)
Deprecated.UseaddCloseShortcut(int, int...)
instead.This is the old way of adding a keyboard shortcut to close aWindow
- to preserve compatibility with existing code under the new functionality, this method now first removes all registered close shortcuts, then adds the default ESCAPE shortcut key, and then attempts to add the shortcut provided as parameters to this method. This method, and its companionremoveCloseShortcut()
, are now considered deprecated, as their main function is to preserve exact backwards compatibility with old code. For all new code, use the new keyboard shortcuts API:addCloseShortcut(int,int...)
,removeCloseShortcut(int,int...)
,removeAllCloseShortcuts()
,hasCloseShortcut(int,int...)
andgetCloseShortcuts()
.Original description: Makes it possible to close the window by pressing the given
ShortcutAction.KeyCode
and (optional)ShortcutAction.ModifierKey
s.
Note that this shortcut only reacts while the window has focus, closing itself - if you want to close a window from a UI, useUI.addAction(com.vaadin.event.Action)
of the UI instead.- Parameters:
keyCode
- the keycode for invoking the shortcutmodifiers
- the (optional) modifiers for invoking the shortcut. Can be set to null to be explicit about not having modifiers.
-
removeCloseShortcut
@Deprecated public void removeCloseShortcut()
Deprecated.UseremoveCloseShortcut(int, int...)
instead.Removes all keyboard shortcuts previously set withsetCloseShortcut(int, int...)
andaddCloseShortcut(int, int...)
, then adds the defaultShortcutAction.KeyCode.ESCAPE
shortcut.This is the old way of removing the (single) keyboard close shortcut, and is retained only for exact backwards compatibility. For all new code, use the new keyboard shortcuts API:
addCloseShortcut(int,int...)
,removeCloseShortcut(int,int...)
,removeAllCloseShortcuts()
,hasCloseShortcut(int,int...)
andgetCloseShortcuts()
.
-
addCloseShortcut
public void addCloseShortcut(int keyCode, int... modifiers)
Adds a close shortcut - pressing this key while holding down all (if any) modifiers specified while this Window is in focus will close the Window.- Parameters:
keyCode
- the keycode for invoking the shortcutmodifiers
- the (optional) modifiers for invoking the shortcut. Can be set to null to be explicit about not having modifiers.- Since:
- 7.6
-
removeCloseShortcut
public void removeCloseShortcut(int keyCode, int... modifiers)
Removes a close shortcut previously added withaddCloseShortcut(int, int...)
.- Parameters:
keyCode
- the keycode for invoking the shortcutmodifiers
- the (optional) modifiers for invoking the shortcut. Can be set to null to be explicit about not having modifiers.- Since:
- 7.6
-
removeAllCloseShortcuts
public void removeAllCloseShortcuts()
Removes all close shortcuts. This includes the default ESCAPE shortcut. It is up to the user to add back any and all keyboard close shortcuts they may require. For more fine-grained control over shortcuts, useremoveCloseShortcut(int, int...)
.- Since:
- 7.6
-
hasCloseShortcut
public boolean hasCloseShortcut(int keyCode, int... modifiers)
Checks if a close window shortcut key has already been registered.- Parameters:
keyCode
- the keycode for invoking the shortcutmodifiers
- the (optional) modifiers for invoking the shortcut. Can be set to null to be explicit about not having modifiers.- Returns:
- true, if an exactly matching shortcut has been registered.
- Since:
- 7.6
-
getCloseShortcuts
public Collection<Window.CloseShortcut> getCloseShortcuts()
Returns an unmodifiable collection ofWindow.CloseShortcut
objects currently registered with thisWindow
. This method is provided mainly so that users can implement their own serialization routines. To check if a certain combination of keys has been registered as a close shortcut, use thehasCloseShortcut(int, int...)
method instead.- Returns:
- an unmodifiable Collection of CloseShortcut objects.
- Since:
- 7.6
-
addFocusListener
public void addFocusListener(FieldEvents.FocusListener listener)
Description copied from interface:FieldEvents.FocusNotifier
Adds aFocusListener
to the Component which gets fired when aField
receives keyboard focus.- Specified by:
addFocusListener
in interfaceFieldEvents.FocusNotifier
- See Also:
FieldEvents.FocusListener
-
addListener
@Deprecated public void addListener(FieldEvents.FocusListener listener)
Deprecated.As of 7.0, replaced byaddFocusListener(FocusListener)
- Specified by:
addListener
in interfaceFieldEvents.FocusNotifier
-
removeFocusListener
public void removeFocusListener(FieldEvents.FocusListener listener)
Description copied from interface:FieldEvents.FocusNotifier
Removes aFocusListener
from the Component.- Specified by:
removeFocusListener
in interfaceFieldEvents.FocusNotifier
- See Also:
FieldEvents.FocusListener
-
removeListener
@Deprecated public void removeListener(FieldEvents.FocusListener listener)
Deprecated.As of 7.0, replaced byremoveFocusListener(FocusListener)
- Specified by:
removeListener
in interfaceFieldEvents.FocusNotifier
-
addBlurListener
public void addBlurListener(FieldEvents.BlurListener listener)
Description copied from interface:FieldEvents.BlurNotifier
Adds aBlurListener
to the Component which gets fired when aField
loses keyboard focus.- Specified by:
addBlurListener
in interfaceFieldEvents.BlurNotifier
- See Also:
FieldEvents.BlurListener
-
addListener
@Deprecated public void addListener(FieldEvents.BlurListener listener)
Deprecated.As of 7.0, replaced byaddBlurListener(BlurListener)
- Specified by:
addListener
in interfaceFieldEvents.BlurNotifier
-
removeBlurListener
public void removeBlurListener(FieldEvents.BlurListener listener)
Description copied from interface:FieldEvents.BlurNotifier
Removes aBlurListener
from the Component.- Specified by:
removeBlurListener
in interfaceFieldEvents.BlurNotifier
- See Also:
FieldEvents.BlurListener
-
removeListener
@Deprecated public void removeListener(FieldEvents.BlurListener listener)
Deprecated.As of 7.0, replaced byremoveBlurListener(BlurListener)
- Specified by:
removeListener
in interfaceFieldEvents.BlurNotifier
-
focus
public void focus()
Moves keyboard focus to the component. {@see Focusable#focus()} Cause the window to be brought on top of other windows and gain keyboard focus.- Specified by:
focus
in interfaceComponent.Focusable
- Overrides:
focus
in classPanel
- See Also:
FieldEvents
,FieldEvents.FocusEvent
,FieldEvents.FocusListener
,FieldEvents.BlurEvent
,FieldEvents.BlurListener
-
getState
protected WindowState getState()
Description copied from class:AbstractComponent
Returns the shared state bean with information to be sent from the server to the client. Subclasses should override this method and set any relevant fields of the state returned by super.getState().
-
getState
protected WindowState getState(boolean markAsDirty)
Description copied from class:AbstractClientConnector
Returns the shared state for this connector.- Overrides:
getState
in classPanel
- Parameters:
markAsDirty
- true if the connector should automatically be marked dirty, false otherwise- Returns:
- The shared state for this connector. Never null.
- See Also:
AbstractClientConnector.getState()
-
setAssistiveDescription
public void setAssistiveDescription(Component... components)
Allows to specify which components contain the description for the window. Text contained in these components will be read by assistive devices when it is opened.- Parameters:
components
- the components to use as description
-
getAssistiveDescription
public Component[] getAssistiveDescription()
Gets the components that are used as assistive description. Text contained in these components will be read by assistive devices when the window is opened.- Returns:
- array of previously set components
-
setAssistivePrefix
public void setAssistivePrefix(String prefix)
Sets the accessibility prefix for the window caption. This prefix is read to assistive device users before the window caption, but not visible on the page.- Parameters:
prefix
- String that is placed before the window caption
-
getAssistivePrefix
public String getAssistivePrefix()
Gets the accessibility prefix for the window caption. This prefix is read to assistive device users before the window caption, but not visible on the page.- Returns:
- The accessibility prefix
-
setAssistivePostfix
public void setAssistivePostfix(String assistivePostfix)
Sets the accessibility postfix for the window caption. This postfix is read to assistive device users after the window caption, but not visible on the page.- Parameters:
prefix
- String that is placed after the window caption
-
getAssistivePostfix
public String getAssistivePostfix()
Gets the accessibility postfix for the window caption. This postfix is read to assistive device users after the window caption, but not visible on the page.- Returns:
- The accessibility postfix
-
setAssistiveRole
public void setAssistiveRole(WindowRole role)
Sets the WAI-ARIA role the window. This role defines how an assistive device handles a window. Available roles are alertdialog and dialog (@see Roles Model). The default role is dialog.- Parameters:
role
- WAI-ARIA role to set for the window
-
getAssistiveRole
public WindowRole getAssistiveRole()
Gets the WAI-ARIA role the window. This role defines how an assistive device handles a window. Available roles are alertdialog and dialog (@see Roles Model).- Returns:
- WAI-ARIA role set for the window
-
setTabStopEnabled
public void setTabStopEnabled(boolean tabStop)
Set if it should be prevented to set the focus to a component outside a non-modal window with the tab key.This is meant to help users of assistive devices to not leaving the window unintentionally.
For modal windows, this function is activated automatically, while preserving the stored value of tabStop.
- Parameters:
tabStop
- true to keep the focus inside the window when reaching the top or bottom, false (default) to allow leaving the window
-
isTabStopEnabled
public boolean isTabStopEnabled()
Get if it is prevented to leave a window with the tab key.- Returns:
- true when the focus is limited to inside the window, false when focus can leave the window
-
setTabStopTopAssistiveText
public void setTabStopTopAssistiveText(String topMessage)
Sets the message that is provided to users of assistive devices when the user reaches the top of the window when leaving a window with the tab key is prevented.This message is not visible on the screen.
- Parameters:
topMessage
- String provided when the user navigates with Shift-Tab keys to the top of the window
-
setTabStopBottomAssistiveText
public void setTabStopBottomAssistiveText(String bottomMessage)
Sets the message that is provided to users of assistive devices when the user reaches the bottom of the window when leaving a window with the tab key is prevented.This message is not visible on the screen.
- Parameters:
bottomMessage
- String provided when the user navigates with the Tab key to the bottom of the window
-
getTabStopTopAssistiveText
public String getTabStopTopAssistiveText()
Gets the message that is provided to users of assistive devices when the user reaches the top of the window when leaving a window with the tab key is prevented.- Returns:
- the top message
-
getTabStopBottomAssistiveText
public String getTabStopBottomAssistiveText()
Gets the message that is provided to users of assistive devices when the user reaches the bottom of the window when leaving a window with the tab key is prevented.- Returns:
- the bottom message
-
readDesign
public void readDesign(org.jsoup.nodes.Element design, DesignContext context)
Description copied from interface:Component
Reads the component state from the given design.The component is responsible not only for updating its own state but also for ensuring that its children update their state based on the design.
It is assumed that the component is in its default state when this method is called. Reading should only take into consideration attributes specified in the design and not reset any unspecified attributes to their defaults.
This method must not modify the design.
- Specified by:
readDesign
in interfaceComponent
- Overrides:
readDesign
in classPanel
- Parameters:
design
- The element to obtain the state fromcontext
- The DesignContext instance used for parsing the design
-
readDesignChildren
protected void readDesignChildren(org.jsoup.select.Elements children, DesignContext context)
Reads the content and possible assistive descriptions from the list of child elements of a design. If an element has an:assistive-description
attribute, adds the parsed component to the list of components used as the assistive description of this Window. Otherwise, sets the component as the content of this Window. If there are multiple non-description elements, throws a DesignException.- Overrides:
readDesignChildren
in classAbstractSingleComponentContainer
- Parameters:
children
- child elements in a designcontext
- the DesignContext instance used to parse the design- Throws:
DesignException
- if there are multiple non-description child elementsDesignException
- if a child element could not be parsed as a Component- See Also:
AbstractSingleComponentContainer.setContent(Component)
,setAssistiveDescription(Component...)
-
writeDesign
public void writeDesign(org.jsoup.nodes.Element design, DesignContext context)
Description copied from interface:Component
Writes the component state to the given design.The component is responsible not only for writing its own state but also for ensuring that its children write their state to the design.
This method must not modify the component state.
- Specified by:
writeDesign
in interfaceComponent
- Overrides:
writeDesign
in classPanel
- Parameters:
design
- The element to write the component state to. Any previous attributes or child nodes are not cleared.context
- The DesignContext instance used for writing the design
-
getCustomAttributes
protected Collection<String> getCustomAttributes()
Description copied from class:AbstractComponent
Returns a collection of attributes that should not be handled by the basic implementation of theAbstractComponent.readDesign(org.jsoup.nodes.Element,com.vaadin.ui.declarative.DesignContext)
andAbstractComponent.writeDesign(org.jsoup.nodes.Element,com.vaadin.ui.declarative.DesignContext)
methods. Typically these are handled in a custom way in the overridden versions of the above methods- Overrides:
getCustomAttributes
in classPanel
- Returns:
- the collection of attributes that are not handled by the basic implementation
-
-