sl@0: // Copyright (c) 2008-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: // sl@0: sl@0: #ifndef SCRDEVEXTENSION_H_ sl@0: #define SCRDEVEXTENSION_H_ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: sl@0: class CWsScreenDevice::CScrDevExtension : public CBase, public MTestScreenCapture, public MWsClientClass sl@0: { sl@0: public: sl@0: CScrDevExtension(RWsBuffer *aBuffer,TInt32 aWsHandle); sl@0: ~CScrDevExtension(); sl@0: //get a specific interface sl@0: void* GetInterface(TUint aId); sl@0: //Access pre-existing data members sl@0: CFbsTypefaceStore* TypefaceStore(); sl@0: void SetTypefaceStore(CFbsTypefaceStore*); sl@0: virtual TInt TranslateExtent(const TRect& aInitial, TRect& aTarget) const; sl@0: virtual TInt GetCompositedSize(TSize& aSize) const; sl@0: virtual TInt ComposeScreen(const CFbsBitmap& aBitmap) const; sl@0: sl@0: protected: sl@0: TInt iSupportedExtensionsBits; sl@0: CFbsTypefaceStore* iTypefaceStore; sl@0: }; sl@0: sl@0: #endif /*SCRDEVEXTENSION_H_*/