Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // RWsTextCursor and associated classes definitions
31 static void SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin=NULL);
34 static void SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin);
35 static TBool IsStandardCursorActive();
37 static RWsTextCursor *iCurrentCursor;
44 friend class TCursorSprite;
46 void ConstructL(CWsWindowGroup *aOwner);
48 void SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped);
50 void WindowDisconnected(CWsWindow *aWin);
53 inline CWsWindow* Win() const;
54 TRect RectRelativeToScreen() const;
57 TBool IsStandardCursorActive();
58 TBool IsFlashing() const;
59 void Draw(CFbsBitGc* aGc, const TRegion& aRegion);
63 EHasFocus = 0x00000001,
67 void doDraw(CFbsBitGc* aGc, const TRegion& aRegion);
68 void ScheduleReDrawNow();
70 CWsWindowGroup *iGroupWin;
71 CWsClientWindow *iWin;
79 RWsRegion iDrawRegion;
80 CWsCustomTextCursor* iCustomTextCursor;
83 class CWsPointerCursor : public CWsSpriteBase
86 CWsPointerCursor(CWsClient *aOwner);
88 void ConstructL(const TWsClCmdCreatePointerCursor &aParams);
89 void CommandL(TInt aOpcode, const TAny *aCmdData);
97 class CWsCustomTextCursor : public CWsSpriteBase
100 CWsCustomTextCursor(CWsClient* aOwner, RWsSession::TCustomTextCursorAlignment aAlignment);
101 ~CWsCustomTextCursor();
102 void ConstructL(TInt aFlags);
103 void CommandL(TInt aOpcode, const TAny* aCmdData);
104 void CompleteL(CWsWindow* aWin, TBool aFlash, TBool aClipSprite, const TPoint& aClipOffset, const TSize& aClipSize);
105 void SetPositionNoRedraw(const TPoint& aPos);
106 inline RWsSession::TCustomTextCursorAlignment Alignment() const;
107 inline void SetWindow(CWsClientWindow* aWin);
109 RWsSession::TCustomTextCursorAlignment iAlignment;
112 inline CWsWindow* RWsTextCursor::Win() const
117 inline RWsSession::TCustomTextCursorAlignment CWsCustomTextCursor::Alignment() const
122 inline void CWsCustomTextCursor::SetWindow(CWsClientWindow* aWin)