Location:
W32STD.H
struct TTextCursor;
Text cursor parameter information.
A text cursor is a rectangular area which can be set to flash. It is normally only visible when the window group which owns
it has the keyboard focus. This structure is used to define the parameters of a text cursor, which can be selected for use
through the window group using RWindowGroup::SetTextCursor()
.
Custom (non-rectangular) text cursors are supported from v7.0s. They are added to the window server using RWsSession::SetCustomTextCursor()
, after which they can be selected for use through the window group, in the same way as standard rectangular cursors. They
have a unique identifier, stored in the iType member, which must be greater than ETypeLastBasic. Custom text cursors are clipped
to their iHeight and iWidth values. Their iColour member is not used.
Defined in TTextCursor
:
EFlagClipHorizontal
, EFlagClipVertical
, EFlagNoFlash
, EFlags
, ENamedCursors
, EType
, ETypeFirst
, ETypeHollowRectangle
, ETypeLast
, ETypeLastBasic
, ETypeRectangle
, iAscent
, iColor
, iFlags
, iHeight
, iType
, iWidth
ENamedCursors
Cursor type values.
The values between ETypeFirst and ETypeLastBasic are reserved for predefined cursors. Custom text cursors must have a value greater than ETypeLastBasic.
The values not listed below are for internal use only.
|
EFlags
Cursor flash and clipping flags.
The flags not listed below are for internal use only.
|
TInt iHeight;
The height of the text cursor.
This value is also used for clipping custom text cursors, if the EFlagClipVertical flag is set.
TInt iAscent;
The ascent of the text cursor (the distance between the origin and the top).
TInt iWidth;
The width of the text cursor.
Custom text cursors are clipped to this value, if the EFlagClipHorizontal flag is set.
TUint iFlags;
Cursor flash and clipping flags.
For possible values, see the EFlags enum.
TRgb iColor;
The colour of the text cursor.
If the cursor is flashing, this colour is XOR'd with the screen.
This value is not used for custom text cursors.