DialogConfirmationRequest.st
author Claus Gittinger <cg@exept.de>
Sat, 11 Nov 2017 17:29:21 +0100
changeset 6226 b7628412aff5
parent 4662 7f08cca63588
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: EditTextView fix: care for readOnly in some edit operations added: #checkModificationsAllowedFlashIfNot: comment/format in: #checkModificationsAllowed changed: #applyConverterToSelection: #deleteCopyToClipboard: #handleNonCommandKey: #indentFromLine:toLine:by: #pasteOrReplaceByKeyPress #pasteOrReplaceFromHistory #withSelfAndTextForPasteDo:

"{ Package: 'stx:libwidg' }"

Query subclass:#DialogConfirmationRequest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Control'
!

!DialogConfirmationRequest class methodsFor:'documentation'!

documentation
"
    intended to allow confirmation dialogs to be automatically answered,
    for example for self tests.

    [author:]
        cg

    [instance variables:]

    [class variables:]

    [see also:]

"
! !

!DialogConfirmationRequest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg/DialogConfirmationRequest.st,v 1.1 2013-07-28 22:20:45 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libwidg/DialogConfirmationRequest.st,v 1.1 2013-07-28 22:20:45 cg Exp $'
! !