sl@0: // Copyright (c) 1999-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: // Template for writing Anim DLL's sl@0: // sl@0: // sl@0: sl@0: #if !defined(__MINANIM_H__) sl@0: #define __MINANIM_H__ sl@0: sl@0: #if !defined(__E32STD_H__) sl@0: #include sl@0: #endif sl@0: #if !defined(__E32BASE_H__) sl@0: #include sl@0: #endif sl@0: /*#if !defined(__FBS_H__) sl@0: #include sl@0: #endif*/ sl@0: #if !defined(__W32ADLL_H__) sl@0: #include sl@0: #endif sl@0: sl@0: sl@0: class CMinAnimDll : public CAnimDll sl@0: { sl@0: public: sl@0: CAnim *CreateInstanceL(TInt aType); sl@0: }; sl@0: sl@0: class CMinWindowAnim : public CWindowAnim sl@0: { sl@0: public: sl@0: ~CMinMbm(); sl@0: //pure virtual functions from MEventHandler sl@0: TBool OfferRawEvent(const TRawEvent &aRawEvent); sl@0: //pure virtual functions from CAnim sl@0: void ConstructL(TAny *aArgs, TBool aHasFocus); sl@0: void Animate(TDateTime *aDateTime); sl@0: void Redraw(); sl@0: void Command(TInt aOpcode, TAny *aArgs); sl@0: TInt CommandReplyL(TInt aOpcode, TAny *aArgs); sl@0: void FocusChanged(TBool aState); sl@0: }; sl@0: sl@0: #endif