os/graphics/windowing/windowserver/test/MBMANIM.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) 1999-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
// Anim DLL to animate a bitmap
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "MBMCMD.H"
sl@0
    19
#include "MBMANIM.H"
sl@0
    20
sl@0
    21
#define DEFAUlT_LINE_WIDTH 4
sl@0
    22
#define DEFAUlT_MASK_WIDTH_FACTOR 3
sl@0
    23
#define DEFAUlT_END_POINT_FACTOR 2
sl@0
    24
#define BLACK TRgb::Gray2(0)
sl@0
    25
#define WHITE TRgb::Gray2(1)
sl@0
    26
sl@0
    27
sl@0
    28
EXPORT_C CAnimDll *CreateCAnimDllL()
sl@0
    29
	{
sl@0
    30
	return(new(ELeave) CAnimateMbmAnimDll());
sl@0
    31
	}
sl@0
    32
sl@0
    33
sl@0
    34
/*CAnimateMbmAnimDll*/
sl@0
    35
sl@0
    36
CAnim *CAnimateMbmAnimDll::CreateInstanceL(TInt /*aType*/)
sl@0
    37
	{
sl@0
    38
	return new(ELeave) CAnimateMbm();
sl@0
    39
	}
sl@0
    40
sl@0
    41
sl@0
    42
/*CAnimTimer*/
sl@0
    43
sl@0
    44
void CAnimTimer::ConstructL()
sl@0
    45
	{
sl@0
    46
	CTimer::ConstructL();
sl@0
    47
	}
sl@0
    48
sl@0
    49
void CAnimTimer::DoCancel()
sl@0
    50
	{}
sl@0
    51
sl@0
    52
void CAnimTimer::RunL()
sl@0
    53
	{
sl@0
    54
	iAnimator->Animate();
sl@0
    55
	}
sl@0
    56
sl@0
    57
sl@0
    58
/*CAnimateMbm*/
sl@0
    59
sl@0
    60
CAnimateMbm::~CAnimateMbm()
sl@0
    61
	{
sl@0
    62
	delete iTimer;
sl@0
    63
	delete iBitmap;
sl@0
    64
	}
sl@0
    65
sl@0
    66
void CAnimateMbm::ConstructL(TAny *, TBool )
sl@0
    67
	{
sl@0
    68
	iTimer=new(ELeave) CAnimTimer(this);
sl@0
    69
	iTimer->ConstructL();
sl@0
    70
	CActiveScheduler::Add(iTimer);
sl@0
    71
	iInterval=100000;		//0.1 secs
sl@0
    72
	iBitmap=new(ELeave) CFbsBitmap();
sl@0
    73
	iWindowFunctions->SetRect(TRect(0,0,20,20));
sl@0
    74
	}
sl@0
    75
sl@0
    76
void CAnimateMbm::Animate()
sl@0
    77
	{
sl@0
    78
	if (!iRunning)
sl@0
    79
		return;
sl@0
    80
	iTimer->After(iInterval);
sl@0
    81
	++iIndex;
sl@0
    82
	while(LoadBitmap()!=KErrNone)
sl@0
    83
		iIndex=0;
sl@0
    84
	iWindowFunctions->ActivateGc();
sl@0
    85
	Redraw();
sl@0
    86
	WindowFunctions()->DeactivateGc();
sl@0
    87
	WindowFunctions()->Update();
sl@0
    88
	}
sl@0
    89
sl@0
    90
TBool CAnimateMbm::OfferRawEvent(const TRawEvent& /*aRawEvent*/)
sl@0
    91
	{
sl@0
    92
	return EFalse;
sl@0
    93
	}
sl@0
    94
sl@0
    95
void CAnimateMbm::Animate(TDateTime* /*aDateTime*/)
sl@0
    96
	{
sl@0
    97
	}
sl@0
    98
sl@0
    99
void CAnimateMbm::Redraw()
sl@0
   100
	{
sl@0
   101
	iGc->BitBlt(TPoint(),iBitmap);
sl@0
   102
	/*if (1>0)
sl@0
   103
		{
sl@0
   104
		iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   105
		iGc->SetBrushColor(TRgb::Gray16(iIndex));
sl@0
   106
		iGc->DrawRect(TRect(5,5,300,300));
sl@0
   107
		}*/
sl@0
   108
	}
sl@0
   109
sl@0
   110
void CAnimateMbm::Command(TInt aOpcode,TAny* /*aParams*/)
sl@0
   111
	{
sl@0
   112
	switch (aOpcode)
sl@0
   113
		{
sl@0
   114
	case EMbmOpDeactivate:
sl@0
   115
		//iFunctions->SetSync(MAnimGeneralFunctions::ESyncNone);
sl@0
   116
		if (iRunning)
sl@0
   117
			{
sl@0
   118
			WindowFunctions()->ActivateGc();
sl@0
   119
			WindowFunctions()->DeactivateGc();
sl@0
   120
			iRunning=EFalse;
sl@0
   121
			}
sl@0
   122
		break;
sl@0
   123
	case EMbmOpFaster:
sl@0
   124
		iInterval=(19*iInterval.Int())/20;
sl@0
   125
		break;
sl@0
   126
	case EMbmOpSlower:
sl@0
   127
		iInterval=(21*iInterval.Int())/20;
sl@0
   128
		break;
sl@0
   129
	default:
sl@0
   130
		iFunctions->Panic();
sl@0
   131
		}
sl@0
   132
	}
sl@0
   133
sl@0
   134
void CAnimateMbm::FocusChanged(TBool )
sl@0
   135
	{
sl@0
   136
	}
sl@0
   137
sl@0
   138
TInt CAnimateMbm::CommandReplyL(TInt aOpcode,TAny* aParams)
sl@0
   139
	{
sl@0
   140
	switch (aOpcode)
sl@0
   141
		{
sl@0
   142
	case EMbmOpActivate:
sl@0
   143
		//iFunctions->SetSync(MAnimGeneralFunctions::ESyncSecond);
sl@0
   144
		if (!iRunning)
sl@0
   145
			{
sl@0
   146
			iRunning=ETrue;
sl@0
   147
			}
sl@0
   148
		iTimer->After(iInterval);
sl@0
   149
		break;
sl@0
   150
	case EMbmOpSetFileName:
sl@0
   151
		iName=*STATIC_CAST(TBuf<32>*,aParams);
sl@0
   152
		iIndex=0;
sl@0
   153
		User::LeaveIfError(LoadBitmap());
sl@0
   154
		break;
sl@0
   155
	default:
sl@0
   156
		iFunctions->Panic();
sl@0
   157
		}
sl@0
   158
	return KErrNone;
sl@0
   159
	}