os/graphics/windowing/windowserver/nga/SERVER/ANIM.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) 1999-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
// Definition of classes related to Anim DLL's
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __ANIM_H__
sl@0
    19
#define __ANIM_H__
sl@0
    20
sl@0
    21
#include <e32std.h>
sl@0
    22
#include <w32adll.h>
sl@0
    23
#include "server.h"
sl@0
    24
#include "sprite.h"
sl@0
    25
sl@0
    26
class CWsAnimDll : public CWsObject
sl@0
    27
	{
sl@0
    28
public:
sl@0
    29
	static void InitStaticsL();
sl@0
    30
	static void DeleteStatics();
sl@0
    31
public:
sl@0
    32
	CWsAnimDll(CWsClient *owner);
sl@0
    33
	~CWsAnimDll();
sl@0
    34
	TInt CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow);
sl@0
    35
	void LoadL(const TDesC &aDllName);
sl@0
    36
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    37
	void Remove(TInt aHandle);
sl@0
    38
	inline TInt AnimObjectHandle(CWsAnim *aAnimObject) const;
sl@0
    39
	inline CWsAnim* AnimObjectL(TInt aAnimHandle) const;
sl@0
    40
	
sl@0
    41
private:
sl@0
    42
	TInt doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow);
sl@0
    43
private:
sl@0
    44
	static CObjectConIx *AnimObjectConIx;
sl@0
    45
private:
sl@0
    46
	CObjectCon *iInstanceCon;
sl@0
    47
	CObjectIx *iInstanceIndex;
sl@0
    48
	CAnimDll *iAnimDll;
sl@0
    49
	RLibrary iAnimLib;
sl@0
    50
	
sl@0
    51
public:
sl@0
    52
	TSglQueLink iQue;
sl@0
    53
	};
sl@0
    54
	
sl@0
    55
class CWsAnimGc;
sl@0
    56
sl@0
    57
class CWsAnim : public CObject, public MAnimGeneralFunctions, public MAnimGeneralFunctionsWindowExtension,
sl@0
    58
													public MAnimFreeTimerWindowFunctions, public MAnimSpriteFunctions, public MAnimGeneralFunctionsEventExtension,
sl@0
    59
													public MWsWindowTreeNode
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
	~CWsAnim();
sl@0
    63
	void RedrawWindowAnimL(const TTime& aTimeNow, MWsGraphicsContext* aGc, const TRegion* aRegion);
sl@0
    64
	void AnimateSpriteAnimL(const TTime& aTimeNow);
sl@0
    65
	void UserDeactivateAnimGc();
sl@0
    66
	static void WindowClosing(CWsAnim *aWsAnim);
sl@0
    67
	static void CloseAnim(CWsAnim *aWsAnim);
sl@0
    68
	TRect BestRect() const;
sl@0
    69
	void FocusChanged(TBool aNewFocusState);
sl@0
    70
	void SetMessage(const RMessagePtr2* aMessage);
sl@0
    71
	TInt CommandReply(TInt aOpcode, TAny* aArgs);
sl@0
    72
	void SessionPanic() const;
sl@0
    73
	void Panic() const;
sl@0
    74
	void Panic(TClientPanic aPanic) const;
sl@0
    75
	inline CWsAnim * Next();
sl@0
    76
	inline CWsClientWindow* ClientWindow() const;
sl@0
    77
	void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
    78
sl@0
    79
private:
sl@0
    80
	CWsAnim(CWsAnimDll *aDll);
sl@0
    81
	void Connect(CWsClientWindow *aWindow);
sl@0
    82
	void Connect(CWsSprite *aSprite);
sl@0
    83
	void ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow);
sl@0
    84
	inline CAnim *Anim() const;
sl@0
    85
	const TRect& Rect() const;
sl@0
    86
	
sl@0
    87
// Functions from MAnimGeneralFunctions
sl@0
    88
	TDateTime SystemTime() const;
sl@0
    89
	TBool FlashStateOn() const;				// Return ETrue if in the on part of the flash cycle
sl@0
    90
sl@0
    91
	const CFbsScreenDevice *ScreenDevice();						// Pointer to screen device
sl@0
    92
	CFbsBitmap *DuplicateBitmapL(TInt aHandle);
sl@0
    93
	CFbsFont *DuplicateFontL(TInt aHandle);
sl@0
    94
	void CloseFont(CFbsFont *);
sl@0
    95
	TAnimSync Sync() const;					// Return the current sync mode
sl@0
    96
	void Animate(TDateTime *aDateTime);		// Trigger a call to the DLL's Animate function
sl@0
    97
	void SetSync(TAnimSync aSyncMode);
