os/graphics/windowing/windowserver/nga/CLIENT/scrdevextension.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef SCRDEVEXTENSION_H_
sl@0
    17
#define SCRDEVEXTENSION_H_
sl@0
    18
sl@0
    19
#include <graphics/displaycontrol.h>
sl@0
    20
#include <graphics/displaymapping.h>
sl@0
    21
#include <graphics/testscreencapture.h>
sl@0
    22
#include <w32std.h>
sl@0
    23
sl@0
    24
sl@0
    25
class CWsScreenDevice::CScrDevExtension : public CBase, public MDisplayControl, public MDisplayMapping, public MTestScreenCapture, public MWsClientClass
sl@0
    26
{
sl@0
    27
public:
sl@0
    28
	CScrDevExtension(RWsBuffer *aBuffer,TInt32 aWsHandle);
sl@0
    29
	~CScrDevExtension();
sl@0
    30
//create or access the 1:1 extension instance behind the screen device
sl@0
    31
	TInt RepeatableConstruct();
sl@0
    32
//get a specific interface
sl@0
    33
	void*	GetInterface(TUint aId);
sl@0
    34
//Access pre-existing data members
sl@0
    35
	CFbsTypefaceStore* TypefaceStore();
sl@0
    36
	void  SetTypefaceStore(CFbsTypefaceStore*);
sl@0
    37
//implementing MDisplayControlBase 
sl@0
    38
	virtual TInt NumberOfResolutions() const;
sl@0
    39
	virtual TInt GetResolutions(RArray<TResolution>& aResolutions) const;
sl@0
    40
	virtual void GetConfiguration(TDisplayConfiguration& aConfig) const;
sl@0
    41
	virtual TInt SetConfiguration(const TDisplayConfiguration& aConfig);
sl@0
    42
	virtual TInt PreferredDisplayVersion() const;
sl@0
    43
//implementing MDisplayControl
sl@0
    44
	virtual TBool DisplayChangeEventsEnabled() const;
sl@0
    45
	virtual void EnableDisplayChangeEvents(TBool aEnable);
sl@0
    46
//implementing MDisplayMapping
sl@0
    47
	virtual TInt MapCoordinates(TCoordinateSpace aSourceSpace, const TRect& aSource, TCoordinateSpace aTargetSpace, TRect& aTarget) const;
sl@0
    48
	virtual void GetMaximumWindowExtent(TRect& aExtent) const;
sl@0
    49
	virtual void GetMaximumSurfaceSize(TSize& aPixels, TSize& aTwips) const;
sl@0
    50
	virtual void GetDisplayExtentOfWindow(const RWindowBase& aWindow, TRect& aExtent) const;
sl@0
    51
//implementing MTestScreenCapture
sl@0
    52
	virtual TInt TranslateExtent(const TRect& aInitial, TRect& aTarget) const;
sl@0
    53
	virtual TInt GetCompositedSize(TSize& aSize) const;
sl@0
    54
	virtual TInt ComposeScreen(const CFbsBitmap& aBitmap) const;
sl@0
    55
private:
sl@0
    56
	//function used by GetResolutions
sl@0
    57
	TInt FillResolutionArray(TInt aNumOfRes, RArray<TResolution>& aResolutions) const;
sl@0
    58
protected:
sl@0
    59
	MWsClientClass* WriteClient() const;
sl@0
    60
	TInt	iSupportedExtensionsBits;
sl@0
    61
	CFbsTypefaceStore* iTypefaceStore;
sl@0
    62
};
sl@0
    63
sl@0
    64
#endif /*SCRDEVEXTENSION_H_*/