initial checkin
authorClaus Gittinger <cg@exept.de>
Thu, 21 Nov 2002 10:15:26 +0100
changeset 6876 f5def7fbfb7c
parent 6875 d064224376bf
child 6877 ab4e7d42f9f8
initial checkin
AbortAllOperationRequest.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/AbortAllOperationRequest.st	Thu Nov 21 10:15:26 2002 +0100
@@ -0,0 +1,29 @@
+"{ Package: 'stx:libbasic' }"
+
+AbortOperationRequest 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 a no-op,
+    however, some applications catch this signal when performing some operation
+    on multiple objects (such as a fileBrowser, when deleting multiple files).
+
+    In these situations, AbortSignal is typically cought to cancel a single
+    operation, while AbortAllSignal is used to cancel a single operation.
+"
+! !
+
+!AbortAllOperationRequest class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/AbortAllOperationRequest.st,v 1.1 2002-11-21 09:15:26 cg Exp $'
+! !