FSaveBox.st
author claus
Sun, 07 Aug 1994 15:22:53 +0200
changeset 37 8dd71a2e79cd
child 59 450ce95a72a4
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.
"

FileSelectionBox subclass:#FileSaveBox
         instanceVariableNames:'appendAction'
         classVariableNames:''
         poolDictionaries:''
         category:'Views-DialogBoxes'
!

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

$Header: /cvs/stx/stx/libwidg/Attic/FSaveBox.st,v 1.1 1994-08-07 13:21:37 claus Exp $
'!

!FileSaveBox 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/libwidg/Attic/FSaveBox.st,v 1.1 1994-08-07 13:21:37 claus Exp $
"
!

documentation
"
    Instances of FileSaveBox add an 'append'-button. The other
    behavior is that of a FileSelectionBox.

    Instance variables:
        appendAction            action to be performed when append is pressed
"
! !

!FileSaveBox methodsFor:'user interaction'!

appendPressed
    self hideAndEvaluate:[:string |
        appendAction notNil ifTrue:[
            appendAction value:string 
        ]
    ]
! !

!FileSaveBox methodsFor:'initialization'!

initialize
    |b|

    super initialize.

    b := Button label:(resources string:'append').
    b action:[b turnOffWithoutRedraw. self appendPressed].
    buttonPanel addSubView:b after:abortButton
! !

!FileSaveBox methodsFor:'accessing'!

appendAction:aBlock
    appendAction := aBlock
! !