os/graphics/windowing/windowserver/inc/Graphics/wsscreendevice.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
// Interface for Render Stage Screen Abstraction
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @publishedPartner
sl@0
    20
 @prototype
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef WSSCREENDEVICE_H
sl@0
    24
#define WSSCREENDEVICE_H
sl@0
    25
sl@0
    26
#include <w32std.h>
sl@0
    27
#include <graphics/wsgraphicdrawerinterface.h>
sl@0
    28
sl@0
    29
/** Render Stage Palette support.
sl@0
    30
sl@0
    31
This interface is intended to be optionally provided by a Render Stage
sl@0
    32
when the pixel target can provide a Colour Palette.  Not all pixel targets have
sl@0
    33
this feature, for example OpenVG only targets.
sl@0
    34
@publishedPartner
sl@0
    35
@prototype
sl@0
    36
*/
sl@0
    37
class MWsPalette : public MWsObjectProvider
sl@0
    38
	{
sl@0
    39
public:
sl@0
    40
	DECLARE_WS_TYPE_ID(KMWsPalette)
sl@0
    41
	virtual void PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const = 0;
sl@0
    42
	virtual TInt GetPalette(CPalette*& aPalette) const = 0;
sl@0
    43
	virtual TInt SetCustomPalette(const CPalette* aPalette) = 0;
sl@0
    44
	};
sl@0
    45
sl@0
    46
sl@0
    47
/** Render Stage Screen Device abstraction.
sl@0
    48
sl@0
    49
Render Stages provide this interface as an abstraction of the target screen.
sl@0
    50
The screen may not be pixel based, in which case read back of pixel data may
sl@0
    51
not be a reflection of what appears on the screen.  The screen might also only
sl@0
    52
be partially readable, for example external video surfaces may be blanked out
sl@0
    53
when a read back is done.  The intention of the CopyScreenToBitmap methods is
sl@0
    54
to provide a means to obtain a snapshot of the entire screen for architectures
sl@0
    55
where a composition of the screen can be done once followed by a read back
sl@0
    56
of the entire screen, as opposed to servicing a sequence of GetScanLine calls
sl@0
    57
which may be prohibitively expensive.
sl@0
    58
sl@0
    59
@publishedPartner
sl@0
    60
@prototype
sl@0
    61
*/
sl@0
    62
class MWsScreenDevice : public MWsObjectProvider
sl@0
    63
	{
sl@0
    64
public:
sl@0
    65
	DECLARE_WS_TYPE_ID(KMWsScreenDevice)
sl@0
    66
sl@0
    67
	virtual TInt ScreenNumber() const = 0;
sl@0
    68
	virtual TDisplayMode DisplayMode() const = 0;
sl@0
    69
	virtual TSize SizeInPixels() const = 0;
sl@0
    70
	virtual TSize SizeInTwips() const = 0;
sl@0
    71
	virtual TRect PointerRect() const = 0;
sl@0
    72
	virtual void GetPixel(TRgb& aColor,const TPoint& aPixel) const = 0;
sl@0
    73
	virtual void GetScanLine(TDes8& aScanLine,const TPoint& aStartPixel,TInt aPixelLength, TDisplayMode aDispMode) const = 0;
sl@0
    74
	virtual TBool RectCompare(const TRect& aRect1, const TRect& aRect2) const = 0;
sl@0
    75
	virtual void CopyScreenToBitmapL(CFbsBitmap* aBitmap, const TRect& aRect) const = 0;
sl@0
    76
	virtual void ClearDisplay(TRgb aBackColor)=0;
sl@0
    77
	};
sl@0
    78
sl@0
    79
#endif // WSSCREENDEVICE_H