os/graphics/windowing/windowserver/inc/Graphics/wscursor.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/inc/Graphics/wscursor.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,121 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Interface for Render Stage Text Cursors
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @publishedPartner
    1.23 + @prototype
    1.24 +*/
    1.25 +
    1.26 +#ifndef WSCURSOR_H
    1.27 +#define WSCURSOR_H
    1.28 +
    1.29 +#include <w32std.h>
    1.30 +#include <graphics/wsgraphicdrawerinterface.h>
    1.31 +
    1.32 +/** Wserv access to render stage Text Cursor implementation.
    1.33 +
    1.34 +This interface allows delegation of Text Cursor drawing to the Render
    1.35 +Stage.  It must not to be confused with Custom Text Cursor drawing;
    1.36 +@see RWsSession::SetCustomTextCursor
    1.37 +
    1.38 +Historically, Text cursors have often been implemented using XOR
    1.39 +drawing, because it is a cheap way to deliver a high-contrast cursor
    1.40 +in certain system architectures where Operating System access to
    1.41 +Graphics Device Memory is possible.
    1.42 +
    1.43 +XOR drawing can be problematic for some Render Stages.  This is because
    1.44 +the XOR operation requires a read back followed by a write.  This would
    1.45 +stall a graphics accelerator hardware implementation.
    1.46 +
    1.47 +In a render stage setting, the Text Cursor may not be the top-most
    1.48 +window as a transition effect can slide a semi-transparent window over
    1.49 +the top of the Text Cursor window.  This means the cursor cannot be XOR
    1.50 +drawn last after all other windows; the read-back cost cannot be hidden
    1.51 +at the end of drawing each frame.
    1.52 +
    1.53 +The Display Render Stage, responsible for interacting with hardware,
    1.54 +can offer XOR drawing in some cases, for example Software Bit GDI,
    1.55 +and not in others, for example OpenVG back-end hardware.
    1.56 +
    1.57 +This interface allows a render stage to implement Text Cursors
    1.58 +appropriately given the Display Render Stage which is present.
    1.59 +
    1.60 +This interface uses the supplied Text Cursor Color as a hint only.
    1.61 +TextCursor colors are better regarded as constrast level indicators
    1.62 +where KRgbWhite means a high contrast text cursor, and KRgbBlack
    1.63 +means an invisible text cursor.
    1.64 +
    1.65 +Suggested strategies:
    1.66 +<ol>
    1.67 +<li>
    1.68 +XOR drawing is available.  Just XOR draw the cursor each time in
    1.69 +the supplied color.  This corresponds to legacy non-Render Stage
    1.70 +behaviour.
    1.71 +</li>
    1.72 +<li>
    1.73 +No XOR drawing is available.  Draw a black box (solid or hollow
    1.74 +as appropriate).  Ensure that the UI Toolkit which provides the
    1.75 +platform's default text entry control has a compatible theme so
    1.76 +that black is an appropriate high-contrast color.
    1.77 +</li>
    1.78 +</ol>
    1.79 +
    1.80 +@publishedPartner
    1.81 +@prototype
    1.82 +*/
    1.83 +class MWsTextCursor : public MWsObjectProvider
    1.84 +	{
    1.85 +public:
    1.86 +
    1.87 +	struct TTextCursorInfo
    1.88 +		{
    1.89 +		const TRect& iCursorRect;	/** Rectangular area of the cursor in <b>window</b> co-ordinates */
    1.90 +		const TRegion& iRegion; 	/** Clipping region */
    1.91 +		TInt iTextCursorType; 		/** Cursor type; either TTextCursor::ETypeRectangle or TTextCursor::ETypeHollowRectangle */
    1.92 +		MWsWindow* iWindow; 		/** Window owning the cursor */
    1.93 +		TRgb iTextCursorColor;		/** Text Cursor Color used as a hint */
    1.94 +
    1.95 +		TTextCursorInfo(const TRect& aCursorRect, const TRegion& aRegion,
    1.96 +				TInt aTextCursorType, MWsWindow* aWindow, TRgb aTextCursorColor)
    1.97 +		: iCursorRect(aCursorRect),
    1.98 +		iRegion(aRegion),
    1.99 +		iTextCursorType(aTextCursorType),
   1.100 +		iWindow(aWindow),
   1.101 +		iTextCursorColor(aTextCursorColor)
   1.102 +			{
   1.103 +			}
   1.104 +		};
   1.105 +public:
   1.106 +	DECLARE_WS_TYPE_ID(KMWsTextCursor)
   1.107 +
   1.108 +public:
   1.109 +	/** Draw the Text Cursor in its Flash ON state
   1.110 +	 * 
   1.111 +	 * Draw the text cursor with the supplied attributes.  Note, the Flash OFF
   1.112 +	 * state does not result in a call to this function; instead a window
   1.113 +	 * redraw is done for the area where the cursor would reside.
   1.114 +	 * 
   1.115 +	 * @pre     The supplied Text Cursor type is either TextCursor::ETypeRectangle or
   1.116 +	 * 			TTextCursor::ETypeHollowRectangle
   1.117 +	 * 
   1.118 +	 * @param	aTextCursorInfo  Data structure to describe the attributes of the Text
   1.119 +	 * 			Cursor to Draw
   1.120 +	 */
   1.121 +	virtual void DrawTextCursor(const TTextCursorInfo& aTextCursorInfo) = 0;
   1.122 +	};
   1.123 +
   1.124 +#endif // WSCURSOR_H