2003-04-27 14:48:24 +00:00
|
|
|
" Notification example
|
|
|
|
|
|
|
|
Show usage of NSNotification class and notification handling in scripts
|
|
|
|
|
|
|
|
"
|
2002-05-13 22:13:06 +00:00
|
|
|
[|
|
|
|
|
|
2003-04-27 14:48:24 +00:00
|
|
|
" Main script method "
|
2002-05-13 22:13:06 +00:00
|
|
|
main
|
2003-04-27 14:48:24 +00:00
|
|
|
| center |
|
|
|
|
|
|
|
|
center := NSNotificationCenter defaultCenter.
|
|
|
|
|
|
|
|
Transcript showLine:'Registering for notification.'.
|
2002-05-13 22:13:06 +00:00
|
|
|
|
2003-04-27 14:48:24 +00:00
|
|
|
center addObserver:self
|
|
|
|
selector:#handleNotification:
|
|
|
|
name:'Notification' object:nil.
|
2002-05-13 22:13:06 +00:00
|
|
|
|
2003-04-27 14:48:24 +00:00
|
|
|
Transcript showLine:'Posting notification.'.
|
2002-05-13 22:13:06 +00:00
|
|
|
|
2003-04-27 14:48:24 +00:00
|
|
|
center postNotificationName:'Notification' object:nil.
|
2002-05-13 22:13:06 +00:00
|
|
|
|
|
|
|
^self
|
|
|
|
!
|
|
|
|
|
2003-04-27 14:48:24 +00:00
|
|
|
" Method as notification handler "
|
|
|
|
handleNotification:notif
|
2002-05-13 22:13:06 +00:00
|
|
|
|
2003-04-27 14:48:24 +00:00
|
|
|
Transcript showLine:'Notification received.'.
|
2002-05-13 22:13:06 +00:00
|
|
|
|
|
|
|
^self
|
|
|
|
|
|
|
|
]
|