os/graphics/windowing/windowserver/inc/Graphics/testscreencapture.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 TESTSCREENCAPTURE_H_
sl@0
    17
#define TESTSCREENCAPTURE_H_
sl@0
    18
sl@0
    19
struct TWsScsComposeScreenCommand
sl@0
    20
	{
sl@0
    21
	struct TrivialPoint
sl@0
    22
		{
sl@0
    23
		/**
sl@0
    24
		The x co-ordinate.
sl@0
    25
		*/
sl@0
    26
		TInt iX;
sl@0
    27
		/**
sl@0
    28
		The y co-ordinate.
sl@0
    29
		*/
sl@0
    30
		TInt iY;
sl@0
    31
		};
sl@0
    32
	struct TrivialRect
sl@0
    33
		{
sl@0
    34
		/**
sl@0
    35
		The x and y co-ordinates of the top left hand corner of the rectangle.
sl@0
    36
		*/
sl@0
    37
		TrivialPoint iTl;
sl@0
    38
		
sl@0
    39
		/**
sl@0
    40
		The x and y co-ordinates of the bottom right hand corner of the rectangle.
sl@0
    41
		*/
sl@0
    42
		TrivialPoint iBr;
sl@0
    43
		};
sl@0
    44
	inline TWsScsComposeScreenCommand(TUint aCommand, const TInt aHandle);
sl@0
    45
	inline TWsScsComposeScreenCommand(TUint aCommand, const TRect iAttributes);
sl@0
    46
	inline void ConvertTrivialRect(TRect& aRect);
sl@0
    47
	
sl@0
    48
	TUint iCommand;
sl@0
    49
	union Parameters
sl@0
    50
	{
sl@0
    51
	TInt iBitmapHandle;
sl@0
    52
	TrivialRect iExtent;
sl@0
    53
	} iParameter;
sl@0
    54
	};
sl@0
    55
sl@0
    56
/**
sl@0
    57
 * Window Server client interface for screen capture.
sl@0
    58
 * 
sl@0
    59
 * All functions in MTestScreenCapture will automatically flush the client-server
sl@0
    60
 * session buffer as part of their behavior.
sl@0
    61
 * 
sl@0
    62
 * @publishedPartner
sl@0
    63
 * @prototype
sl@0
    64
 */
sl@0
    65
sl@0
    66
class MTestScreenCapture
sl@0
    67
{
sl@0
    68
public:
sl@0
    69
	enum TWsTestScreenCaptureOpcodes
sl@0
    70
		{
sl@0
    71
		EWsScsInvalid = 0x00000000,
sl@0
    72
		EWsScsScreenCompose = 0x00000001,
sl@0
    73
		EWsScsTranslateExtent = 0x00000002,
sl@0
    74
		};
sl@0
    75
	
sl@0
    76
	enum	
sl@0
    77
		{
sl@0
    78
		KUidTestScreenCaptureIf =  0x10286504,
sl@0
    79
		ETypeId =	 KUidTestScreenCaptureIf 
sl@0
    80
		};
sl@0
    81
public:
sl@0
    82
	/** Retrieves the composited screen content. 
sl@0
    83
	    A new composition is initiated and the result is copied in 
sl@0
    84
	    the bitmap created by user.
sl@0
    85
	    The only bitmap mode supported is EColor16MU.
sl@0
    86
sl@0
    87
	    This function always causes a flush of the window server buffer.
sl@0
    88
	    
sl@0
    89
 		@param aBitmap retturns the composited screen content.
sl@0
    90
 		@param aTarget target rectangle to be filled in
sl@0
    91
		@return KErrNone if successful
sl@0
    92
		        KErrArgument if the size does not match the composition area size or
sl@0
    93
		        the display mode is not supported
sl@0
    94
	*/
sl@0
    95
	virtual TInt ComposeScreen(const CFbsBitmap& aBitmap) const = 0;
sl@0
    96
	/** Maps the source rectangle from application coordinate space to a
sl@0
    97
		target coordinate space. Since there may be scaling involved, the
sl@0
    98
		target rectangle may be larger or smaller than the source one, or
sl@0
    99
		even become empty.
sl@0
   100
sl@0
   101
	    This function always causes a flush of the window server buffer.
sl@0
   102
	    
sl@0
   103
		@param aSource source rectangle
sl@0
   104
		@param aTarget target rectangle to be filled in
sl@0
   105
		@return KErrNone if successful, otherwise one of the system-wide error codes
sl@0
   106
		*/
sl@0
   107
	virtual TInt TranslateExtent(const TRect& aSource, TRect& aTarget) const = 0;
sl@0
   108
sl@0
   109
	/** Retrieves the size of the composition area in pixels.
sl@0
   110
sl@0
   111
	    This function always causes a flush of the window server buffer.
sl@0
   112
sl@0
   113
		@param aSize returns the composition area size
sl@0
   114
		@return KErrNone if successful, otherwise one of the system-wide error codes
sl@0
   115
		*/
sl@0
   116
	virtual TInt GetCompositedSize(TSize& aSize) const = 0;
sl@0
   117
};
sl@0
   118
sl@0
   119
inline TWsScsComposeScreenCommand::TWsScsComposeScreenCommand(TUint aCommand, const TInt aHandle): 
sl@0
   120
	iCommand(aCommand)
sl@0
   121
	{ iParameter.iBitmapHandle = aHandle; }
sl@0
   122
sl@0
   123
inline TWsScsComposeScreenCommand::TWsScsComposeScreenCommand(TUint aCommand, const TRect iAttributes): 
sl@0
   124
	iCommand(aCommand)
sl@0
   125
	{ 
sl@0
   126
	iParameter.iExtent.iTl.iX = iAttributes.iTl.iX; 
sl@0
   127
	iParameter.iExtent.iTl.iY = iAttributes.iTl.iY; 
sl@0
   128
	iParameter.iExtent.iBr.iX = iAttributes.iBr.iX; 
sl@0
   129
	iParameter.iExtent.iBr.iY = iAttributes.iBr.iY; 
sl@0
   130
	}
sl@0
   131
inline void TWsScsComposeScreenCommand::ConvertTrivialRect(TRect& aRect)
sl@0
   132
	{
sl@0
   133
	aRect.iTl.iX = iParameter.iExtent.iTl.iX;
sl@0
   134
	aRect.iTl.iY = iParameter.iExtent.iTl.iY;
sl@0
   135
	aRect.iBr.iX = iParameter.iExtent.iBr.iX;
sl@0
   136
	aRect.iBr.iY = iParameter.iExtent.iBr.iY;
sl@0
   137
	}
sl@0
   138
sl@0
   139
#endif /*TESTSCREENCAPTURE_H_*/