AbortAllOperationRequest.st
author Stefan Vogel <sv@exept.de>
Fri, 11 Jul 2003 19:52:44 +0200
changeset 7493 5c67c45b11cb
parent 6879 bf378225d452
child 7588 1819a1c408f3
permissions -rw-r--r--
New select for fair scheduling (not giving low filedescriptors precedence)

"{ Package: 'stx:libbasic' }"

ControlRequest subclass:#AbortAllOperationRequest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Control'
!

!AbortAllOperationRequest class methodsFor:'documentation'!

documentation
"
    Raised by some dialogs 'Cancel All' button.

    If unhandled, this is equivalent to raising the AbortOperationRequest.
    However, some applications catch this signal when performing an operation
    on multiple objects (such as a fileBrowser, when deleting multiple files).
    In these situations, Abort is typically cought to cancel a single
    operation, while AbortAll is used to cancel the whole action.
"
! !

!AbortAllOperationRequest methodsFor:'default actions'!

defaultAction
    AbortSignal raise
! !

!AbortAllOperationRequest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/AbortAllOperationRequest.st,v 1.3 2002-11-21 09:21:20 cg Exp $'
! !