AbstractFileFinderApplicationComponent.st
branchjv
changeset 12401 4714b9640528
parent 12128 a7ff7d66ee85
parent 12338 2b456eb16d5d
child 12431 9f0c59c742d5
--- a/AbstractFileFinderApplicationComponent.st	Tue Jan 22 12:24:41 2013 +0000
+++ b/AbstractFileFinderApplicationComponent.st	Wed Jan 30 11:15:09 2013 +0000
@@ -37,6 +37,7 @@
 "
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'accessing'!
 
 accessLock
@@ -57,6 +58,7 @@
     "Modified (format): / 11-01-2012 / 22:41:01 / cg"
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'actions'!
 
 changeInformationTo:aString
@@ -144,7 +146,7 @@
                     ] ifFalse:[
                         t := t printString , ' ms'
                     ].
-                    message := 'Found %1 file%2 in %3' bindWith:(resultList size) with:(resultList size == 1 ifTrue:'' ifFalse:'s') with:t.
+                    message := 'Found %1 file%2 in %3.' bindWith:(resultList size) with:(resultList size == 1 ifTrue:'' ifFalse:'s') with:t.
                     self enableStop value:false.
                     self enableSearch value:true.
                     self changeInformationTo:'Find File ' , '- done.' toTab:true.
@@ -174,7 +176,7 @@
     ].
     self enableStop value:false.
     self enableSearch value:true.
-    self changeInformationTo:'Find File ' , '- search stopped' toTab:true.
+    self changeInformationTo:'Find File ' , '- search stopped.' toTab:true.
 
     "Modified: / 11-01-2012 / 22:42:07 / cg"
 !
@@ -196,6 +198,7 @@
     ].
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'aspects'!
 
 autoSelectInBrowser
@@ -287,6 +290,7 @@
     ^ shownListHolder.
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'change & update'!
 
 update:something with:aParameter from:changedObject
@@ -303,6 +307,7 @@
     super update:something with:aParameter from:changedObject
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'drag & drop'!
 
 getDisplayObjects:anArgument
@@ -345,6 +350,7 @@
         ].
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'event handling'!
 
 fileDoubleClick:entries
@@ -402,6 +408,8 @@
     "filter keyboard events.
      Return true, if I have eaten the event"
 
+    <resource: #keyboard (#Return )>
+
     |focusView key rawKey|
 
     anEvent isKeyPressEvent ifTrue:[
@@ -430,6 +438,7 @@
     ^ false
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'initialization'!
 
 initialize
@@ -442,6 +451,7 @@
     "Modified: / 12-01-2012 / 01:39:27 / cg"
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'queries'!
 
 hasOneFileSelected
@@ -457,6 +467,7 @@
     ^ sel notEmptyOrNil
 ! !
 
+
 !AbstractFileFinderApplicationComponent methodsFor:'tasks'!
 
 stopSearchTaskOrAbort
@@ -472,16 +483,18 @@
     "Created: / 12-01-2012 / 01:48:42 / cg"
 ! !
 
+
 !AbstractFileFinderApplicationComponent class methodsFor:'documentation'!
 
 version
-    ^ '$Id: AbstractFileFinderApplicationComponent.st 7854 2012-01-30 17:49:41Z vranyj1 $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.8 2013-01-26 21:27:34 cg Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.6 2012/01/12 02:34:16 cg Exp §'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.8 2013-01-26 21:27:34 cg Exp $'
 !
 
 version_SVN
     ^ '$Id: AbstractFileFinderApplicationComponent.st 7854 2012-01-30 17:49:41Z vranyj1 $'
 ! !
+