sl@0
    98
	void SetInterval(TInt aInterval);		// Set the regular repeat interval, does not affect the current countdown
sl@0
    99
	void SetNextInterval(TInt aInterval);	// Sets the interval to the next Animate, after that it will fall back to the usual rate
sl@0
   100
	const RThread &Client();				// Return a reference to the calling clients thread
sl@0
   101
	void ReplyBuf(const TDesC8 &aDes);
sl@0
   102
	void ReplyBuf(const TDesC16 &aDes);
sl@0
   103
	void GetRawEvents(TBool aGetEvents) const;	// Raw events are passed to CAnim::OfferRawEventL
sl@0
   104
	void PostRawEvent(const TRawEvent &aRawEvent) const;
sl@0
   105
	void PostKeyEvent(const TKeyEvent &aRawEvent) const;
sl@0
   106
	const RMessagePtr2* Message();
sl@0
   107
	TAny* ExtendedInterface(TInt aInterface);
sl@0
   108
	TInt RegisterForNotifications(TUint32 aNotifications);
sl@0
   109
sl@0
   110
// Functions from MAnimGeneralFunctionsWindowExtension
sl@0
   111
	TInt Screens() const;
sl@0
   112
	TInt FocusScreens() const;
sl@0
   113
	void SetFocusScreen(TInt aScreenNo);
sl@0
   114
	TInt WindowGroups(TInt aScreen) const;
sl@0
   115
	TBool WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aWindowGroup) const;
sl@0
   116
	TBool WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aWindowGroup) const;
sl@0
   117
	TInt SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority);
sl@0
   118
	void WindowConfig(TWindowConfig& aWindowConfig) const;	
sl@0
   119
// Functions from MAnimWindowFunctions
sl@0
   120
	void ActivateGc();	// Activate the GC to enable drawing in a command or animate function
sl@0
   121
	void Invalidate(const TRect &aRect);
sl@0
   122
	void Parameters(TWindowInfo &aData);
sl@0
   123
	void VisibleRegion(TRegion& aRegion);
sl@0
   124
 	TSize WindowSize() const;				// Return the window size
sl@0
   125
	TBool IsHidden();
sl@0
   126
	void SetVisible(TBool aState);
sl@0
   127
	void SetRect(const TRect &aRect);		// Sets the rect that this instance wants to draw to.
sl@0
   128
// Functions from MAnimFreeTimerWindowFunctions
sl@0
   129
	void DeactivateGc();					// Deactivate the GC after drawing from our own RunL
sl@0
   130
	void Update();
sl@0
   131
// Functions from MAnimSpriteFunctions
sl@0
   132
	TSpriteMember *GetSpriteMember(TInt aMember) const;	//Returns sprite member data
sl@0
   133
	void UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate);		//redraw of part of a sprite
sl@0
   134
	void Activate(TBool aActive);		// Turn sprite on or off
sl@0
   135
	void SizeChangedL();
sl@0
   136
	void SetPosition(const TPoint &aPos);			//Change the positon of the sprite
sl@0
   137
	TBool SpriteCanBeSeen() const;
sl@0
   138
// Functions from MAnimGeneralFunctionsEventExtension
sl@0
   139
	void PostKeyEvent(const TKeyEvent& aRawEvent,TInt aRepeats) const; //Repeated key events
sl@0
   140
// Functions from MWsWindowTreeNode
sl@0
   141
	MWsWindowTreeNode::TType NodeType() const;
sl@0
   142
	const MWsWindow* Window() const;
sl@0
   143
	const MWsSprite* Sprite() const;
sl@0
   144
	const MWsStandardTextCursor* StandardTextCursor() const;
sl@0
   145
	const MWsWindowGroup* WindowGroup() const;
sl@0
   146
	const MWsWindowTreeNode* ParentNode() const;
sl@0
   147
sl@0
   148
	void ScheduleSelf(const TTimeIntervalMicroSeconds& aFrom);
sl@0
   149
	void AnimateL(const TTime& aTimeNow, TInt& aFrame, TInt64& aAdjustedStart);
sl@0
   150
	void RedrawWindowAnimL(MWsGraphicsContext* aGc, const TRegion* aRegion);
sl@0
   151
	void ReSchedule(const TTime& aTimeNow, const TInt& aFrame, const TInt64& aAdjustedStart);
sl@0
   152
sl@0
   153
private:
sl@0
   154
	CWsClient *iClient;
sl@0
   155
	TTimeIntervalMicroSeconds iInterval;
sl@0
   156
	TAnimSync iAnimSync;
sl@0
   157
	/* Linked list of animated objects attached to a window */
sl@0
   158
	CWsAnim *iNextWin;
sl@0
   159
	union 
