os/graphics/windowing/windowserver/inc/Graphics/wsdrawresource.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
/**
sl@0
    17
 @publishedPartner
sl@0
    18
 @prototype
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef __WSDRAWRESOURCE_H__
sl@0
    22
#define __WSDRAWRESOURCE_H__
sl@0
    23
sl@0
    24
#include <w32std.h>
sl@0
    25
#include <graphics/sgresource.h>
sl@0
    26
sl@0
    27
class RWsDrawableSource;
sl@0
    28
sl@0
    29
/**
sl@0
    30
The UID for MWsDrawResource.
sl@0
    31
@see MWsDrawResource
sl@0
    32
@see CWindowGc::Interface
sl@0
    33
@publishedPartner
sl@0
    34
@prototype
sl@0
    35
*/
sl@0
    36
static const TUid KMWsDrawResourceInterfaceUid = { 0x102864E9 };
sl@0
    37
sl@0
    38
/**
sl@0
    39
An extension interface for CWindowGc and CRemoteGc to draw RWsDrawableSources.
sl@0
    40
sl@0
    41
Usage:
sl@0
    42
@code
sl@0
    43
MWsDrawResource* gcDrawResource = static_cast<MWsDrawResource*>(gc->Interface(KMWsDrawResourceInterfaceUid));
sl@0
    44
if(gcDrawResource)
sl@0
    45
	{
sl@0
    46
	gcDrawResource->DrawResource(TPoint(5,5), drawableSource);
sl@0
    47
	}
sl@0
    48
@endcode
sl@0
    49
@see RWsDrawableSource
sl@0
    50
@see CWindowGc::Interface
sl@0
    51
@publishedPartner
sl@0
    52
@prototype
sl@0
    53
*/
sl@0
    54
class MWsDrawResource
sl@0
    55
	{
sl@0
    56
public:
sl@0
    57
	/**
sl@0
    58
	Draws an image based resource which may be generated using non-native rendering API such as OpenGL ES 
sl@0
    59
	or OpenVG. The resource will be drawn at the specified position in its original size with orientation 
sl@0
    60
	according to the specified rotation parameter. The current clipping region applies. 
sl@0
    61
sl@0
    62
	@see RWsDrawableSource
sl@0
    63
sl@0
    64
	@param	aPos		The position of the top-left corner on a window.
sl@0
    65
	@param	aSource		The resource to be drawn.
sl@0
    66
	@param	aRotation	The rotation to be applied to the resource before it is drawn. The default value is CWindowGc::EGraphicsRotationNone.
sl@0
    67
sl@0
    68
	@pre	Drawing context has been activated on a window. The drawable source has been created.
sl@0
    69
	@post	Request to draw resource has been accepted. There is no guarantee that the request has been completed 
sl@0
    70
			when this method returns.
sl@0
    71
	*/
sl@0
    72
	virtual void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone) = 0;
sl@0
    73
sl@0
    74
	/**
sl@0
    75
	Draws an image based resource. The resource will be rendered to the given destination rectangle on 
sl@0
    76
	the window in its original dimensions with orientation according to the specified rotation parameter. 
sl@0
    77
	Drawing will be clipped to the given destination rectangle. The current clipping region applies. The resource can be
sl@0
    78
	drawn rotated using the CWindowGc::TGraphicsRotation enum which defines possible rotation values in 
sl@0
    79
	clockwise degrees.
sl@0
    80
sl@0
    81
	@see RWsDrawableSource
sl@0
    82
sl@0
    83
	@param	aDestRect	Destination rectangle to which the resource will be rendered.
sl@0
    84
	@param	aSource		The resource to be drawn.
sl@0
    85
	@param	aRotation	The rotation to be applied to the resource before it is drawn. The default value is CWindowGc::EGraphicsRotationNone.
sl@0
    86
sl@0
    87
	@pre	Drawing context has been activated on a window. The drawable source has been created.
sl@0
    88
	@post	Request to draw resource has been accepted. There is no guarantee that the request has been completed 
sl@0
    89
			when this method returns.
sl@0
    90
	*/
