1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/tcursor.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,127 @@
1.4 +// Copyright (c) 2006-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 +// RWsTextCursor and associated classes definitions
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __TCURSOR_H__
1.22 +#define __TCURSOR_H__
1.23 +
1.24 +#include "server.h"
1.25 +#include "cliwin.h"
1.26 +#include "sprite.h"
1.27 +
1.28 +class RWsTextCursor;
1.29 +class CEventQueue;
1.30 +
1.31 +class TCursorSprite
1.32 + {
1.33 +public:
1.34 + static void SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin=NULL);
1.35 + static void Hide();
1.36 + static void Reveal();
1.37 + static void SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin);
1.38 + static TBool IsStandardCursorActive();
1.39 +private:
1.40 + static RWsTextCursor *iCurrentCursor;
1.41 + static TBool iHidden;
1.42 + };
1.43 +
1.44 +class RWsTextCursor
1.45 + {
1.46 +public:
1.47 + friend class TCursorSprite;
1.48 +public:
1.49 + void ConstructL(CWsWindowGroup *aOwner);
1.50 + void Close();
1.51 + void SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped);
1.52 + void Cancel();
1.53 + void WindowDisconnected(CWsWindow *aWin);
1.54 + void LostFocus();
1.55 + void ReceivedFocus();
1.56 + inline CWsWindow* Win() const;
1.57 + TRect RectRelativeToScreen() const;
1.58 + void Enable();
1.59 + void Disable();
1.60 + TBool IsStandardCursorActive();
1.61 + TBool IsFlashing() const;
1.62 + void Draw(CFbsBitGc* aGc, const TRegion& aRegion);
1.63 +public:
1.64 + enum TInternalFlags
1.65 + {
1.66 + EHasFocus = 0x00000001,
1.67 + };
1.68 +private:
1.69 + void Clear();
1.70 + void doDraw(CFbsBitGc* aGc, const TRegion& aRegion);
1.71 + void ScheduleReDrawNow();
1.72 +private:
1.73 + CWsWindowGroup *iGroupWin;
1.74 + CWsClientWindow *iWin;
1.75 + TUint iInternalFlags;
1.76 + TInt iType;
1.77 + TPoint iPos;
1.78 + TSize iSize;
1.79 + TUint iFlags;
1.80 + TRgb iColor;
1.81 + TRect iClipRect;
1.82 + RWsRegion iDrawRegion;
1.83 + CWsCustomTextCursor* iCustomTextCursor;
1.84 + };
1.85 +
1.86 +class CWsPointerCursor : public CWsSpriteBase
1.87 + {
1.88 +public:
1.89 + CWsPointerCursor(CWsClient *aOwner);
1.90 + ~CWsPointerCursor();
1.91 + void ConstructL(const TWsClCmdCreatePointerCursor &aParams);
1.92 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.93 + void CloseObject();
1.94 + void Close();
1.95 + void Open();
1.96 +private:
1.97 + TInt iAccessCount;
1.98 + };
1.99 +
1.100 +class CWsCustomTextCursor : public CWsSpriteBase
1.101 + {
1.102 +public:
1.103 + CWsCustomTextCursor(CWsClient* aOwner, RWsSession::TCustomTextCursorAlignment aAlignment);
1.104 + ~CWsCustomTextCursor();
1.105 + void ConstructL(TInt aFlags);
1.106 + void CommandL(TInt aOpcode, const TAny* aCmdData);
1.107 + void CompleteL(CWsWindow* aWin, TBool aFlash, TBool aClipSprite, const TPoint& aClipOffset, const TSize& aClipSize);
1.108 + void SetPositionNoRedraw(const TPoint& aPos);
1.109 + inline RWsSession::TCustomTextCursorAlignment Alignment() const;
1.110 + inline void SetWindow(CWsClientWindow* aWin);
1.111 +private:
1.112 + RWsSession::TCustomTextCursorAlignment iAlignment;
1.113 + };
1.114 +
1.115 +inline CWsWindow* RWsTextCursor::Win() const
1.116 + {
1.117 + return iWin;
1.118 + }
1.119 +
1.120 +inline RWsSession::TCustomTextCursorAlignment CWsCustomTextCursor::Alignment() const
1.121 + {
1.122 + return iAlignment;
1.123 + }
1.124 +
1.125 +inline void CWsCustomTextCursor::SetWindow(CWsClientWindow* aWin)
1.126 + {
1.127 + iWin=aWin;
1.128 + }
1.129 +
1.130 +#endif