/* * * Custom widget Demo * * File : MyConsoleView.h * Purpose : Define the custom Console View class * Author : JLV * Creation : 10/19/04 * Last Update : 10/26/04 * * (C) hexaZen 2004 * * This file is part of a demo application for Zinzala. It can be * used, distributed and modified without limitation. * * * $Id$ */ /* * $Log$ */ #ifndef _MYCONSOLEVIEW #define _MYCONSOLEVIEW #include class cMyConsoleView : public cDConsoleView { public: static cMyConsoleView *NewL(cDSkin &aSkin); void Reset(); protected: void PlayPressed(tBool aActive); void PausePressed(tBool aActive); void StopPressed(tBool aActive); void FwdPressed(tBool aActive); void BwdPressed(tBool aActive); protected: cMyConsoleView(); }; #endif