FileSelectionBox.st
changeset 842 a27a1c6ddde0
parent 800 0d8a2d42398d
child 849 3f3371dd8222
equal deleted inserted replaced
841:1b3dd08ca02a 842:a27a1c6ddde0
   175         box listView ignoreDirectories:true.
   175         box listView ignoreDirectories:true.
   176         box open
   176         box open
   177                                                                         [exEnd]
   177                                                                         [exEnd]
   178 
   178 
   179     dont show any directory or hidden file:
   179     dont show any directory or hidden file:
   180     (notice the basename extraction - we are not interrested in the full pathName)
   180     (notice the basename extraction - we are not interested in the full pathName)
   181                                                                         [exBegin]
   181                                                                         [exBegin]
   182         |box|
   182         |box|
   183         box := FileSelectionBox new.
   183         box := FileSelectionBox new.
   184         box title:'Which file ?'.
   184         box title:'Which file ?'.
   185         box listView ignoreDirectories:true.
   185         box listView ignoreDirectories:true.
   597 ! !
   597 ! !
   598 
   598 
   599 !FileSelectionBox  class methodsFor:'documentation'!
   599 !FileSelectionBox  class methodsFor:'documentation'!
   600 
   600 
   601 version
   601 version
   602     ^ '$Header: /cvs/stx/stx/libwidg/FileSelectionBox.st,v 1.39 1996-07-19 19:12:11 cg Exp $'
   602     ^ '$Header: /cvs/stx/stx/libwidg/FileSelectionBox.st,v 1.40 1996-10-14 21:29:56 stefan Exp $'
   603 ! !
   603 ! !