sl@0
|
1 |
// Copyright (c) 2008-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 |
// Interface for Render Stage Text Cursors
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@publishedPartner
|
sl@0
|
20 |
@prototype
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef WSCURSOR_H
|
sl@0
|
24 |
#define WSCURSOR_H
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <w32std.h>
|
sl@0
|
27 |
#include <graphics/wsgraphicdrawerinterface.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
/** Wserv access to render stage Text Cursor implementation.
|
sl@0
|
30 |
|
sl@0
|
31 |
This interface allows delegation of Text Cursor drawing to the Render
|
sl@0
|
32 |
Stage. It must not to be confused with Custom Text Cursor drawing;
|
sl@0
|
33 |
@see RWsSession::SetCustomTextCursor
|
sl@0
|
34 |
|
sl@0
|
35 |
Historically, Text cursors have often been implemented using XOR
|
sl@0
|
36 |
drawing, because it is a cheap way to deliver a high-contrast cursor
|
sl@0
|
37 |
in certain system architectures where Operating System access to
|
sl@0
|
38 |
Graphics Device Memory is possible.
|
sl@0
|
39 |
|
sl@0
|
40 |
XOR drawing can be problematic for some Render Stages. This is because
|
sl@0
|
41 |
the XOR operation requires a read back followed by a write. This would
|
sl@0
|
42 |
stall a graphics accelerator hardware implementation.
|
sl@0
|
43 |
|
sl@0
|
44 |
In a render stage setting, the Text Cursor may not be the top-most
|
sl@0
|
45 |
window as a transition effect can slide a semi-transparent window over
|
sl@0
|
46 |
the top of the Text Cursor window. This means the cursor cannot be XOR
|
sl@0
|
47 |
drawn last after all other windows; the read-back cost cannot be hidden
|
sl@0
|
48 |
at the end of drawing each frame.
|
sl@0
|
49 |
|
sl@0
|
50 |
The Display Render Stage, responsible for interacting with hardware,
|
sl@0
|
51 |
can offer XOR drawing in some cases, for example Software Bit GDI,
|
sl@0
|
52 |
and not in others, for example OpenVG back-end hardware.
|
sl@0
|
53 |
|
sl@0
|
54 |
This interface allows a render stage to implement Text Cursors
|
sl@0
|
55 |
appropriately given the Display Render Stage which is present.
|
sl@0
|
56 |
|
sl@0
|
57 |
This interface uses the supplied Text Cursor Color as a hint only.
|
sl@0
|
58 |
TextCursor colors are better regarded as constrast level indicators
|
sl@0
|
59 |
where KRgbWhite means a high contrast text cursor, and KRgbBlack
|
sl@0
|
60 |
means an invisible text cursor.
|
sl@0
|
61 |
|
sl@0
|
62 |
Suggested strategies:
|
sl@0
|
63 |
<ol>
|
sl@0
|
64 |
<li>
|
sl@0
|
65 |
XOR drawing is available. Just XOR draw the cursor each time in
|
sl@0
|
66 |
the supplied color. This corresponds to legacy non-Render Stage
|
sl@0
|
67 |
behaviour.
|
sl@0
|
68 |
</li>
|
sl@0
|
69 |
<li>
|
sl@0
|
70 |
No XOR drawing is available. Draw a black box (solid or hollow
|
sl@0
|
71 |
as appropriate). Ensure that the UI Toolkit which provides the
|
sl@0
|
72 |
platform's default text entry control has a compatible theme so
|
sl@0
|
73 |
that black is an appropriate high-contrast color.
|
sl@0
|
74 |
</li>
|
sl@0
|
75 |
</ol>
|
sl@0
|
76 |
|
sl@0
|
77 |
@publishedPartner
|
sl@0
|
78 |
@prototype
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
class MWsTextCursor : public MWsObjectProvider
|
sl@0
|
81 |
{
|
sl@0
|
82 |
public:
|
sl@0
|
83 |
|
sl@0
|
84 |
struct TTextCursorInfo
|
sl@0
|
85 |
{
|
sl@0
|
86 |
const TRect& iCursorRect; /** Rectangular area of the cursor in <b>window</b> co-ordinates */
|
sl@0
|
87 |
const TRegion& iRegion; /** Clipping region */
|
sl@0
|
88 |
TInt iTextCursorType; /** Cursor type; either TTextCursor::ETypeRectangle or TTextCursor::ETypeHollowRectangle */
|
sl@0
|
89 |
MWsWindow* iWindow; /** Window owning the cursor */
|
sl@0
|
90 |
TRgb iTextCursorColor; /** Text Cursor Color used as a hint */
|
sl@0
|
91 |
|
sl@0
|
92 |
TTextCursorInfo(const TRect& aCursorRect, const TRegion& aRegion,
|
sl@0
|
93 |
TInt aTextCursorType, MWsWindow* aWindow, TRgb aTextCursorColor)
|
sl@0
|
94 |
: iCursorRect(aCursorRect),
|
sl@0
|
95 |
iRegion(aRegion),
|
sl@0
|
96 |
iTextCursorType(aTextCursorType),
|
sl@0
|
97 |
iWindow(aWindow),
|
sl@0
|
98 |
iTextCursorColor(aTextCursorColor)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
}
|
sl@0
|
101 |
};
|
sl@0
|
102 |
public:
|
sl@0
|
103 |
DECLARE_WS_TYPE_ID(KMWsTextCursor)
|
sl@0
|
104 |
|
sl@0
|
105 |
public:
|
sl@0
|
106 |
/** Draw the Text Cursor in its Flash ON state
|
sl@0
|
107 |
*
|
sl@0
|
108 |
* Draw the text cursor with the supplied attributes. Note, the Flash OFF
|
sl@0
|
109 |
* state does not result in a call to this function; instead a window
|
sl@0
|
110 |
* redraw is done for the area where the cursor would reside.
|
sl@0
|
111 |
*
|
sl@0
|
112 |
* @pre The supplied Text Cursor type is either TextCursor::ETypeRectangle or
|
sl@0
|
113 |
* TTextCursor::ETypeHollowRectangle
|
sl@0
|
114 |
*
|
sl@0
|
115 |
* @param aTextCursorInfo Data structure to describe the attributes of the Text
|
sl@0
|
116 |
* Cursor to Draw
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
virtual void DrawTextCursor(const TTextCursorInfo& aTextCursorInfo) = 0;
|
sl@0
|
119 |
};
|
sl@0
|
120 |
|
sl@0
|
121 |
#endif // WSCURSOR_H
|