os/graphics/windowing/windowserver/inc/textcursor.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// text cursor header file
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef TEXTCURSOR_H
sl@0
    19
#define TEXTCURSOR_H
sl@0
    20
sl@0
    21
struct TTextCursor
sl@0
    22
/** Text cursor parameter information.
sl@0
    23
sl@0
    24
A text cursor is a rectangular area which can be set to flash. It is normally
sl@0
    25
only visible when the window group which owns it has the keyboard focus. This
sl@0
    26
structure is used to define the parameters of a text cursor, which can be
sl@0
    27
selected for use through the window group using RWindowGroup::SetTextCursor().
sl@0
    28
sl@0
    29
Custom (non-rectangular) text cursors are supported from v7.0s. They are added
sl@0
    30
to the window server using RWsSession::SetCustomTextCursor(), after which
sl@0
    31
they can be selected for use through the window group, in the same way as
sl@0
    32
standard rectangular cursors. They have a unique identifier, stored in the
sl@0
    33
iType member, which must be greater than ETypeLastBasic. Custom text cursors
sl@0
    34
are clipped to their iHeight and iWidth values. Their iColour member is not
sl@0
    35
used.
sl@0
    36
sl@0
    37
@publishedAll
sl@0
    38
@released */
sl@0
    39
    {
sl@0
    40
	// The different normal text cursors
sl@0
    41
	// A Text cursor can either be a predefined one
sl@0
    42
	// or a general sprite. Cursors between ETypeFirst
sl@0
    43
	// and ETypeLastBasic are predefined ones (even though
sl@0
    44
	// the ones above ETypeLast do not exist and are
sl@0
    45
	// for future use)
sl@0
    46
	/** Cursor type values.
sl@0
    47
sl@0
    48
	The values between ETypeFirst and ETypeLastBasic are reserved for predefined
sl@0
    49
	cursors. Custom text cursors must have a value greater than ETypeLastBasic.
sl@0
    50
sl@0
    51
	The values not listed below are for internal use only.
sl@0
    52
	
sl@0
    53
    @publishedAll */
sl@0
    54
	enum ENamedCursors
sl@0
    55
		{
sl@0
    56
		ETypeNone,
sl@0
    57
		/** Standard filled rectangular cursor. */
sl@0
    58
		ETypeRectangle,
sl@0
    59
		/** Standard hollow rectangular cursor. */
sl@0
    60
		ETypeHollowRectangle,
sl@0
    61
        /** The first predefined cursor type.
sl@0
    62
sl@0
    63
        Equivalent to ETypeRectangle. This can be used for iterating through the predefined
sl@0
    64
        cursor types.
sl@0
    65
        
sl@0
    66
        WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases. */
sl@0
    67
        ETypeFirst=ETypeRectangle,
sl@0
    68
        /** The last predefined cursor type.
sl@0
    69
sl@0
    70
        Equivalent to ETypeHollowRectangle. This can be used for iterating through
sl@0
    71
        the predefined cursor types.
sl@0
    72
        
sl@0
    73
        WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases. */        
sl@0
    74
        ETypeLast=ETypeHollowRectangle,
sl@0
    75
        /** Reserved for future use.
sl@0
    76
		
sl@0
    77
		/** All custom text cursors must have a type value greater than this. */
sl@0
    78
		ETypeLastBasic = 1000,	
sl@0
    79
		};
sl@0
    80
	/** Added for compatibility with previous releases. */
sl@0
    81
	typedef TInt EType;
sl@0
    82
	/** Cursor flash and clipping flags.
sl@0
    83
sl@0
    84
	The flags not listed below are for internal use only. */
sl@0
    85
	enum EFlags
sl@0
    86
		{
sl@0
    87
		/** The text cursor should not flash. */
sl@0
    88
		EFlagNoFlash		= 0x00000001,
sl@0
    89
		/** The bitmap of each sprite member is clipped left of its x-origin and right of
sl@0
    90
		its x-origin plus iWidth.
sl@0
    91
sl@0
    92
		Used for custom text cursors only. */
sl@0
    93
		EFlagClipHorizontal	= 0x00000002,
sl@0
    94
		/** The bitmap of each sprite member is clipped vertically.
sl@0
    95
sl@0
    96
		How it is clipped depends on the text cursor's vertical alignment, see the
sl@0
    97
		TCustomTextCursorAlignment enum in class RWsSession.
sl@0
    98
sl@0
    99
		Used for custom text cursors only. */
sl@0
   100
		EFlagClipVertical	= 0x00000004,	
sl@0
   101
		};
sl@0
   102
	/** The cursor type.
sl@0
   103
sl@0
   104
	For possible values, see the ENamedCursors enum. */
sl@0
   105
	TInt iType;
sl@0
   106
	/** The height of the text cursor.
sl@0
   107
sl@0
   108
	This value is also used for clipping custom text cursors, if the EFlagClipVertical
sl@0
   109
	flag is set. */
sl@0
   110
    TInt iHeight;
sl@0
   111
	/** The ascent of the text cursor (the distance between the origin and the top). */
sl@0
   112
    TInt iAscent;
sl@0
   113
	/** The width of the text cursor.
sl@0
   114
sl@0
   115
	Custom text cursors are clipped to this value, if the EFlagClipHorizontal
sl@0
   116
	flag is set. */
sl@0
   117
    TInt iWidth;
sl@0
   118
	/** Cursor flash and clipping flags.
sl@0
   119
sl@0
   120
	For possible values, see the EFlags enum. */
sl@0
   121
    TUint iFlags;
sl@0
   122
	/** The colour of the text cursor.
sl@0
   123
sl@0
   124
	If the cursor is flashing, this colour is XOR'd with the screen.
sl@0
   125
sl@0
   126
	This value is not used for custom text cursors. */
sl@0
   127
	TRgb iColor;
sl@0
   128
    };
sl@0
   129
sl@0
   130
#endif // TEXTCURSOR_H