AbortOperationRequest.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 22:13:34 +0200
changeset 7412 daae29634e02
parent 6207 b53b64413b40
child 7588 1819a1c408f3
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

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

!AbortOperationRequest class methodsFor:'documentation'!

documentation
"
    Raised when the CTRL-y (abort operation) Key is pressed,
    or when the 'Abort'-button is pressed in the Debugger,
    or by many dialogs 'Cancel' key.

    If unhandled, this is a no-op,
    however, all windows catch this signal in their main event handling
    loop to allow for whatever operation is ongoing to be cancelled.

    Pressing CTRL-y has the same behavior as interrupting followed by pressing
    the debuggers 'Abort'-button.
"
! !

!AbortOperationRequest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/AbortOperationRequest.st,v 1.2 2001-11-17 10:01:58 cg Exp $'
! !