ActivityNotification.st
changeset 10515 af20fca71049
parent 8371 4493f5ac7405
child 11194 0525f26f3b14
equal deleted inserted replaced
10514:d79947992c91 10515:af20fca71049
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    14 
    13 
    15 UserNotification subclass:#ActivityNotification
    14 UserNotification subclass:#ActivityNotification
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    46 
    45 
    47     This is very useful to pass busy messages up to some higher level (typically a view)
    46     This is very useful to pass busy messages up to some higher level (typically a view)
    48     which likes to display that message in its label or a busy-box.
    47     which likes to display that message in its label or a busy-box.
    49     It could also be put into some logfile or printed on the standard output/error.
    48     It could also be put into some logfile or printed on the standard output/error.
    50 
    49 
    51     It produces an info box with the message on the screen. 
       
    52     If no display is available, the message is written 
       
    53     to the Transcript.
       
    54 
       
    55     [see also:]
    50     [see also:]
    56         Signal
    51         Signal
    57 "
    52 "
    58 ! !
    53 ! !
    59 
    54 
    66     "
    61     "
    67      self initialize
    62      self initialize
    68     "
    63     "
    69 ! !
    64 ! !
    70 
    65 
       
    66 !ActivityNotification methodsFor:'default actions'!
       
    67 
       
    68 defaultAction
       
    69     "the default action is to do nothing"
       
    70 
       
    71     self proceed.
       
    72 ! !
       
    73 
    71 !ActivityNotification class methodsFor:'documentation'!
    74 !ActivityNotification class methodsFor:'documentation'!
    72 
    75 
    73 version
    76 version
    74     ^ '$Header: /cvs/stx/stx/libbasic/ActivityNotification.st,v 1.2 2004-06-04 13:22:14 ca Exp $'
    77     ^ '$Header: /cvs/stx/stx/libbasic/ActivityNotification.st,v 1.3 2007-04-16 13:39:57 stefan Exp $'
    75 ! !
    78 ! !
    76 
    79 
    77 ActivityNotification initialize!
    80 ActivityNotification initialize!