sl@0
   160
		{
sl@0
   161
		CWindowAnim* iWindowAnim; 
sl@0
   162
		CSpriteAnim* iSpriteAnim; 
sl@0
   163
		} iAnim;
sl@0
   164
	CWsAnimGc *iAnimGc;
sl@0
   165
	CWsAnimDll *iAnimDll;
sl@0
   166
	CWsClientWindow *iWindow;
sl@0
   167
	TRect iRect;
sl@0
   168
	CWsSprite *iSprite;
sl@0
   169
	const RMessagePtr2* iMessage;
sl@0
   170
	TWindowInfo::TRegionPair* iRedrawRegionPair;
sl@0
   171
	friend class CWsAnimDll;
sl@0
   172
	friend class DllAnimator;
sl@0
   173
	mutable TBool iAnimAddedInHandler;
sl@0
   174
	TTime iStartTime;
sl@0
   175
	TInt iLastFrame;
sl@0
   176
	enum TFlags
sl@0
   177
		{
sl@0
   178
		/** ETrue if this anim accepts advanced pointer events
sl@0
   179
		   (TRawEvents with pointer number, pointer pressure and proximity info) */
sl@0
   180
		EAdvancedPointersEnabled,
sl@0
   181
		EFlashOn,
sl@0
   182
		EWinAnimConstructed,
sl@0
   183
		/** This flag is set when this anim is called in the context of CScreenRedraw::OnAnimation
sl@0
   184
		    i.e. when the screen is in the process of sending a new frame to the display hardware. */
sl@0
   185
		EInRedraw,
sl@0
   186
		};
sl@0
   187
	TBitFlags iBitFlags;
sl@0
   188
	};
sl@0
   189
sl@0
   190
class CAnimFbsFont;
sl@0
   191
sl@0
   192
class CWsAnimGc : public CAnimGc
sl@0
   193
	{
sl@0
   194
public:
sl@0
   195
	CWsAnimGc(CWsAnim& aWsAnim);
sl@0
   196
	~CWsAnimGc();
sl@0
   197
//
sl@0
   198
	void Activate(const TRegion* aRegion, MWsGraphicsContext* aGc);
sl@0
   199
	void Deactivate();
sl@0
   200
	TBool IsActive() const;
sl@0
   201
	void UserActivate();
sl@0
   202
	void UserDeactivate();
sl@0
   203
// From CGraphicsContext
sl@0
   204
	virtual CGraphicsDevice* Device() const;
sl@0
   205
	virtual void SetDrawMode(TDrawMode aDrawingMode);
sl@0
   206
	virtual void SetClippingRect(const TRect& aRect);
sl@0
   207
	virtual void CancelClippingRect();
sl@0
   208
	virtual void CancelClippingRegion();
sl@0
   209
	virtual void UseFont(const CFont *aFont);
sl@0
   210
	virtual void DiscardFont();
sl@0
   211
	virtual void SetUnderlineStyle(TFontUnderline aUnderlineStyle);
sl@0
   212
	virtual void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle);
sl@0
   213
	virtual void SetWordJustification(TInt aExcessWidth,TInt aNumGaps);
sl@0
   214
	virtual void SetCharJustification(TInt aExcessWidth,TInt aNumChars);
sl@0
   215
	virtual void SetPenColor(const TRgb &aColor);
sl@0
   216
	virtual void SetPenStyle(TPenStyle aPenStyle);
sl@0
   217
	virtual void SetPenSize(const TSize& aSize);
sl@0
   218
	virtual void SetBrushColor(const TRgb &aColor);
sl@0
   219
	virtual void SetBrushStyle(TBrushStyle aBrushStyle);
sl@0
   220
	virtual void SetBrushOrigin(const TPoint &aOrigin);
sl@0
   221
	virtual void UseBrushPattern(const CFbsBitmap *aBitmap);
sl@0
   222
	virtual void DiscardBrushPattern();
sl@0
   223
	virtual void DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
sl@0
   224
	virtual void DrawLine(const TPoint &aPoint1,const TPoint &aPoint2);
sl@0
   225
	virtual void DrawLineTo(const TPoint &aPoint);
sl@0
   226
	virtual void DrawLineBy(const TPoint &aPoint);
sl@0
   227
	virtual void DrawPolyLine(const CArrayFix<TPoint> *aPointList);
sl@0
   228
	virtual void DrawPolyLine(const TPoint* aPointList,TInt aNumPoints);
sl@0
   229
	virtual void DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
sl@0
   230
	virtual void DrawEllipse(const TRect &aRect);
sl@0
   231
	virtual void DrawRect(const TRect &aRect);
sl@0
   232
	virtual void DrawRoundRect(const TRect &aRect,const TSize &aCornerSize);
