diff options
author | Thomas <thomas@vaadin.com> | 2013-11-05 15:21:06 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-11-06 11:12:06 +0000 |
commit | fefedeab68461ebc04fd45f91a35835fc9026a56 (patch) | |
tree | f4d3b8a2d60b7ed0f1c4e81499abba584cef3d94 /shared | |
parent | e0e00befc848c242f986ba5cd993ae8610a7fa83 (diff) | |
download | vaadin-framework-fefedeab68461ebc04fd45f91a35835fc9026a56.tar.gz vaadin-framework-fefedeab68461ebc04fd45f91a35835fc9026a56.zip |
Send window position data back to server after drag (#12885)
Change-Id: I9ca766b0e06390c7ab90f9cbd4996b83032789db
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java b/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java index b43765274e..1307b1e765 100644 --- a/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java @@ -22,4 +22,6 @@ public interface WindowServerRpc extends ClickRpc, ServerRpc { public void windowModeChanged(WindowMode newState); + public void windowMoved(int x, int y); + }
\ No newline at end of file |