os/graphics/windowing/windowserver/stdgraphic/BITMAPANIMATIONGRAPHIC.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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
//
sl@0
    15
sl@0
    16
#include "W32STDGRAPHIC.H"
sl@0
    17
#include <s32mem.h>
sl@0
    18
sl@0
    19
LOCAL_C const TUid KStdBitmapAnimationType = {0x10281AAE};
sl@0
    20
sl@0
    21
// CWsGraphicBitmapAnimation::CFrame  \\\\\\\\\\\\\\\\\\\\\\\\\\
sl@0
    22
sl@0
    23
EXPORT_C CWsGraphicBitmapAnimation::CFrame* CWsGraphicBitmapAnimation::CFrame::NewL()
sl@0
    24
	{
sl@0
    25
	CFrame* self = new(ELeave) CFrame;
sl@0
    26
	return self;
sl@0
    27
	}
sl@0
    28
sl@0
    29
CWsGraphicBitmapAnimation::CFrame::CFrame()
sl@0
    30
	{
sl@0
    31
	}
sl@0
    32
sl@0
    33
EXPORT_C CWsGraphicBitmapAnimation::CFrame::~CFrame()
sl@0
    34
	{
sl@0
    35
	delete iBitmap;
sl@0
    36
	delete iMask;
sl@0
    37
	}
sl@0
    38
sl@0
    39
// public getters/setters
sl@0
    40
sl@0
    41
EXPORT_C TFrameInfo CWsGraphicBitmapAnimation::CFrame::FrameInfo() const
sl@0
    42
	{
sl@0
    43
	return iFrameInfo;
sl@0
    44
	}
sl@0
    45
sl@0
    46
EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetFrameInfo(const TFrameInfo& aFrameInfo)
sl@0
    47
	{
sl@0
    48
	iFrameInfo = aFrameInfo;
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C const CFbsBitmap* CWsGraphicBitmapAnimation::CFrame::Bitmap() const
sl@0
    52
	{
sl@0
    53
	return iBitmap;
sl@0
    54
	}
sl@0
    55
sl@0
    56
EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetBitmap(CFbsBitmap* aBitmap)
sl@0
    57
	{
sl@0
    58
	if(iBitmap != aBitmap)
sl@0
    59
		{
sl@0
    60
		delete iBitmap;
sl@0
    61
		iBitmap = aBitmap;
sl@0
    62
		}
sl@0
    63
	}
sl@0
    64
sl@0
    65
EXPORT_C const CFbsBitmap* CWsGraphicBitmapAnimation::CFrame::Mask() const
sl@0
    66
	{
sl@0
    67
	return iMask;
sl@0
    68
	}
sl@0
    69
sl@0
    70
EXPORT_C void CWsGraphicBitmapAnimation::CFrame::SetMask(CFbsBitmap* aMask)
sl@0
    71
	{
sl@0
    72
	if(iMask != aMask)
sl@0
    73
		{
sl@0
    74
		delete iMask;
sl@0
    75
		iMask = aMask;
sl@0
    76
		}
sl@0
    77
	}
sl@0
    78
sl@0
    79
// CWsGraphicBitmapAnimation  \\\\\\\\\\\\\\\\\\\\\\\\\\
sl@0
    80
sl@0
    81
CWsGraphicBitmapAnimation::CWsGraphicBitmapAnimation()
sl@0
    82
	{
sl@0
    83
	}
sl@0
    84
sl@0
    85
EXPORT_C CWsGraphicBitmapAnimation::~CWsGraphicBitmapAnimation()
sl@0
    86
	{
sl@0
    87
	}
sl@0
    88
sl@0
    89
EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(const TFrames& aFrames)
sl@0
    90
	{
sl@0
    91
	CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation;
sl@0
    92
	CleanupStack::PushL(self);
sl@0
    93
	HBufC8* data = PackLC(aFrames);
sl@0
    94
	self->BaseConstructL(KStdBitmapAnimationType,*data);
sl@0
    95
	CleanupStack::PopAndDestroy(data);
sl@0
    96
	CleanupStack::Pop(self);
sl@0
    97
	return self;
sl@0
    98
	}
sl@0
    99
sl@0
   100
EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(TUid aUid,const TFrames& aFrames)
sl@0
   101
	{
sl@0
   102
	CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation;
sl@0
   103
	CleanupStack::PushL(self);
sl@0
   104
	HBufC8* data = PackLC(aFrames);
sl@0
   105
	self->BaseConstructL(aUid,KStdBitmapAnimationType,*data);
sl@0
   106
	CleanupStack::PopAndDestroy(data);	
sl@0
   107
	CleanupStack::Pop(self);
sl@0
   108
	return self;
sl@0
   109
	}
sl@0
   110
sl@0
   111
EXPORT_C CWsGraphicBitmapAnimation* CWsGraphicBitmapAnimation::NewL(const TWsGraphicId& aReplace,const TFrames& aFrames)
sl@0
   112
	{
sl@0
   113
	CWsGraphicBitmapAnimation* self = new(ELeave) CWsGraphicBitmapAnimation;
sl@0
   114
	CleanupStack::PushL(self);
sl@0
   115
	HBufC8* data = PackLC(aFrames);
sl@0
   116
	self->BaseConstructL(aReplace,KStdBitmapAnimationType,*data);
sl@0
   117
	CleanupStack::PopAndDestroy(data);	
sl@0
   118
	CleanupStack::Pop(self);
sl@0
   119
	return self;
sl@0
   120
	}
sl@0
   121
sl@0
   122
// protected virtuals from CWsGraphic promoted to public
sl@0
   123
sl@0
   124
EXPORT_C TInt CWsGraphicBitmapAnimation::ShareGlobally()
sl@0
   125
	{
sl@0
   126
	return CWsGraphic::ShareGlobally();
sl@0
   127
	}
sl@0
   128
sl@0
   129
EXPORT_C TInt CWsGraphicBitmapAnimation::UnShareGlobally()
sl@0
   130
	{
sl@0
   131
	return CWsGraphic::UnShareGlobally();
sl@0
   132
	}
sl@0
   133
sl@0
   134
EXPORT_C TInt CWsGraphicBitmapAnimation::Share(TSecureId aClientId)
sl@0
   135
	{
sl@0
   136
	return CWsGraphic::Share(aClientId);
sl@0
   137
	}
sl@0
   138
sl@0
   139
EXPORT_C TInt CWsGraphicBitmapAnimation::UnShare(TSecureId aClientId)
sl@0
   140
	{
sl@0
   141
	return CWsGraphic::UnShare(aClientId);
sl@0
   142
	}
sl@0
   143
sl@0
   144
void CWsGraphicBitmapAnimation::HandleMessage(const TDesC8& /*aData*/)
sl@0
   145
	{
sl@0
   146
	}
sl@0
   147
sl@0
   148
void CWsGraphicBitmapAnimation::OnReplace()
sl@0
   149
	{
sl@0
   150
	}
sl@0
   151
sl@0
   152
HBufC8* CWsGraphicBitmapAnimation::PackLC(const TFrames& aFrames)
sl@0
   153
	{
sl@0
   154
	__ASSERT_COMPILE(sizeof(TInt) == sizeof(TInt32));
sl@0
   155
	const TInt count = aFrames.Count();
sl@0
   156
	HBufC8* buf = HBufC8::NewL(sizeof(TInt) + ((sizeof(TFrameInfo)+sizeof(TInt)+sizeof(TInt))*count));
sl@0
   157
	CleanupStack::PushL(buf);
sl@0
   158
	TPtr8 des = buf->Des();
sl@0
   159
	RDesWriteStream out(des);
sl@0
   160
	out.PushL();
sl@0
   161
	out.WriteInt32L(count);
sl@0
   162
	for(TInt i=0; i<count; i++)
sl@0
   163
		{
sl@0
   164
		const CFrame* frame = aFrames[i];
sl@0
   165
		if(!frame)
sl@0
   166
			{
sl@0
   167
			User::Leave(KErrArgument);
sl@0
   168
			}
sl@0
   169
		out.WriteL(reinterpret_cast<const TUint8*>(&(frame->iFrameInfo)),sizeof(TFrameInfo));
sl@0
   170
		out.WriteInt32L(frame->Bitmap()? frame->Bitmap()->Handle(): 0);
sl@0
   171
		out.WriteInt32L(frame->Mask()? frame->Mask()->Handle(): 0);
sl@0
   172
		}
sl@0
   173
	out.Pop();
sl@0
   174
	out.CommitL();
sl@0
   175
	return buf;
sl@0
   176
	}