# HG changeset patch # User claus # Date 776803447 -7200 # Node ID 4560fcdc40df108a52491eb6ff3c5da14cc4d9a6 # Parent bda8210378471a77d9c7e12d68e79ac1186f5c02 Initial revision diff -r bda821037847 -r 4560fcdc40df FNmEntrBox.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FNmEntrBox.st Sat Aug 13 20:44:07 1994 +0200 @@ -0,0 +1,68 @@ +" + 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/Attic/FNmEntrBox.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/Attic/FNmEntrBox.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. +! ! + + + + diff -r bda821037847 -r 4560fcdc40df FilenameEnterBox.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FilenameEnterBox.st Sat Aug 13 20:44:07 1994 +0200 @@ -0,0 +1,68 @@ +" + 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. +! ! + + + +