1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/stdgraphic/BITMAPANIMATIONGRAPHIC.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,176 @@
1.4 +// Copyright (c) 1995-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 +//
1.18 +
1.19 +#include "W32STDGRAPHIC.H"
1.20 +#include <s32mem.h>
1.21 +
1.22 +LOCAL_C const TUid KStdBitmapAnimationType = {0x10281AAE};
1.23 +
1.24 +// CWsGraphicBitmapAnimation::CFrame \\\\\\\\\\\\\\\\\\\\\\\\\\
1.25 +
1.26 +EXPORT_C CWsGraphicBitmapAnimation::CFrame* CWsGraphicBitmapAnimation::CFrame::NewL()
1.27 + {
1.28 + CFrame* self = new(ELeave) CFrame;
1.29 + return self;
1.30 + }
1.31 +
1.32 +CWsGraphicBitmapAnimation::CFrame::CFrame()
1.33 + {
1.34 + }
1.35 +
1.36 +EXPORT_C CWsGraphicBitmapAnimation::CFrame::~CFrame()
1.37 + {
1.38 + delete iBitmap;
1.39 + delete iMask;
1.40 + }
1.41 +
1.42 +// public getters/setters
1.43 +
1.44 +EXPORT_C TFrameInfo CWsGraphicBitmapAnimation::CFrame::FrameInfo() const
1.45 + {
1.46 + return iFrameInfo;
1.47 + }
1.48 +
1.49 +EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetFrameInfo(const TFrameInfo& aFrameInfo)
1.50 + {
1.51 + iFrameInfo = aFrameInfo;
1.52 + }
1.53 +
1.54 +EXPORT_C const CFbsBitmap* CWsGraphicBitmapAnimation::CFrame::Bitmap() const
1.55 + {
1.56 + return iBitmap;
1.57 + }
1.58 +
1.59 +EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetBitmap(CFbsBitmap* aBitmap)
1.60 + {
1.61 + if(iBitmap != aBitmap)
1.62 + {
1.63 + delete iBitmap;
1.64 + iBitmap = aBitmap;
1.65 + }
1.66 + }
1.67 +
1.68 +EXPORT_C const CFbsBitmap* CWsGraphicBitmapAnimation::CFrame::Mask() const
1.69 + {
1.70 + return iMask;
1.71 + }
1.72 +
1.73 +EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetMask(CFbsBitmap* aMask)
1.74 + {
1.75 + if(iMask != aMask)
1.76 + {
1.77 + delete iMask;
1.78 + iMask = aMask;
1.79 + }
1.80 + }
1.81 +
1.82 +// CWsGraphicBitmapAnimation \\\\\\\\\\\\\\\\\\\\\\\\\\
1.83 +
1.84 +CWsGraphicBitmapAnimation::CWsGraphicBitmapAnimation()
1.85 + {
1.86 + }
1.87 +
1.88 +EXPORT_C CWsGraphicBitmapAnimation::~CWsGraphicBitmapAnimation()
1.89 + {
1.90 + }
1.91 +
1.92 +EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(const TFrames& aFrames)
1.93 + {
1.94 + CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation;
1.95 + CleanupStack::PushL(self);
1.96 + HBufC8* data = PackLC(aFrames);
1.97 + self->BaseConstructL(KStdBitmapAnimationType,*data);
1.98 + CleanupStack::PopAndDestroy(data);
1.99 + CleanupStack::Pop(self);
1.100 + return self;
1.101 + }
1.102 +
1.103 +EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(TUid aUid,const TFrames& aFrames)
1.104 + {
1.105 + CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation;
1.106 + CleanupStack::PushL(self);
1.107 + HBufC8* data = PackLC(aFrames);
1.108 + self->BaseConstructL(aUid,KStdBitmapAnimationType,*data);
1.109 + CleanupStack::PopAndDestroy(data);
1.110 + CleanupStack::Pop(self);
1.111 + return self;
1.112 + }
1.113 +
1.114 +EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(const TWsGraphicId& aReplace,const TFrames& aFrames)
1.115 + {
1.116 + CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation;
1.117 + CleanupStack::PushL(self);
1.118 + HBufC8* data = PackLC(aFrames);
1.119 + self->BaseConstructL(aReplace,KStdBitmapAnimationType,*data);
1.120 + CleanupStack::PopAndDestroy(data);
1.121 + CleanupStack::Pop(self);
1.122 + return self;
1.123 + }
1.124 +
1.125 +// protected virtuals from CWsGraphic promoted to public
1.126 +
1.127 +EXPORT_C TInt CWsGraphicBitmapAnimation::ShareGlobally()
1.128 + {
1.129 + return CWsGraphic::ShareGlobally();
1.130 + }
1.131 +
1.132 +EXPORT_C TInt CWsGraphicBitmapAnimation::UnShareGlobally()
1.133 + {
1.134 + return CWsGraphic::UnShareGlobally();
1.135 + }
1.136 +
1.137 +EXPORT_C TInt CWsGraphicBitmapAnimation::Share(TSecureId aClientId)
1.138 + {
1.139 + return CWsGraphic::Share(aClientId);
1.140 + }
1.141 +
1.142 +EXPORT_C TInt CWsGraphicBitmapAnimation::UnShare(TSecureId aClientId)
1.143 + {
1.144 + return CWsGraphic::UnShare(aClientId);
1.145 + }
1.146 +
1.147 +void CWsGraphicBitmapAnimation::HandleMessage(const TDesC8& /*aData*/)
1.148 + {
1.149 + }
1.150 +
1.151 +void CWsGraphicBitmapAnimation::OnReplace()
1.152 + {
1.153 + }
1.154 +
1.155 +HBufC8* CWsGraphicBitmapAnimation::PackLC(const TFrames& aFrames)
1.156 + {
1.157 + __ASSERT_COMPILE(sizeof(TInt) == sizeof(TInt32));
1.158 + const TInt count = aFrames.Count();
1.159 + HBufC8* buf = HBufC8::NewL(sizeof(TInt) + ((sizeof(TFrameInfo)+sizeof(TInt)+sizeof(TInt))*count));
1.160 + CleanupStack::PushL(buf);
1.161 + TPtr8 des = buf->Des();
1.162 + RDesWriteStream out(des);
1.163 + out.PushL();
1.164 + out.WriteInt32L(count);
1.165 + for(TInt i=0; i<count; i++)
1.166 + {
1.167 + const CFrame* frame = aFrames[i];
1.168 + if(!frame)
1.169 + {
1.170 + User::Leave(KErrArgument);
1.171 + }
1.172 + out.WriteL(reinterpret_cast<const TUint8*>(&(frame->iFrameInfo)),sizeof(TFrameInfo));
1.173 + out.WriteInt32L(frame->Bitmap()? frame->Bitmap()->Handle(): 0);
1.174 + out.WriteInt32L(frame->Mask()? frame->Mask()->Handle(): 0);
1.175 + }
1.176 + out.Pop();
1.177 + out.CommitL();
1.178 + return buf;
1.179 + }