AbortAllOperationRequest.st
changeset 6879 bf378225d452
parent 6878 3fffe99cc074
child 7588 1819a1c408f3
equal deleted inserted replaced
6878:3fffe99cc074 6879:bf378225d452
    11 
    11 
    12 documentation
    12 documentation
    13 "
    13 "
    14     Raised by some dialogs 'Cancel All' button.
    14     Raised by some dialogs 'Cancel All' button.
    15 
    15 
    16     If unhandled, this is a no-op,
    16     If unhandled, this is equivalent to raising the AbortOperationRequest.
    17     however, some applications catch this signal when performing some operation
    17     However, some applications catch this signal when performing an operation
    18     on multiple objects (such as a fileBrowser, when deleting multiple files).
    18     on multiple objects (such as a fileBrowser, when deleting multiple files).
       
    19     In these situations, Abort is typically cought to cancel a single
       
    20     operation, while AbortAll is used to cancel the whole action.
       
    21 "
       
    22 ! !
    19 
    23 
    20     In these situations, AbortSignal is typically cought to cancel a single
    24 !AbortAllOperationRequest methodsFor:'default actions'!
    21     operation, while AbortAllSignal is used to cancel a single operation.
    25 
    22 "
    26 defaultAction
       
    27     AbortSignal raise
    23 ! !
    28 ! !
    24 
    29 
    25 !AbortAllOperationRequest class methodsFor:'documentation'!
    30 !AbortAllOperationRequest class methodsFor:'documentation'!
    26 
    31 
    27 version
    32 version
    28     ^ '$Header: /cvs/stx/stx/libbasic/AbortAllOperationRequest.st,v 1.2 2002-11-21 09:18:11 cg Exp $'
    33     ^ '$Header: /cvs/stx/stx/libbasic/AbortAllOperationRequest.st,v 1.3 2002-11-21 09:21:20 cg Exp $'
    29 ! !
    34 ! !