summaryrefslogtreecommitdiff
path: root/propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java')
-rw-r--r--propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java b/propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java
index b05035d..273cd46 100644
--- a/propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java
+++ b/propertysheet/src/org/eclipse/wb/draw2d/ICursorConstants.java
@@ -24,4 +24,18 @@ public interface ICursorConstants {
* System resize west-east cursor
*/
Cursor SIZEWE = new Cursor(null, SWT.CURSOR_SIZEWE);
+ /**
+ * System resize north-south cursor
+ */
+ Cursor SIZENS = new Cursor(null, SWT.CURSOR_SIZENS);
+ /**
+ * System resize all directions cursor.
+ */
+ // BEGIN ADT MODIFICATIONS
+ // The SWT CURSOR_SIZEALL cursor looks wrong; it's cross hairs. Use a hand for resizing
+ // instead. See the icons shown in
+ // http://www.eclipse.org/articles/Article-SWT-images/graphics-resources.html
+ //Cursor SIZEALL = new Cursor(null, SWT.CURSOR_SIZEALL);
+ Cursor SIZEALL = new Cursor(null, SWT.CURSOR_HAND);
+ // END ADT MODIFICATIONS
} \ No newline at end of file