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
33 static void SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin=NULL);
36 static void SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin);
37 static TBool IsStandardCursorActive();
39 static RWsTextCursor *iCurrentCursor;
43 class RWsTextCursor : public MWsWindowTreeNode, public MWsStandardTextCursor
46 friend class TCursorSprite;
48 void ConstructL(CWsWindowGroup *aOwner);
50 void SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped);
52 void WindowDisconnected(CWsWindow *aWin);
55 inline CWsWindow* Win() const;
56 TRect RectRelativeToScreen() const;
57 TRect RectRelativeToWindow() const;
60 TBool IsStandardCursorActive();
61 TBool IsFlashing() const;
62 void Draw(const TRegion& aRegion);
63 TFlashState CurrentCursorFlashState() const;
66 void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
70 EHasFocus = 0x00000001,
71 EActiveNode = 0x00000002
73 public: // from MWsWindowTreeNode
74 MWsWindowTreeNode::TType NodeType() const;
75 const MWsWindow* Window() const;
76 const MWsSprite* Sprite() const;
77 const MWsStandardTextCursor* StandardTextCursor() const;
78 const MWsWindowGroup* WindowGroup() const;
79 const MWsWindowTreeNode* ParentNode() const;
80 public: // from MWsStandardTextCursor
83 TRect ClipRect() const;
86 TTimeIntervalMicroSeconds32 FlashInterval() const;
89 void doDraw(const TRegion& aRegion);
90 void ScheduleReDrawNow();
91 void UpdateAttributes(TPoint aPos, TPoint aAbsPos, TSize aSize, TInt aType, TUint aFlags, TRect aClipRect, TRgb aColor, CWsCustomTextCursor* aCustomTextCursor, CWsClientWindow* aWin);
92 void NotifyObserver(MWsWindowTreeObserver::TAttributes aAttribute) const;
94 CWsWindowGroup *iGroupWin;
95 CWsClientWindow *iWin;
104 TTime iNextCursorUpdate;
105 RWsRegion iDrawRegion;
106 CWsCustomTextCursor* iCustomTextCursor;
109 class CWsPointerCursor : public CWsSpriteBase
112 CWsPointerCursor(CWsClient *aOwner);
114 void ConstructL(const TWsClCmdCreatePointerCursor &aParams);
115 void CommandL(TInt aOpcode, const TAny *aCmdData);
123 class CWsCustomTextCursor : public CWsSpriteBase
126 CWsCustomTextCursor(CWsClient* aOwner, RWsSession::TCustomTextCursorAlignment aAlignment);
127 ~CWsCustomTextCursor();
128 void ConstructL(TInt aFlags);
129 void CommandL(TInt aOpcode, const TAny* aCmdData);
130 void CompleteL(CWsWindow* aWin, TBool aFlash, TBool aClipSprite, const TPoint& aClipOffset, const TSize& aClipSize);
131 void SetPositionNoRedraw(const TPoint& aPos);
132 inline RWsSession::TCustomTextCursorAlignment Alignment() const;
133 inline void SetWindow(CWsClientWindow* aWin);
135 RWsSession::TCustomTextCursorAlignment iAlignment;
138 inline CWsWindow* RWsTextCursor::Win() const
143 inline RWsSession::TCustomTextCursorAlignment CWsCustomTextCursor::Alignment() const
148 inline void CWsCustomTextCursor::SetWindow(CWsClientWindow* aWin)