summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2014-08-07 16:04:17 +0300
committerJohn Ahlroos <john@vaadin.com>2014-08-19 10:37:58 +0300
commit5dfdd40d00dc0f7a2eea19f8c77485f1afcf77ad (patch)
tree30b92381f2bce518697d2ead721d12cb97ceb6c5 /shared
parentc1a873bc9e47b98c58b298aa6935ab0853e6963f (diff)
downloadvaadin-framework-5dfdd40d00dc0f7a2eea19f8c77485f1afcf77ad.tar.gz
vaadin-framework-5dfdd40d00dc0f7a2eea19f8c77485f1afcf77ad.zip
Removed SortableColumnHeaderRenderer #13334
Change-Id: I3f15765228428049febfe3a8d5966c3631d010a9
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/grid/GridConstants.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java
index 346e85b994..1ee79a5d37 100644
--- a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java
+++ b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java
@@ -31,4 +31,14 @@ public final class GridConstants implements Serializable {
* explicitly defined padding value.
*/
public static final int DEFAULT_PADDING = 0;
+
+ /**
+ * Delay before a long tap action is triggered. Number in milliseconds.
+ */
+ public static final int LONG_TAP_DELAY = 500;
+
+ /**
+ * The threshold in pixels a finger can move while long tapping.
+ */
+ public static final int LONG_TAP_THRESHOLD = 3;
}