os/kernelhwsrv/kernel/eka/include/d32video.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) 1995-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 the License "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
// e32\include\d32video.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __D32VIDEO_H__
sl@0
    19
#define __D32VIDEO_H__
sl@0
    20
#include <e32std.h>
sl@0
    21
#include <e32ver.h>
sl@0
    22
#include <e32twin.h>
sl@0
    23
//
sl@0
    24
enum TColour {EWhite=0xf, EWhite1=0xe, EWhite2=0xd, EWhite3=0xc, EWhite4=0xb,
sl@0
    25
			  ELightGrey=0xa, ELightGrey1=9, ELightGrey2=8, ELightGrey3=7, ELightGrey4=6,
sl@0
    26
			  EDarkGrey=5, EDarkGrey1=4, EDarkGrey2=3, EDarkGrey3=2, EDarkGrey4=1,
sl@0
    27
			  EBlack=0
sl@0
    28
			  };
sl@0
    29
//
sl@0
    30
const TUint KCapsHues2=0x00000001;
sl@0
    31
const TUint KCapsHues4=0x00000002;
sl@0
    32
const TUint KCapsHues16=0x00000004;
sl@0
    33
const TUint KCapsWidth640=0x01;
sl@0
    34
const TUint KCapsHeight240=0x01;
sl@0
    35
//
sl@0
    36
class TVideoCapsV01
sl@0
    37
	{
sl@0
    38
public:
sl@0
    39
	TInt iNumHues;
sl@0
    40
	TInt iWidth;
sl@0
    41
	TInt iHeight;
sl@0
    42
	};
sl@0
    43
typedef TPckgBuf<TVideoCapsV01> TVideoCaps;
sl@0
    44
class TCapsDevVideoV01
sl@0
    45
	{
sl@0
    46
public:
sl@0
    47
	TVersion version;
sl@0
    48
	};
sl@0
    49
//
sl@0
    50
class TBlitInfo
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	inline TBlitInfo(const TText* aBuffer,const TColour aColour, const TInt aLength,const TInt aX, const TInt aY);
sl@0
    54
	inline TBlitInfo();
sl@0
    55
public:
sl@0
    56
	const TText* iBuffer;
sl@0
    57
	const TColour iColour;
sl@0
    58
	TInt iLength;
sl@0
    59
	const TInt iX;
sl@0
    60
	const TInt iY;
sl@0
    61
private:
sl@0
    62
	TBlitInfo& operator =(TBlitInfo & aBlitInfo);
sl@0
    63
	};
sl@0
    64
sl@0
    65
class TPixelInfo
sl@0
    66
	{
sl@0
    67
public:
sl@0
    68
	inline TPixelInfo(const TInt aX, const TInt aY, const TColour aColour);
sl@0
    69
	inline TPixelInfo();
sl@0
    70
public:
sl@0
    71
	const TColour iColour;
sl@0
    72
	const TInt iX;
sl@0
    73
	const TInt iY;
sl@0
    74
private:
sl@0
    75
	TPixelInfo& operator =(TPixelInfo & aPixelInfo);
sl@0
    76
	};
sl@0
    77
sl@0
    78
struct TPixelLine
sl@0
    79
	{
sl@0
    80
	TDes8* iPixels;
sl@0
    81
	TInt iNoOfPixels;
sl@0
    82
	};
sl@0
    83
sl@0
    84
class RDeviceVideo : public RBusLogicalChannel
sl@0
    85
	{
sl@0
    86
public:
sl@0
    87
	enum TVer {EMajorVersionNumber=1,EMinorVersionNumber=0,EBuildVersionNumber=KE32BuildVersionNumber};
sl@0
    88
	enum TControl {EControlStart,EControlMode,EControlSetMode,EControlCaps,EControlSetPaletteEntry,
sl@0
    89
		EControlBlit,EControlSetPixel,EControlGetPixel,EControlSetWord,EControlGetWord,
sl@0
    90
		EControlSetLine,EControlGetLine,EControlScrollUp,EControlClear};
sl@0
    91
public:
sl@0
    92
	inline TInt Open();
sl@0
    93
	inline void Start();
sl@0
    94
	inline TVersion VersionRequired() const;
sl@0
    95
	inline void Caps(TDes8 &aCaps);
sl@0
    96
	inline void SetPaletteEntry(TInt aIndex,TUint aEntry);
sl@0
    97
	inline void Blit(TDes8 &aBlitInfo);
sl@0
    98
	inline void SetPixel(TDes8 &aPixelInfo);
sl@0
    99
	inline TInt SetMode(TVideoMode aMode);
sl@0
   100
	inline void Mode(TVideoMode *aMode);
sl@0
   101
	inline void ScrollUp(const TRect& aRect);
sl@0
   102
	inline void Clear(const TRect& aRect);
sl@0
   103
	inline TInt GetPixel(const TPoint& aPoint);
sl@0
   104
	inline void SetWord(const TPoint& aPoint,TInt& aWord);
sl@0
   105
	inline TInt GetWord(const TPoint &aPoint);
sl@0
   106
	inline void SetLine(const TPoint& aPoint,const TPixelLine& aPixelLine);
sl@0
   107
	inline void GetLine(const TPoint& aPoint,TPixelLine& aPixelLine);
sl@0
   108
	};
sl@0
   109
#include "d32video.inl"
sl@0
   110
#endif
sl@0
   111