sl@0
   233
	virtual void Clear(const TRect &aRect);
sl@0
   234
	virtual void Clear();
sl@0
   235
	virtual TInt DrawPolygon(const CArrayFix<TPoint> *aPointList,TFillRule aFillRule);
sl@0
   236
	virtual TInt DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule=EAlternate);
sl@0
   237
	virtual void DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aSource);
sl@0
   238
	virtual void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aSource);
sl@0
   239
	virtual void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aSource, const TRect &aSourceRect);
sl@0
   240
	virtual void DrawBitmapMasked(const TRect &aDestRect, const CFbsBitmap *aBitmap, const TRect &aSrcRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask);
sl@0
   241
	virtual void DrawText(const TDesC &aString,const TPoint &aPosition);
sl@0
   242
	virtual void DrawText(const TDesC &aString,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz=ELeft,TInt aLeftMrg=0);
sl@0
   243
	virtual void MoveTo(const TPoint &aPoint);
sl@0
   244
	virtual void MoveBy(const TPoint &aPoint);
sl@0
   245
	virtual void Plot(const TPoint &aPoint);
sl@0
   246
	virtual void SetOrigin(const TPoint &aPoint);
sl@0
   247
	virtual void BitBlt(const TPoint &,const CFbsBitmap *aBitmap);
sl@0
   248
	virtual void BitBlt(const TPoint &,const CFbsBitmap *aBitmap,const TRect &);
sl@0
   249
	virtual void BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask);
sl@0
   250
	virtual void CopyRect(const TPoint& aOffset,const TRect& aRect);
sl@0
   251
	virtual void Reset();
sl@0
   252
// Extra command defined in CBitmapContext
sl@0
   253
	virtual void SetFaded(TBool aFaded);
sl@0
   254
	virtual void SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap);
sl@0
   255
sl@0
   256
	virtual TInt SetClippingRegion(const TRegion &aRegion);	
sl@0
   257
	virtual TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp,	const TPoint& aAlphaPt);	
sl@0
   258
	virtual void MapColors(const TRect &aRect,const TRgb *aColors,TInt aNumPairs,TBool aMapForwards);
sl@0
   259
	virtual void DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp);
sl@0
   260
	virtual void DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0);
sl@0
   261
	
sl@0
   262
private:
sl@0
   263
	void CloseCurrentFont();
sl@0
   264
	virtual void DrawBitmapMasked(const TRect& /*aDestRect*/,const CWsBitmap* /*aBitmap*/,const TRect& /*aSrcRect*/,const CWsBitmap* /*aMaskBitmap*/, TBool /*aInvertMask*/);
sl@0
   265
	TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp,	const TRect& aSrcRect, const CWsBitmap* aAlphaBmp,	const TPoint& aAlphaPt);
sl@0
   266
private:
sl@0
   267
	CWsAnim& iOwningWsAnim;
sl@0
   268
	MWsGraphicsContext* iGc;
sl@0
   269
	TBool iUserActive;
sl@0
   270
	const TRegion *iBaseRegion;	// Base clipping region provided on activation
sl@0
   271
	TBool iUseDrawingRegion;	// Indicates that the user has set a drawing region
sl@0
   272
	RWsRegion iDrawingRegion;	// Drawing region provided by the user (in screen coordinates)
sl@0
   273
	TRect iClippingRect;		// Clipping rectangle (in screen coordinates)
sl@0
   274
	CAnimFbsFont *iFont;
sl@0
   275
	};
sl@0
   276
sl@0
   277
//
sl@0
   278
// inlines			//
sl@0
   279
//
sl@0
   280
sl@0
   281
inline CAnim *CWsAnim::Anim() const
sl@0
   282
	{
sl@0
   283
	if(iWindow)
sl@0
   284
		return iAnim.iWindowAnim;
sl@0
   285
	else
sl@0
   286
		return iAnim.iSpriteAnim;
sl@0
   287
	}
sl@0
   288
inline TInt CWsAnimDll::AnimObjectHandle(CWsAnim *aAnimObject) const
sl@0
   289
	{return(iInstanceIndex->At(aAnimObject));}
sl@0
   290
inline CWsAnim* CWsAnimDll::AnimObjectL(TInt aAnimHandle) const
sl@0
   291
	{return STATIC_CAST(CWsAnim*,iInstanceIndex->AtL(aAnimHandle));}
sl@0
   292
inline CWsAnim* CWsAnim::Next()
sl@0
   293
	{return iNextWin;}
sl@0
   294
inline CWsClientWindow* CWsAnim::ClientWindow() const
sl@0
   295
	{return iWindow;}
sl@0
   296
#endif