sl@0
    91
	virtual void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone) = 0;
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	Draws an image based resource. The resource is rendered into the given destination rectangle on a window.
sl@0
    95
	Scaling (stretching or compression) applies if the destination rectangle is different from the
sl@0
    96
	source rectangle. The resource orientation is set based on the specified rotation parameter
sl@0
    97
	before scaling and drawing operations are performed.
sl@0
    98
sl@0
    99
	@see RWsDrawableSource
sl@0
   100
sl@0
   101
	@param	aDestRect	The destination rectangle to which the resource will be rendered on a window.
sl@0
   102
	@param	aSource		The resource to draw.
sl@0
   103
	@param	aSrcRect	The source rectangle specifying the area/sub-area of the resource to be rendered.
sl@0
   104
	@param	aRotation	Rotation to be applied to the resource before it is drawn. The default value is CWindowGc::EGraphicsRotationNone.
sl@0
   105
sl@0
   106
	@pre	Drawing context has been activated on a window. The drawable source has been created.
sl@0
   107
	@post	Request to draw an image based resource has been accepted. There is no guarantee that the
sl@0
   108
			request has been completed when this method returns.
sl@0
   109
	*/
sl@0
   110
	virtual void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone) = 0;
sl@0
   111
sl@0
   112
	/**
sl@0
   113
	Draws a non-image based resource. The resource will be rendered into the given destination rectangle on a window.
sl@0
   114
	The current clipping region applies. The adaptation is free to interpret the parameter aParam and may define
sl@0
   115
	its own rules on how to handle the rendering of a non-image based resource.
sl@0
   116
sl@0
   117
	@see RWsDrawableSource
sl@0
   118
sl@0
   119
	@param	aDestRect	The destination rectangle to which the resource will be rendered on a window.
sl@0
   120
	@param	aSource		The resource.
sl@0
   121
	@param	aParam		Parameters specifying how to draw the resource. 
sl@0
   122
sl@0
   123
	@pre	Drawing context has been activated on a window. The drawable source has been created.
sl@0
   124
	@post	Request to draw a non-image based resource has been accepted. 
sl@0
   125
			There is no guarantee that the request has been completed when this method returns.
sl@0
   126
	*/
sl@0
   127
	virtual void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam) = 0;
sl@0
   128
	};
sl@0
   129
sl@0
   130
sl@0
   131
/**
sl@0
   132
The intention of this class is to enable drawing of drawables (RSgDrawable and RSgImage)
sl@0
   133
using CWindowGc and CRemoteGc.
sl@0
   134
sl@0
   135
You have to use the extension interface MWsDrawResource in order to use this class with
sl@0
   136
CWindowGc and CRemoteGc.
sl@0
   137
sl@0
   138
@publishedPartner
sl@0
   139
@prototype
sl@0
   140
@see RSgDrawable
sl@0
   141
@see RSgImage
sl@0
   142
@see MWsDrawResource
sl@0
   143
*/
sl@0
   144
class RWsDrawableSource : public MWsClientClass
sl@0
   145
	{
sl@0
   146
public:
sl@0
   147
	IMPORT_C RWsDrawableSource();
sl@0
   148
	IMPORT_C RWsDrawableSource(RWsSession& aWs);
sl@0
   149
	IMPORT_C TInt Create(const RSgDrawable& aDrawable);
sl@0
   150
	IMPORT_C TInt Create(const RSgDrawable& aDrawable, TInt aScreenNumber);
sl@0
   151
	IMPORT_C const TSgDrawableId& DrawableId() const;
sl@0
   152
	IMPORT_C TInt ScreenNumber() const;
sl@0
   153
	IMPORT_C void Close();
sl@0
   154
private:
sl@0
   155
	TSgDrawableId iDrawableId;
sl@0
   156
	TInt iScreenNumber;
sl@0
   157
	TInt iReserved; // reserved for use by Symbian
sl@0
   158
	};
sl@0
   159
sl@0
   160
#endif //__WSDRAWRESOURCE_H__
sl@0
   161