author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 1999-2010 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 |
// Template for writing Anim DLL's |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
#include "mincmd.h" |
sl@0 | 19 |
#include "minanim.h" |
sl@0 | 20 |
|
sl@0 | 21 |
|
sl@0 | 22 |
GLDEF_C TInt E32Dll(TDllReason) |
sl@0 | 23 |
{ |
sl@0 | 24 |
return(KErrNone); |
sl@0 | 25 |
} |
sl@0 | 26 |
|
sl@0 | 27 |
EXPORT_C CAnimDll *CreateCAnimDllL() |
sl@0 | 28 |
{ |
sl@0 | 29 |
return(new(ELeave) CMinAnimDll()); |
sl@0 | 30 |
} |
sl@0 | 31 |
|
sl@0 | 32 |
|
sl@0 | 33 |
/*CMinAnimDll*/ |
sl@0 | 34 |
|
sl@0 | 35 |
CAnim *CMinAnimDll::CreateInstanceL(TInt aType) |
sl@0 | 36 |
{ |
sl@0 | 37 |
switch (aType) |
sl@0 | 38 |
{ |
sl@0 | 39 |
case EMinAnimWindow: |
sl@0 | 40 |
return new(ELeave) CMinWindowAnim(); |
sl@0 | 41 |
|
sl@0 | 42 |
case EMinAnimHandwriting: |
sl@0 | 43 |
return new(ELeave) CMinHandAnim(); |
sl@0 | 44 |
|
sl@0 | 45 |
default: |
sl@0 | 46 |
User::Leave(KErrArgument); |
sl@0 | 47 |
} |
sl@0 | 48 |
return NULL; // dummy return to prevent compiler error |
sl@0 | 49 |
} |
sl@0 | 50 |
|
sl@0 | 51 |
|
sl@0 | 52 |
/*CAnimateMbm*/ |
sl@0 | 53 |
|
sl@0 | 54 |
CAnimateMbm::~CAnimateMbm() |
sl@0 | 55 |
{ |
sl@0 | 56 |
delete iTimer; |
sl@0 | 57 |
delete iBitmap; |
sl@0 | 58 |
} |
sl@0 | 59 |
|
sl@0 | 60 |
void CAnimateMbm::ConstructL(TAny *, TBool ) |
sl@0 | 61 |
{ |
sl@0 | 62 |
iTimer=new(ELeave) CAnimTimer(this); |
sl@0 | 63 |
iTimer->ConstructL(); |
sl@0 | 64 |
CActiveScheduler::Add(iTimer); |
sl@0 | 65 |
iInterval=100000; //0.1 secs |
sl@0 | 66 |
iBitmap=new(ELeave) CFbsBitmap(); |
sl@0 | 67 |
iWindowFunctions->SetRect(TRect(0,0,20,20)); |
sl@0 | 68 |
} |
sl@0 | 69 |
|
sl@0 | 70 |
void CAnimateMbm::Animate() |
sl@0 | 71 |
{ |
sl@0 | 72 |
if (!iRunning) |
sl@0 | 73 |
return; |
sl@0 | 74 |
iTimer->After(iInterval); |
sl@0 | 75 |
++iIndex; |
sl@0 | 76 |
while(LoadBitmap()!=KErrNone) |
sl@0 | 77 |
iIndex=0; |
sl@0 | 78 |
iWindowFunctions->ActivateGc(); |
sl@0 | 79 |
Redraw(); |
sl@0 | 80 |
WindowFunctions()->DeactivateGc(); |
sl@0 | 81 |
WindowFunctions()->Update(); |
sl@0 | 82 |
} |
sl@0 | 83 |
|
sl@0 | 84 |
TBool CAnimateMbm::OfferRawEvent(const TRawEvent& /*aRawEvent*/) |
sl@0 | 85 |
{ |
sl@0 | 86 |
return EFalse; |
sl@0 | 87 |
} |
sl@0 | 88 |
|
sl@0 | 89 |
void CAnimateMbm::Animate(TDateTime* /*aDateTime*/) |
sl@0 | 90 |
{ |
sl@0 | 91 |
} |
sl@0 | 92 |
|
sl@0 | 93 |
void CAnimateMbm::Redraw() |
sl@0 | 94 |
{ |
sl@0 | 95 |
iGc->BitBlt(TPoint(),iBitmap); |
sl@0 | 96 |
} |
sl@0 | 97 |
|
sl@0 | 98 |
void CAnimateMbm::Command(TInt aOpcode,TAny *aParams) |
sl@0 | 99 |
{ |
sl@0 | 100 |
switch (aOpcode) |
sl@0 | 101 |
{ |
sl@0 | 102 |
case EMbmOpActivate: |
sl@0 | 103 |
//iFunctions->SetSync(MAnimGeneralFunctions::ESyncSecond); |
sl@0 | 104 |
iTimer->After(iInterval); |
sl@0 | 105 |
iRunning=ETrue; |
sl@0 | 106 |
break; |
sl@0 | 107 |
case EMbmOpDeactivate: |
sl@0 | 108 |
//iFunctions->SetSync(MAnimGeneralFunctions::ESyncNone); |
sl@0 | 109 |
iRunning=EFalse; |
sl@0 | 110 |
break; |
sl@0 | 111 |
case EMbmOpFaster: |
sl@0 | 112 |
iInterval=(19*iInterval.Int())/20; |
sl@0 | 113 |
break; |
sl@0 | 114 |
case EMbmOpSlower: |
sl@0 | 115 |
iInterval=(21*iInterval.Int())/20; |
sl@0 | 116 |
break; |
sl@0 | 117 |
case EMbmOpSetFileName: |
sl@0 | 118 |
iName=*STATIC_CAST(TBuf<32>*,aParams); |
sl@0 | 119 |
iIndex=0; |
sl@0 | 120 |
break; |
sl@0 | 121 |
default: |
sl@0 | 122 |
iFunctions->Panic(); |
sl@0 | 123 |
} |
sl@0 | 124 |
} |
sl@0 | 125 |
|
sl@0 | 126 |
void CAnimateMbm::FocusChanged(TBool ) |
sl@0 | 127 |
{ |
sl@0 | 128 |
} |
sl@0 | 129 |
|
sl@0 | 130 |
TInt CAnimateMbm::CommandReplyL(TInt /*aOpcode*/,TAny* /*aParams*/) |
sl@0 | 131 |
{ |
sl@0 | 132 |
return KErrNone; |
sl@0 | 133 |
} |