1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/ANIM.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,262 @@
1.4 +// Copyright (c) 1999-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 +// Definition of classes related to Anim DLL's
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __ANIM_H__
1.22 +#define __ANIM_H__
1.23 +
1.24 +#include <e32std.h>
1.25 +#include <w32adll.h>
1.26 +#include "server.h"
1.27 +#include "sprite.h"
1.28 +
1.29 +class CWsAnimDll : public CWsObject
1.30 + {
1.31 +public:
1.32 + static void InitStaticsL();
1.33 + static void DeleteStatics();
1.34 +public:
1.35 + CWsAnimDll(CWsClient *owner);
1.36 + ~CWsAnimDll();
1.37 + TInt CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow);
1.38 + void LoadL(const TDesC &aDllName);
1.39 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.40 + void Remove(TInt aHandle);
1.41 + inline TInt AnimObjectHandle(CWsAnim *aAnimObject) const;
1.42 + inline CWsAnim* AnimObjectL(TInt aAnimHandle) const;
1.43 +
1.44 +private:
1.45 + TInt doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow);
1.46 +private:
1.47 + static CObjectConIx *AnimObjectConIx;
1.48 +private:
1.49 + CObjectCon *iInstanceCon;
1.50 + CObjectIx *iInstanceIndex;
1.51 + CAnimDll *iAnimDll;
1.52 + RLibrary iAnimLib;
1.53 +
1.54 +public:
1.55 + TSglQueLink iQue;
1.56 + };
1.57 +
1.58 +class CWsAnimGc;
1.59 +
1.60 +class CWsAnim : public CObject, public MAnimGeneralFunctions, public MAnimGeneralFunctionsWindowExtension,
1.61 + public MAnimFreeTimerWindowFunctions, public MAnimSpriteFunctions, public MAnimGeneralFunctionsEventExtension
1.62 + {
1.63 +public:
1.64 + static void InitStaticsL();
1.65 + static void DeleteStatics();
1.66 +public:
1.67 + CWsAnim(CWsAnimDll *aDll);
1.68 + ~CWsAnim();
1.69 + void Connect(CWsClientWindow *aWindow);
1.70 + void Connect(CWsSprite *aSprite);
1.71 + void ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow);
1.72 + void Redraw(CFbsBitGc * aGc, const TRegion *aRegion);
1.73 + static void UserDeactivateAnimGc();
1.74 + inline CAnim *Anim() const;
1.75 + static void WindowClosing(CWsAnim *aWsAnim);
1.76 + static void CloseAnim(CWsAnim *aWsAnim);
1.77 + const TRect& Rect() const;
1.78 + TRect BestRect() const;
1.79 + void FocusChanged(TBool aNewFocusState);
1.80 + void SetMessage(const RMessagePtr2* aMessage);
1.81 + TInt CommandReply(TInt aOpcode, TAny* aArgs);
1.82 +// Functions from MAnimGeneralFunctions
1.83 + TDateTime SystemTime() const;
1.84 + TBool FlashStateOn() const; // Return ETrue if in the on part of the flash cycle
1.85 + void Panic() const;
1.86 + void Panic(TClientPanic aPanic) const;
1.87 + const CFbsScreenDevice *ScreenDevice(); // Pointer to screen device
1.88 + CFbsBitmap *DuplicateBitmapL(TInt aHandle);
1.89 + CFbsFont *DuplicateFontL(TInt aHandle);
1.90 + void CloseFont(CFbsFont *);
1.91 + TAnimSync Sync() const; // Return the current sync mode
1.92 + void Animate(TDateTime *aDateTime); // Trigger a call to the DLL's Animate function
1.93 + void SetSync(TAnimSync aSyncMode);
1.94 + void SetInterval(TInt aInterval); // Set the regular repeat interval, does not affect the current countdown
1.95 + void SetNextInterval(TInt aInterval); // Sets the interval to the next Animate, after that it will fall back to the usual rate
1.96 + const RThread &Client(); // Return a reference to the calling clients thread
1.97 + void ReplyBuf(const TDesC8 &aDes);
1.98 + void ReplyBuf(const TDesC16 &aDes);
1.99 + void GetRawEvents(TBool aGetEvents) const; // Raw events are passed to CAnim::OfferRawEventL
1.100 + void PostRawEvent(const TRawEvent &aRawEvent) const;
1.101 + void PostKeyEvent(const TKeyEvent &aRawEvent) const;
1.102 + const RMessagePtr2* Message();
1.103 + TAny* ExtendedInterface(TInt aInterface);
1.104 + TInt RegisterForNotifications(TUint32 aNotifications);
1.105 +
1.106 +// Functions from MAnimGeneralFunctionsWindowExtension
1.107 + TInt Screens() const;
1.108 + TInt FocusScreens() const;
1.109 + void SetFocusScreen(TInt aScreenNo);
1.110 + TInt WindowGroups(TInt aScreen) const;
1.111 + TBool WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aWindowGroup) const;
1.112 + TBool WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aWindowGroup) const;
1.113 + TInt SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority);
1.114 + void WindowConfig(TWindowConfig& aWindowConfig) const;
1.115 +// Functions from MAnimWindowFunctions
1.116 + void ActivateGc(); // Activate the GC to enable drawing in a command or animate function
1.117 + void Invalidate(const TRect &aRect);
1.118 + void Parameters(TWindowInfo &aData);
1.119 + void VisibleRegion(TRegion& aRegion);
1.120 + TSize WindowSize() const; // Return the window size
1.121 + TBool IsHidden();
1.122 + void SetVisible(TBool aState);
1.123 + void SetRect(const TRect &aRect); // Sets the rect that this instance wants to draw to.
1.124 +// Functions from MAnimFreeTimerWindowFunctions
1.125 + void DeactivateGc(); // Deactivate the GC after drawing from our own RunL
1.126 + void Update();
1.127 +// Functions from MAnimSpriteFunctions
1.128 + TSpriteMember *GetSpriteMember(TInt aMember) const; //Returns sprite member data
1.129 + void UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate); //redraw of part of a sprite
1.130 + void Activate(TBool aActive); // Turn sprite on or off
1.131 + void SizeChangedL();
1.132 + void SetPosition(const TPoint &aPos); //Change the positon of the sprite
1.133 + TBool SpriteCanBeSeen() const;
1.134 +// Functions from MAnimGeneralFunctionsEventExtension
1.135 + void PostKeyEvent(const TKeyEvent& aRawEvent,TInt aRepeats) const; //Repeated key events
1.136 +public:
1.137 + inline CWsAnim * Next();
1.138 +private:
1.139 + inline CWindowAnim* WindowAnim() {return STATIC_CAST(CWindowAnim*,iAnim);}
1.140 +private:
1.141 + static CWsAnimGc *WsAnimGc;
1.142 +private:
1.143 + CWsClient *iClient;
1.144 + TTimeIntervalMicroSeconds iInterval;
1.145 + TAnimSync iAnimSync;
1.146 + CWsAnim *iNextWin; // Linked list of animated objects attached to a window
1.147 + CAnim *iAnim;
1.148 + CWsAnimDll *iAnimDll;
1.149 + CWsClientWindow *iWindow;
1.150 + TRect iRect;
1.151 + CWsSprite *iSprite;
1.152 + const RMessagePtr2* iMessage;
1.153 + TWindowInfo::TRegionPair* iRedrawRegionPair;
1.154 + friend class CWsAnimDll;
1.155 + friend class DllAnimator;
1.156 + mutable TBool iAnimAddedInHandler;
1.157 + TTime iStartTime;
1.158 + TInt iLastFrame;
1.159 + TBool iFlashOn;
1.160 + };
1.161 +
1.162 +class CAnimFbsFont;
1.163 +
1.164 +class CWsAnimGc : public CAnimGc
1.165 + {
1.166 + friend class CWsAnim;
1.167 +public:
1.168 + CWsAnimGc();
1.169 +//
1.170 + void Activate(CWsClientWindow *aWindow, CWsAnim *aWsAnim, const TRegion *aRegion, CFbsBitGc * aGc);
1.171 + void Deactivate();
1.172 + TBool IsActive() const;
1.173 + void UserActivate(CWsClientWindow *aWindow, CWsAnim *aWsAnim);
1.174 + void UserDeactivate();
1.175 + void AnimDeleted(CWsAnim *aWsAnim);
1.176 +// From CGraphicsContext
1.177 + virtual CGraphicsDevice* Device() const;
1.178 + virtual void SetDrawMode(TDrawMode aDrawingMode);
1.179 + virtual void SetClippingRect(const TRect& aRect);
1.180 + virtual void CancelClippingRect();
1.181 + virtual void CancelClippingRegion();
1.182 + virtual void UseFont(const CFont *aFont);
1.183 + virtual void DiscardFont();
1.184 + virtual void SetUnderlineStyle(TFontUnderline aUnderlineStyle);
1.185 + virtual void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle);
1.186 + virtual void SetWordJustification(TInt aExcessWidth,TInt aNumGaps);
1.187 + virtual void SetCharJustification(TInt aExcessWidth,TInt aNumChars);
1.188 + virtual void SetPenColor(const TRgb &aColor);
1.189 + virtual void SetPenStyle(TPenStyle aPenStyle);
1.190 + virtual void SetPenSize(const TSize& aSize);
1.191 + virtual void SetBrushColor(const TRgb &aColor);
1.192 + virtual void SetBrushStyle(TBrushStyle aBrushStyle);
1.193 + virtual void SetBrushOrigin(const TPoint &aOrigin);
1.194 + virtual void UseBrushPattern(const CFbsBitmap *aBitmap);
1.195 + virtual void DiscardBrushPattern();
1.196 + virtual void DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
1.197 + virtual void DrawLine(const TPoint &aPoint1,const TPoint &aPoint2);
1.198 + virtual void DrawLineTo(const TPoint &aPoint);
1.199 + virtual void DrawLineBy(const TPoint &aPoint);
1.200 + virtual void DrawPolyLine(const CArrayFix<TPoint> *aPointList);
1.201 + virtual void DrawPolyLine(const TPoint* aPointList,TInt aNumPoints);
1.202 + virtual void DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
1.203 + virtual void DrawEllipse(const TRect &aRect);
1.204 + virtual void DrawRect(const TRect &aRect);
1.205 + virtual void DrawRoundRect(const TRect &aRect,const TSize &aCornerSize);
1.206 + virtual void Clear(const TRect &aRect);
1.207 + virtual void Clear();
1.208 + virtual TInt DrawPolygon(const CArrayFix<TPoint> *aPointList,TFillRule aFillRule);
1.209 + virtual TInt DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule=EAlternate);
1.210 + virtual void DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aSource);
1.211 + virtual void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aSource);
1.212 + virtual void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aSource, const TRect &aSourceRect);
1.213 + virtual void DrawBitmapMasked(const TRect &aDestRect, const CFbsBitmap *aBitmap, const TRect &aSrcRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask);
1.214 + virtual void DrawText(const TDesC &aString,const TPoint &aPosition);
1.215 + virtual void DrawText(const TDesC &aString,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz=ELeft,TInt aLeftMrg=0);
1.216 + virtual void MoveTo(const TPoint &aPoint);
1.217 + virtual void MoveBy(const TPoint &aPoint);
1.218 + virtual void Plot(const TPoint &aPoint);
1.219 + virtual void SetOrigin(const TPoint &aPoint);
1.220 + virtual void BitBlt(const TPoint &,const CFbsBitmap *aBitmap);
1.221 + virtual void BitBlt(const TPoint &,const CFbsBitmap *aBitmap,const TRect &);
1.222 + virtual void BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask);
1.223 + virtual void CopyRect(const TPoint& aOffset,const TRect& aRect);
1.224 + virtual void Reset();
1.225 +// Extra command defined in CBitmapContext
1.226 + virtual void SetFaded(TBool aFaded);
1.227 + virtual void SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap);
1.228 +
1.229 + virtual TInt SetClippingRegion(const TRegion &aRegion);
1.230 + virtual TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt);
1.231 + virtual void MapColors(const TRect &aRect,const TRgb *aColors,TInt aNumPairs,TBool aMapForwards);
1.232 + virtual void DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp);
1.233 + virtual void DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0);
1.234 +
1.235 +private:
1.236 + void SetDrawingRegions(const TRegion *aRegion);
1.237 + void CloseCurrentFont();
1.238 + virtual void DrawBitmapMasked(const TRect& /*aDestRect*/,const CWsBitmap* /*aBitmap*/,const TRect& /*aSrcRect*/,const CWsBitmap* /*aMaskBitmap*/, TBool /*aInvertMask*/);
1.239 + TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt);
1.240 +private:
1.241 + CFbsBitGc* iGc;
1.242 + TBool iUserActive;
1.243 + const TRegion *iBaseRegion; // Pointer to base clipping region
1.244 + TBool iUseDrawingRegion; // If ETrue use iDrawingRegion instead of iBaseRegion
1.245 + RWsRegion iDrawingRegion; // Intersection of iBaseRegion and extra clipping
1.246 + CWsClientWindow *iWin;
1.247 + RWsRegion iAnimateRegion;
1.248 + CWsAnim *iOwningWsAnim;
1.249 + TRect iClippingRect;
1.250 + CAnimFbsFont *iFont;
1.251 + };
1.252 +
1.253 +//
1.254 +// inlines //
1.255 +//
1.256 +
1.257 +inline CAnim *CWsAnim::Anim() const
1.258 + {return(iAnim);}
1.259 +inline TInt CWsAnimDll::AnimObjectHandle(CWsAnim *aAnimObject) const
1.260 + {return(iInstanceIndex->At(aAnimObject));}
1.261 +inline CWsAnim* CWsAnimDll::AnimObjectL(TInt aAnimHandle) const
1.262 + {return STATIC_CAST(CWsAnim*,iInstanceIndex->AtL(aAnimHandle));}
1.263 +inline CWsAnim* CWsAnim::Next()
1.264 + {return iNextWin;}
1.265 +#endif