Object <- Viewable <- Stamp <- AnnouncementStamp |
|
|
Action |
|
Announcement PublicAddress |
| Field | Type | |
|---|---|---|
| Viewable: | superview: | Viewable |
| relativeOrigin: | Dot | |
| contentSize: | Dot | |
| viewFlags: | Flags | |
| labelStyle: | TextStyle | |
| color: | Unsigned | |
| altColor: | Unsigned | |
| shadow: | Shadow | |
| sound: | Playable | |
| Stamp: | image: | Image |
| AnnouncementStamp: | announcement: | Announcement |
| publicAddress: | PublicAddress |
instance AnnouncementStamp tag; relativeOrigin: <0.0,0.0>; contentSize: <0.0,0.0>; viewFlags: 0x00000000; labelStyle: nilObject; color: 0; altColor: 0; shadow: nilObject; sound: nilObject; image: nilObject; announcement: nilObject; publicAddress: nilObject; end instance;
Define Class AnnouncementStamp; inherits from Stamp; has dispatcher hintdata; field announcement: Announcement, weak, getter, setter; // the announcement associated with this object field publicAddress: PublicAddress, weak, getter, setter; // obsolete; the public address is now always obtained from the announcement attribute Announcement: Announcement; attribute PublicAddress: PublicAddress, safe; overrides Action; // presents the announcement if it was not showing; otherwise hides the announcement's public address end class;