WinWorkstation.st
changeset 3110 0058dbbb19df
parent 3109 f29d9b8a978d
child 3117 837ce31d08ff
--- a/WinWorkstation.st	Fri Dec 10 14:32:22 1999 +0100
+++ b/WinWorkstation.st	Fri Dec 10 15:17:52 1999 +0100
@@ -7308,17 +7308,20 @@
     "/ if you add something here, also add to #shapeNumberFromCursor ...
 
     ^ #(
-	#upLeftArrow            "/ IDC_ARROW
-	#upDownArrow            "/ IDC_SIZENS
-	#leftRightArrow         "/ IDC_SIZEWE
-	#text                   "/ IDC_IBEAM
-	#wait                   "/ IDC_WAIT
-	#execute                "/ IDC_APPSTARTING
-	#crossHair              "/ IDC_CROSS
-	#fourWay                "/ IDC_SIZEALL
-	#upRightHand            "/ IDC_ARROW
-	#noDrop                 "/ IDC_NO
+        #upLeftArrow            "/ IDC_ARROW
+        #upDownArrow            "/ IDC_SIZENS
+        #leftRightArrow         "/ IDC_SIZEWE
+        #text                   "/ IDC_IBEAM
+        #wait                   "/ IDC_WAIT
+        #execute                "/ IDC_APPSTARTING
+        #crossHair              "/ IDC_CROSS
+        #fourWay                "/ IDC_SIZEALL
+        #upRightHand            "/ IDC_ARROW
+        #noDrop                 "/ IDC_NO
+        #stop                   "/ IDC_NO
        )
+
+    "Modified: / 10.12.1999 / 15:16:26 / cg"
 !
 
 createCursorShape:aShape
@@ -7525,55 +7528,58 @@
 
 %{  /* NOCONTEXT */
     if (shape == @symbol(upRightHand)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_ARROW));
+        RETURN ( __MKSMALLINT( (INT)IDC_ARROW));
     }
     if (shape == @symbol(upLeftArrow)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_ARROW));
+        RETURN ( __MKSMALLINT( (INT)IDC_ARROW));
     }
     if (shape == @symbol(upDownArrow)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_SIZENS));
+        RETURN ( __MKSMALLINT( (INT)IDC_SIZENS));
     }
     if (shape == @symbol(leftRightArrow)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_SIZEWE));
+        RETURN ( __MKSMALLINT( (INT)IDC_SIZEWE));
     }
     if (shape == @symbol(text)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_IBEAM));
+        RETURN ( __MKSMALLINT( (INT)IDC_IBEAM));
     }
     if (shape == @symbol(wait)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_WAIT));
+        RETURN ( __MKSMALLINT( (INT)IDC_WAIT));
     }
     if (shape == @symbol(crossHair)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_CROSS));
+        RETURN ( __MKSMALLINT( (INT)IDC_CROSS));
     }
     if (shape == @symbol(fourWay)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_SIZEALL));
+        RETURN ( __MKSMALLINT( (INT)IDC_SIZEALL));
     }
     if (shape == @symbol(execute)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_APPSTARTING));
+        RETURN ( __MKSMALLINT( (INT)IDC_APPSTARTING));
     }
     if (shape == @symbol(noDrop)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_NO));
+        RETURN ( __MKSMALLINT( (INT)IDC_NO));
+    }
+    if (shape == @symbol(stop)) {
+        RETURN ( __MKSMALLINT( (INT)IDC_NO));
     }
 
     if (shape == @symbol(IDC_UPARROW)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_UPARROW));
+        RETURN ( __MKSMALLINT( (INT)IDC_UPARROW));
     }
 
     if (shape == @symbol(IDC_SIZE)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_SIZE));
+        RETURN ( __MKSMALLINT( (INT)IDC_SIZE));
     }
     if (shape == @symbol(IDC_SIZENWSE)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_SIZENWSE));
+        RETURN ( __MKSMALLINT( (INT)IDC_SIZENWSE));
     }
     if (shape == @symbol(IDC_SIZENESW)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_SIZENESW));
+        RETURN ( __MKSMALLINT( (INT)IDC_SIZENESW));
     }
     if (shape == @symbol(IDC_NO)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_NO));
+        RETURN ( __MKSMALLINT( (INT)IDC_NO));
     }
 #ifdef IDC_HELP
     if (shape == @symbol(IDC_HELP)) {
-	RETURN ( __MKSMALLINT( (INT)IDC_HELP));
+        RETURN ( __MKSMALLINT( (INT)IDC_HELP));
     }
 #endif
 %}.
@@ -13727,6 +13733,6 @@
 !WinWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.171 1999-12-10 13:32:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.172 1999-12-10 14:17:52 cg Exp $'
 ! !
 WinWorkstation initialize!