os/graphics/windowing/windowserver/nga/SERVER/tcursor.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) 2006-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
// RWsTextCursor and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __TCURSOR_H__
sl@0
    19
#define __TCURSOR_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
#include "cliwin.h"
sl@0
    23
#include "sprite.h"
sl@0
    24
sl@0
    25
class RWsTextCursor;
sl@0
    26
class CEventQueue;
sl@0
    27
class CWsRenderStage;
sl@0
    28
class MWsTextCursor;
sl@0
    29
sl@0
    30
class TCursorSprite
sl@0
    31
	{
sl@0
    32
public:
sl@0
    33
	static void SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin=NULL);
sl@0
    34
	static void Hide();
sl@0
    35
	static void Reveal();
sl@0
    36
	static void SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin);
sl@0
    37
	static TBool IsStandardCursorActive();
sl@0
    38
private:
sl@0
    39
	static RWsTextCursor *iCurrentCursor;
sl@0
    40
	static TBool iHidden;
sl@0
    41
	};
sl@0
    42
sl@0
    43
class RWsTextCursor : public MWsWindowTreeNode, public MWsStandardTextCursor
sl@0
    44
	{
sl@0
    45
public:
sl@0
    46
	friend class TCursorSprite;
sl@0
    47
public:
sl@0
    48
	void ConstructL(CWsWindowGroup *aOwner);
sl@0
    49
	void Close();
sl@0
    50
	void SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped);
sl@0
    51
	void Cancel();
sl@0
    52
	void WindowDisconnected(CWsWindow *aWin);
sl@0
    53
	void LostFocus();
sl@0
    54
	void ReceivedFocus();
sl@0
    55
	inline CWsWindow* Win() const;
sl@0
    56
	TRect RectRelativeToScreen() const;
sl@0
    57
	TRect RectRelativeToWindow() const;
sl@0
    58
	void Enable();
sl@0
    59
	void Disable();
sl@0
    60
	TBool IsStandardCursorActive();
sl@0
    61
	TBool IsFlashing() const;
sl@0
    62
	void Draw(const TRegion& aRegion);
sl@0
    63
	TFlashState CurrentCursorFlashState() const;
sl@0
    64
	void CreateNode();
sl@0
    65
	void ReleaseNode();
sl@0
    66
	void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
    67
public:
sl@0
    68
	enum TInternalFlags
sl@0
    69
		{
sl@0
    70
		EHasFocus	= 0x00000001,
sl@0
    71
		EActiveNode	= 0x00000002
sl@0
    72
		};
sl@0
    73
public: // from MWsWindowTreeNode
sl@0
    74
	MWsWindowTreeNode::TType NodeType() const;
sl@0
    75
	const MWsWindow* Window() const;
sl@0
    76
	const MWsSprite* Sprite() const;
sl@0
    77
	const MWsStandardTextCursor* StandardTextCursor() const;
sl@0
    78
	const MWsWindowGroup* WindowGroup() const;
sl@0
    79
	const MWsWindowTreeNode* ParentNode() const;
sl@0
    80
public: // from MWsStandardTextCursor
sl@0
    81
	TInt Type() const;
sl@0
    82
	TRect Rect() const;
sl@0
    83
	TRect ClipRect() const;
sl@0
    84
    TUint Flags() const;
sl@0
    85
	TRgb Color() const;
sl@0
    86
	TTimeIntervalMicroSeconds32 FlashInterval() const;
sl@0
    87
private:
sl@0
    88
	void Clear();
sl@0
    89
	void doDraw(const TRegion& aRegion);
sl@0
    90
	void ScheduleReDrawNow();
sl@0
    91
	void UpdateAttributes(TPoint aPos, TPoint aAbsPos, TSize aSize, TInt aType, TUint aFlags, TRect aClipRect, TRgb aColor, CWsCustomTextCursor* aCustomTextCursor, CWsClientWindow* aWin);
sl@0
    92
	void NotifyObserver(MWsWindowTreeObserver::TAttributes aAttribute) const;
sl@0
    93
private:
sl@0
    94
	CWsWindowGroup *iGroupWin;
sl@0
    95
	CWsClientWindow *iWin;
sl@0
    96
	TUint iInternalFlags;
sl@0
    97
	TInt iType;
sl@0
    98
	TPoint iPos;
sl@0
    99
	TPoint iAbsPos;
sl@0
   100
	TSize iSize;
sl@0
   101
    TUint iFlags;
sl@0
   102
	TRgb iColor;
sl@0
   103
	TRect iClipRect;
sl@0
   104
	TTime iNextCursorUpdate;
sl@0
   105
	RWsRegion iDrawRegion;
sl@0
   106
	CWsCustomTextCursor* iCustomTextCursor;
sl@0
   107
	};
sl@0
   108
sl@0
   109
class CWsPointerCursor : public CWsSpriteBase
sl@0
   110
	{
sl@0
   111
public:
sl@0
   112
	CWsPointerCursor(CWsClient *aOwner);
sl@0
   113
	~CWsPointerCursor();
sl@0
   114
	void ConstructL(const TWsClCmdCreatePointerCursor &aParams);
sl@0
   115
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   116
	void CloseObject();
sl@0
   117
	void Close();
sl@0
   118
	void Open();
sl@0
   119
private:
sl@0
   120
	TInt iAccessCount;
sl@0
   121
	};
sl@0
   122
sl@0
   123
class CWsCustomTextCursor : public CWsSpriteBase
sl@0
   124
	{
sl@0
   125
public:
sl@0
   126
	CWsCustomTextCursor(CWsClient* aOwner, RWsSession::TCustomTextCursorAlignment aAlignment);
sl@0
   127
	~CWsCustomTextCursor();
sl@0
   128
	void ConstructL(TInt aFlags);
sl@0
   129
	void CommandL(TInt aOpcode, const TAny* aCmdData);
sl@0
   130
	void CompleteL(CWsWindow* aWin, TBool aFlash, TBool aClipSprite, const TPoint& aClipOffset, const TSize& aClipSize);
sl@0
   131
	void SetPositionNoRedraw(const TPoint& aPos);
sl@0
   132
	inline RWsSession::TCustomTextCursorAlignment Alignment() const;
sl@0
   133
	inline void SetWindow(CWsClientWindow* aWin);
sl@0
   134
private:
sl@0
   135
	RWsSession::TCustomTextCursorAlignment iAlignment;
sl@0
   136
	};
sl@0
   137
sl@0
   138
inline CWsWindow* RWsTextCursor::Win() const
sl@0
   139
	{
sl@0
   140
	return iWin;
sl@0
   141
	}
sl@0
   142
sl@0
   143
inline RWsSession::TCustomTextCursorAlignment CWsCustomTextCursor::Alignment() const
sl@0
   144
	{
sl@0
   145
	return iAlignment;
sl@0
   146
	}
sl@0
   147
sl@0
   148
inline void CWsCustomTextCursor::SetWindow(CWsClientWindow* aWin)
sl@0
   149
	{
sl@0
   150
	iWin=aWin;
sl@0
   151
	}
sl@0
   152
sl@0
   153
#endif