graphics/wserv/AnimPlugin/src/T_TestAnimDll.cpp
branchSymbian2
changeset 1 8758140453c0
child 6 c108117318cb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/wserv/AnimPlugin/src/T_TestAnimDll.cpp	Thu Jan 21 12:53:44 2010 +0000
@@ -0,0 +1,106 @@
+// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). 
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of the License "Symbian Foundation License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+// 
+// Description:
+//
+
+#include "T_TestAnimDll.h"
+#include "T_AnimDef.h"
+#include "T_TWinAnim.h"
+#include "T_TSpriteAnim.h"
+#include "T_TFreeTimerWinAnim.h"
+
+
+CTestAnimDll::CTestAnimDll()
+{
+	// No implementation required
+}
+
+
+CTestAnimDll::~CTestAnimDll()
+{
+	WriteLog(_L("~CTestAnimDll"));
+	delete iLog;
+	iFs.Close();
+}
+
+CTestAnimDll* CTestAnimDll::NewLC()
+{
+	CTestAnimDll* self = new (ELeave)CTestAnimDll();
+	CleanupStack::PushL(self);
+	self->ConstructL();
+	return self;
+}
+
+CTestAnimDll* CTestAnimDll::NewL()
+{
+	CTestAnimDll* self=CTestAnimDll::NewLC();
+	CleanupStack::Pop(); // self;
+	return self;
+}
+
+void CTestAnimDll::ConstructL()
+{
+	User::LeaveIfError(iFs.Connect());
+	_LIT(KFileName,"c:\\anim.txt");
+	iLog=CLog::NewL(iFs,KFileName);
+
+}
+
+EXPORT_C CAnimDll* CreateCAnimDllL()
+{	
+	return CTestAnimDll::NewL();
+}
+
+TInt CTestAnimDll::WriteLog(const TDesC& aInfo)
+	{
+	return iLog->WriteLog((aInfo));	
+	}
+TInt CTestAnimDll::WriteLog(const TDesC8& aInfo)
+	{
+	return iLog->WriteLog((aInfo));	
+	}
+
+CAnim* CTestAnimDll::CreateInstanceL(TInt aType)
+{
+	TBuf<50> buf;
+	buf.Format(_L("CTestAnimDll::CreateInstanceL %d"),aType);
+	WriteLog(buf);
+	
+	CAnim* anim=NULL;
+	switch (aType)
+	{
+	case EKWindowAnim:
+		{
+		anim=new (ELeave)CTWinAnim(this,aType);		
+		break;
+		}
+	case EKSpriteAnim:
+		{
+		anim=new (ELeave)CTSpriteAnim(this,aType);
+		break;
+		}	
+	case EKFreeTimerWindowAnim:
+		{
+		anim=new (ELeave) CTFreeTimerWinAnim();
+		break;
+		}
+	default:
+		{
+//		iFunctions->Panic();
+		break; 
+		}	  
+
+	}
+
+	return anim;
+}