inherits from Stamp;
The messages drawer of stamps in the new message scene includes two stamps for the user's signature, one for first name and one for full name. Before the user enters signatures, these spaces are represented by signature proxy stamps. When the user drops a signature proxy stamp onto a telecard, Magic Cap goes to the signature control panel so that the user can enter signatures. Magic Cap defines class SignatureProxy to represent signature proxy stamps.
Instantiate: never Subclass: rarely Call its methods: never
You probably won't ever create an object or a subclass of class SignatureProxy. The information in this chapter is provided for debugging and curiosity only.
Class SignatureProxy defines the following methods:
Method | Description |
---|---|
AboutToShow |
Overridden to replace proxy with real signature if available. |
DroppedFromWindow | Overridden to go to signature control panel. |
Tap | Overridden to go to signature control panel. |
Class SignatureProxy defines the following fields:
Field | Type | Description |
---|---|---|
Inherited from SingleLinkable | ||
next | Object | Next item in view list |
Inherited from Linkable | ||
previous | Object | Previous item in view list |
Inherited from Viewable | ||
superview | Viewable | Container for this object |
subview | Viewable | Object contained by this object |
relativeOrigin | Dot | Origin relative to superview |
contentSize | Dot | Size of content rectangle |
viewFlags | Flags | Property settings |
labelStyle | TextStyle | Text style of object's label |
color | Color | Color of object's content |
shadow | Shadow | Shadow drawn with object |
sound | Sound | Sound associated with object |
Inherited from Stamp | ||
image | Image | |
Defined by SignatureProxy | ||
pad | SignaturePad | Signature pad associated with this proxy |
overrides AboutToShow Call: rarely Override: sometimes
Class SignatureProxy overrides AboutToShow to replace the signature proxy with the actual signature if the user has already entered one.
overrides DroppedFromWindow Call: rarely Override: sometimes
Class SignatureProxy overrides DroppedFromWindow to go the signature control panel when a signature proxy stamp is dropped.
overrides Tap Call: rarely Override: sometimes