|
Smalltalk/X WebserverDocumentation of class 'SimpleView::BoxClosedNotificationSignal': |
|
|
Class: BoxClosedNotificationSignal (private in SimpleViewThis class is only visible from within SimpleView.Inheritance:Object | +--GenericException | +--Notification | +--ProceedingNotification | +--SimpleView::BoxClosedNotificationSignal
Description:
this is a hook notification, raised right after a dialog box has been closed.
This allows for standard dialogs (such as confirmers, choosers or notifiers) to
be wrapped by other programs.
i.e. its typical use is like:
DialogBox boxClosedNotificationSignal handle:[:ex |
Transcript showCR:'box closed'
] do:[
DialogBox aboutToOpenBoxNotificationSignal handle:[:ex |
Transcript showCR:'box about to open'
] do:[
Dialog information:'This is a standard information box.'.
].
].
DialogBox boxClosedNotificationSignal handle:[:ex |
Transcript showCR:'box closed'
] do:[
DialogBox aboutToOpenBoxNotificationSignal handle:[:ex |
Transcript showCR:'box about to open'
] do:[
Dialog confirm:'Yes or No.'.
].
].
Instance protocol:accessing |
|
|
ST/X 7.1.0.0; WebServer 1.663 at exept.de:8081; Wed, 17 Dec 2025 10:03:56 GMT
|