ImageView.st
changeset 2375 e0c7852263e4
parent 2358 68180cd61e53
child 2402 4425948481b4
--- a/ImageView.st	Thu Nov 14 09:57:50 2002 +0100
+++ b/ImageView.st	Thu Nov 14 15:56:08 2002 +0100
@@ -58,7 +58,7 @@
     adjust:     
         controls how images are displayed;
         can be one of:
-            #topLeft    - image is dislayed as usual
+            #topLeft    - image is displayed as usual
             #center     - image is shown centered
             #fitBig     - big images are shrunk to make it fit the view
             #fitSmall   - small images are magnified to make it fit the view,
@@ -201,7 +201,13 @@
 
 adjust:layoutSymbol
     "set the adjust (how the image is displayed);
-     currently, only support #topLeft, #center, #fitBig, #fitSmall and #fit"
+     currently, only support #topLeft, #center, #fitBig, #fitSmall and #fit:
+            #topLeft    - image is displayed as usual
+            #center     - image is shown centered
+            #fitBig     - big images are shrunk to make it fit the view
+            #fitSmall   - small images are magnified to make it fit the view,
+            #fit        - all images are magnified to fit the view
+    "
 
     adjust ~= layoutSymbol ifTrue:[
         adjust := layoutSymbol.
@@ -461,7 +467,7 @@
 !ImageView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ImageView.st,v 1.51 2002-11-07 17:56:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ImageView.st,v 1.52 2002-11-14 14:56:08 cg Exp $'
 ! !
 
 ImageView initialize!