sl@0: // Copyright (c) 2006-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: // Test CWsGraphic plugins sl@0: // sl@0: // sl@0: sl@0: #ifndef __W32STDGRAPHICTEST_H__ sl@0: #define __W32STDGRAPHICTEST_H__ sl@0: sl@0: #include sl@0: sl@0: class TWsGraphicFrameRate: public TWsGraphicMsgFixedBase sl@0: /** data attached to a CWindowGc::DrawWsGraphic to encourage the artwork to display sl@0: an approximate framerate as it animates, if available sl@0: @publishedPartner sl@0: @released sl@0: */ { sl@0: public: sl@0: enum sl@0: { sl@0: ETypeId = 0x10281AAF sl@0: }; sl@0: IMPORT_C TWsGraphicFrameRate(); sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CWsGraphicTestFrameRate): public CWsGraphic sl@0: /** Client representation of a test anim that displays its frame-rate sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C static CWsGraphicTestFrameRate* NewL(); sl@0: IMPORT_C static CWsGraphicTestFrameRate* NewL(TUid aUid); sl@0: IMPORT_C static CWsGraphicTestFrameRate* NewL(const TWsGraphicId& aReplace); sl@0: IMPORT_C ~CWsGraphicTestFrameRate(); sl@0: public: // protected virtuals from CWsGraphic promoted to public sl@0: using CWsGraphic::ShareGlobally; sl@0: using CWsGraphic::UnShareGlobally; sl@0: using CWsGraphic::Share; sl@0: using CWsGraphic::UnShare; sl@0: private: sl@0: CWsGraphicTestFrameRate(); sl@0: void HandleMessage(const TDesC8& aData); sl@0: void OnReplace(); sl@0: }; sl@0: sl@0: #endif //__W32STDGRAPHICTEST_H__