Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <W32STD.H>

Struct TTextCursor

struct TTextCursor;

Description

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(RWindowBase &,const TPoint &,const TTextCursor &).

Custom (non-rectangular) text cursors are supported from v7.0s. They are added to the window server using RWsSession::SetCustomTextCursor(TInt,const TArray< TSpriteMember > &,TUint,TCustomTextCursorAlignment), 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.

Members

Defined in TTextCursor:


Member enumerations


Enum ENamedCursors

ENamedCursors

Description

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.

ETypeRectangle

Standard filled rectangular cursor.

ETypeHollowRectangle

Standard hollow rectangular cursor.

ETypeFirst

The first predefined cursor type.

Equivalent to ETypeRectangle. This can be used for iterating through the predefined cursor types.

ETypeLast

The last predefined cursor type.

Equivalent to ETypeHollowRectangle. This can be used for iterating through the predefined cursor types.

ETypeLastBasic

Reserved for future use.

All custom text cursors must have a type value greater than this.


Enum EFlags

EFlags

Description

Cursor flash and clipping flags.

The flags not listed below are for internal use only.

EFlagNoFlash

The text cursor should not flash.

EFlagClipHorizontal

The bitmap of each sprite member is clipped left of its x-origin and right of its x-origin plus iWidth.

Used for custom text cursors only.

EFlagClipVertical

The bitmap of each sprite member is clipped vertically.

How it is clipped depends on the text cursor's vertical alignment, see the TCustomTextCursorAlignment enum in class RWsSession.

Used for custom text cursors only.

[Top]


Member type definitions


Typedef EType

typedef TInt TTextCursor::EType;

Description

Added for compatibility with previous releases.

[Top]


Member data


iType

TInt iType;

Description

The cursor type.

For possible values, see the ENamedCursors enum.


iHeight

TInt iHeight;

Description

The height of the text cursor.

This value is also used for clipping custom text cursors, if the EFlagClipVertical flag is set.


iAscent

TInt iAscent;

Description

The ascent of the text cursor (the distance between the origin and the top).


iWidth

TInt iWidth;

Description

The width of the text cursor.

Custom text cursors are clipped to this value, if the EFlagClipHorizontal flag is set.


iFlags

TUint iFlags;

Description

Cursor flash and clipping flags.

For possible values, see the EFlags enum.


iColor

TRgb iColor;

Description

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.