Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef SCRDEVEXTENSION_H_
17 #define SCRDEVEXTENSION_H_
20 #include <graphics/testscreencapture.h>
23 class CWsScreenDevice::CScrDevExtension : public CBase, public MTestScreenCapture, public MWsClientClass
26 CScrDevExtension(RWsBuffer *aBuffer,TInt32 aWsHandle);
28 //get a specific interface
29 void* GetInterface(TUint aId);
30 //Access pre-existing data members
31 CFbsTypefaceStore* TypefaceStore();
32 void SetTypefaceStore(CFbsTypefaceStore*);
33 virtual TInt TranslateExtent(const TRect& aInitial, TRect& aTarget) const;
34 virtual TInt GetCompositedSize(TSize& aSize) const;
35 virtual TInt ComposeScreen(const CFbsBitmap& aBitmap) const;
38 TInt iSupportedExtensionsBits;
39 CFbsTypefaceStore* iTypefaceStore;
42 #endif /*SCRDEVEXTENSION_H_*/