FilenameEnterBox.st
author claus
Sat, 13 Aug 1994 20:44:07 +0200
changeset 18 4560fcdc40df
child 43 3bbd1b494273
permissions -rw-r--r--
Initial revision

"
 COPYRIGHT (c) 1994 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

EnterBox subclass:#FilenameEnterBox
         instanceVariableNames:''
         classVariableNames:''
         poolDictionaries:''
         category:'Views-DialogBoxes'
!

FilenameEnterBox comment:'
COPYRIGHT (c) 1994 by Claus Gittinger
              All Rights Reserved

$Header: /cvs/stx/stx/libwidg2/FilenameEnterBox.st,v 1.1 1994-08-13 18:44:07 claus Exp $
'!

!FilenameEnterBox class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1994 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

version
"
$Header: /cvs/stx/stx/libwidg2/FilenameEnterBox.st,v 1.1 1994-08-13 18:44:07 claus Exp $
"
!

documentation
"
    like a normal enterBox, but does filename-completion when TAB is
    pressed.
"
! !

!FilenameEnterBox methodsFor:'initialization'!

createEnterField
    "
     redefined, since we need an editfield for filenames here
    "

    enterField := FilenameEditField in:self.
! !