IntuiText is a series of strings.
Source position: intuition.pas line 70
type tIntuiText = record |
||
FrontPen: Byte; |
|
Front pen for Font rendering |
BackPen: Byte; |
|
Back pen for Font rendering |
DrawMode: Byte; |
|
The mode for rendering the text |
LeftEdge: SmallInt; |
|
relative left start location for the text |
TopEdge: SmallInt; |
|
relative top start location for the text |
ITextFont: pTextAttr; |
|
If nil, you accept the default |
IText: PChar; |
|
A pointer to null-terminated text |
NextText: pIntuiText; |
|
Continuation to TxWrite another text |
end; |
IntuiText is a series of strings that start with a screen location (always relative to the upper-left corner of something) and then the text of the string. The text is null-terminated.
|
Structure to describe a Gadget |
|
|
Extended Gadget structure |
|
|
Requesters The following struct is used for standard intuition requesters |
|
|
Flag for TGadget.SpecialInfo. TGadget.GadgetText is a PIntuiText |
|
|
GadgetClass Tag. [IS.] (PIntuiText) Label is an IntuiText. |
|
|
Automatically build and get response from a requester. |
|
|
Build and display a system requester. |
|
|
Return the length (pixel-width) of an IntuiText. |
|
|
Print text described by the IntuiText argument. |