sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "W32STDGRAPHIC.H" sl@0: #include sl@0: sl@0: LOCAL_C const TUid KStdBitmapAnimationType = {0x10281AAE}; sl@0: sl@0: // CWsGraphicBitmapAnimation::CFrame \\\\\\\\\\\\\\\\\\\\\\\\\\ sl@0: sl@0: EXPORT_C CWsGraphicBitmapAnimation::CFrame* CWsGraphicBitmapAnimation::CFrame::NewL() sl@0: { sl@0: CFrame* self = new(ELeave) CFrame; sl@0: return self; sl@0: } sl@0: sl@0: CWsGraphicBitmapAnimation::CFrame::CFrame() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmapAnimation::CFrame::~CFrame() sl@0: { sl@0: delete iBitmap; sl@0: delete iMask; sl@0: } sl@0: sl@0: // public getters/setters sl@0: sl@0: EXPORT_C TFrameInfo CWsGraphicBitmapAnimation::CFrame::FrameInfo() const sl@0: { sl@0: return iFrameInfo; sl@0: } sl@0: sl@0: EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetFrameInfo(const TFrameInfo& aFrameInfo) sl@0: { sl@0: iFrameInfo = aFrameInfo; sl@0: } sl@0: sl@0: EXPORT_C const CFbsBitmap* CWsGraphicBitmapAnimation::CFrame::Bitmap() const sl@0: { sl@0: return iBitmap; sl@0: } sl@0: sl@0: EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetBitmap(CFbsBitmap* aBitmap) sl@0: { sl@0: if(iBitmap != aBitmap) sl@0: { sl@0: delete iBitmap; sl@0: iBitmap = aBitmap; sl@0: } sl@0: } sl@0: sl@0: EXPORT_C const CFbsBitmap* CWsGraphicBitmapAnimation::CFrame::Mask() const sl@0: { sl@0: return iMask; sl@0: } sl@0: sl@0: EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetMask(CFbsBitmap* aMask) sl@0: { sl@0: if(iMask != aMask) sl@0: { sl@0: delete iMask; sl@0: iMask = aMask; sl@0: } sl@0: } sl@0: sl@0: // CWsGraphicBitmapAnimation \\\\\\\\\\\\\\\\\\\\\\\\\\ sl@0: sl@0: CWsGraphicBitmapAnimation::CWsGraphicBitmapAnimation() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmapAnimation::~CWsGraphicBitmapAnimation() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(const TFrames& aFrames) sl@0: { sl@0: CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation; sl@0: CleanupStack::PushL(self); sl@0: HBufC8* data = PackLC(aFrames); sl@0: self->BaseConstructL(KStdBitmapAnimationType,*data); sl@0: CleanupStack::PopAndDestroy(data); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(TUid aUid,const TFrames& aFrames) sl@0: { sl@0: CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation; sl@0: CleanupStack::PushL(self); sl@0: HBufC8* data = PackLC(aFrames); sl@0: self->BaseConstructL(aUid,KStdBitmapAnimationType,*data); sl@0: CleanupStack::PopAndDestroy(data); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(const TWsGraphicId& aReplace,const TFrames& aFrames) sl@0: { sl@0: CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation; sl@0: CleanupStack::PushL(self); sl@0: HBufC8* data = PackLC(aFrames); sl@0: self->BaseConstructL(aReplace,KStdBitmapAnimationType,*data); sl@0: CleanupStack::PopAndDestroy(data); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // protected virtuals from CWsGraphic promoted to public sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmapAnimation::ShareGlobally() sl@0: { sl@0: return CWsGraphic::ShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmapAnimation::UnShareGlobally() sl@0: { sl@0: return CWsGraphic::UnShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmapAnimation::Share(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::Share(aClientId); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmapAnimation::UnShare(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::UnShare(aClientId); sl@0: } sl@0: sl@0: void CWsGraphicBitmapAnimation::HandleMessage(const TDesC8& /*aData*/) sl@0: { sl@0: } sl@0: sl@0: void CWsGraphicBitmapAnimation::OnReplace() sl@0: { sl@0: } sl@0: sl@0: HBufC8* CWsGraphicBitmapAnimation::PackLC(const TFrames& aFrames) sl@0: { sl@0: __ASSERT_COMPILE(sizeof(TInt) == sizeof(TInt32)); sl@0: const TInt count = aFrames.Count(); sl@0: HBufC8* buf = HBufC8::NewL(sizeof(TInt) + ((sizeof(TFrameInfo)+sizeof(TInt)+sizeof(TInt))*count)); sl@0: CleanupStack::PushL(buf); sl@0: TPtr8 des = buf->Des(); sl@0: RDesWriteStream out(des); sl@0: out.PushL(); sl@0: out.WriteInt32L(count); sl@0: for(TInt i=0; i(&(frame->iFrameInfo)),sizeof(TFrameInfo)); sl@0: out.WriteInt32L(frame->Bitmap()? frame->Bitmap()->Handle(): 0); sl@0: out.WriteInt32L(frame->Mask()? frame->Mask()->Handle(): 0); sl@0: } sl@0: out.Pop(); sl@0: out.CommitL(); sl@0: return buf; sl@0: }