FileSelectionItem.st
changeset 2805 9f8fb022ad70
parent 2422 53f16897645f
child 2929 089f66aac2b7
--- a/FileSelectionItem.st	Mon Apr 04 12:34:38 2005 +0200
+++ b/FileSelectionItem.st	Tue Apr 05 09:11:02 2005 +0200
@@ -55,15 +55,14 @@
 
 documentation
 "
-    class to build up file trees like structures. You can define your own
-    icons and filter. Redefinging the icons you have to look especially for
-    this methods:
+    class to build up file tree like structures. You can define your own
+    icons and filter. To change the icons, look for these methods:
 
-        class method:           keysAndIcons      : returns a list of icons and access keys used
+        class method:           #keysAndIcons      : returns a list of icons and access keys used
 
-        instance method:        imageType         : get type of icon assigned to file
+        instance method:        #imageType         : get type of icon assigned to file
 
-                                icon              : get the type of image to be drawn
+                                #icon              : get the type of image to be drawn
 
     Especially suited for use with FileSelectionTree.
 
@@ -72,7 +71,7 @@
                                                         for subdirectories to update the
                                                         indicator; on auto mounted file systems
                                                         this would take a very long time!!!!
-                                                        therfore the default is set to false.
+                                                        therefore the default is set to false.
 
     [Author:]
         Claus Atzkern
@@ -518,8 +517,8 @@
      This information is gathered lazily: first, false is
      returned and indicatorValidation is started for mySelf;
      this will read directories in the background to avoid
-     long startup delays (of my treeView)
-    "
+     long startup delays (of my treeView)"
+
     |model|
 
     showIndicator isNil ifTrue:[
@@ -536,8 +535,6 @@
         ]
     ].
     ^ showIndicator
-
-    "Modified: / 26.9.1998 / 15:17:53 / cg"
 !
 
 showIndicator:aBool
@@ -743,7 +740,7 @@
 !FileSelectionItem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/FileSelectionItem.st,v 1.19 2002-12-23 14:11:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/FileSelectionItem.st,v 1.20 2005-04-05 07:11:02 cg Exp $'
 ! !
 
 FileSelectionItem initialize!