os/graphics/windowing/windowserver/nonnga/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
sl@0
    28
class TCursorSprite
sl@0
    29
	{
sl@0
    30
public:
sl@0
    31
	static void SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin=NULL);
sl@0
    32
	static void Hide();
sl@0
    33
	static void Reveal();
sl@0
    34
	static void SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin);
sl@0
    35
	static TBool IsStandardCursorActive();
sl@0
    36
private:
sl@0
    37
	static RWsTextCursor *iCurrentCursor;
sl@0
    38
	static TBool iHidden;
sl@0
    39
	};
sl@0
    40
sl@0
    41
class RWsTextCursor
sl@0
    42
	{
sl@0
    43
public:
sl@0
    44
	friend class TCursorSprite;
sl@0
    45
public:
sl@0
    46
	void ConstructL(CWsWindowGroup *aOwner);
sl@0
    47
	void Close();
sl@0
    48
	void SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped);
sl@0
    49
	void Cancel();
sl@0
    50
	void WindowDisconnected(CWsWindow *aWin);
sl@0
    51
	void LostFocus();
sl@0
    52
	void ReceivedFocus();
sl@0
    53
	inline CWsWindow* Win() const;
sl@0
    54
	TRect RectRelativeToScreen() const;
sl@0
    55
	void Enable();
sl@0
    56
	void Disable();
sl@0
    57
	TBool IsStandardCursorActive();
sl@0
    58
	TBool IsFlashing() const;
sl@0
    59
	void Draw(CFbsBitGc* aGc, const TRegion& aRegion);
sl@0
    60
public:
sl@0
    61
	enum TInternalFlags
sl@0
    62
		{
sl@0
    63
		EHasFocus	= 0x00000001,
sl@0
    64
		};
sl@0
    65
private:
sl@0
    66
	void Clear();
sl@0
    67
	void doDraw(CFbsBitGc* aGc, const TRegion& aRegion);
sl@0
    68
	void ScheduleReDrawNow();
sl@0
    69
private:
sl@0
    70
	CWsWindowGroup *iGroupWin;
sl@0
    71
	CWsClientWindow *iWin;
sl@0
    72
	TUint iInternalFlags;
sl@0
    73
	TInt iType;
sl@0
    74
	TPoint iPos;
sl@0
    75
	TSize iSize;
sl@0
    76
    TUint iFlags;
sl@0
    77
	TRgb iColor;
sl@0
    78
	TRect iClipRect;
sl@0
    79
	RWsRegion iDrawRegion;
sl@0
    80
	CWsCustomTextCursor* iCustomTextCursor;
sl@0
    81
	};
sl@0
    82
sl@0
    83
class CWsPointerCursor : public CWsSpriteBase
sl@0
    84
	{
sl@0
    85
public:
sl@0
    86
	CWsPointerCursor(CWsClient *aOwner);
sl@0
    87
	~CWsPointerCursor();
sl@0
    88
	void ConstructL(const TWsClCmdCreatePointerCursor &aParams);
sl@0
    89
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    90
	void CloseObject();
sl@0
    91
	void Close();
sl@0
    92
	void Open();
sl@0
    93
private:
sl@0
    94
	TInt iAccessCount;
sl@0
    95
	};
sl@0
    96
sl@0
    97
class CWsCustomTextCursor : public CWsSpriteBase
sl@0
    98
	{
sl@0
    99
public:
sl@0
   100
	CWsCustomTextCursor(CWsClient* aOwner, RWsSession::TCustomTextCursorAlignment aAlignment);
sl@0
   101
	~CWsCustomTextCursor();
sl@0
   102
	void ConstructL(TInt aFlags);
sl@0
   103
	void CommandL(TInt aOpcode, const TAny* aCmdData);
sl@0
   104
	void CompleteL(CWsWindow* aWin, TBool aFlash, TBool aClipSprite, const TPoint& aClipOffset, const TSize& aClipSize);
sl@0
   105
	void SetPositionNoRedraw(const TPoint& aPos);
sl@0
   106
	inline RWsSession::TCustomTextCursorAlignment Alignment() const;
sl@0
   107
	inline void SetWindow(CWsClientWindow* aWin);
sl@0
   108
private:
sl@0
   109
	RWsSession::TCustomTextCursorAlignment iAlignment;
sl@0
   110
	};
sl@0
   111
sl@0
   112
inline CWsWindow* RWsTextCursor::Win() const
sl@0
   113
	{
sl@0
   114
	return iWin;
sl@0
   115
	}
sl@0
   116
sl@0
   117
inline RWsSession::TCustomTextCursorAlignment CWsCustomTextCursor::Alignment() const
sl@0
   118
	{
sl@0
   119
	return iAlignment;
sl@0
   120
	}
sl@0
   121
sl@0
   122
inline void CWsCustomTextCursor::SetWindow(CWsClientWindow* aWin)
sl@0
   123
	{
sl@0
   124
	iWin=aWin;
sl@0
   125
	}
sl@0
   126
sl@0
   127
#endif