os/graphics/windowing/windowserver/debuglog/osbwin.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) 2005-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 __OSBWIN_H__
sl@0
    17
#define __OSBWIN_H__
sl@0
    18
sl@0
    19
/**
sl@0
    20
@file
sl@0
    21
@internalComponent
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include <gdi.h>
sl@0
    25
sl@0
    26
struct TWin32Info;
sl@0
    27
class CPalette;
sl@0
    28
sl@0
    29
NONSHARABLE_CLASS(CDebugOsbWin): public CBase
sl@0
    30
	{
sl@0
    31
public:
sl@0
    32
	IMPORT_C static CDebugOsbWin* NewL(const TDesC& aName, TSize aSize);
sl@0
    33
	IMPORT_C void Refresh(TSize aSize, TDisplayMode aDisplayMode, const TUint32* aDataAddress);
sl@0
    34
	IMPORT_C ~CDebugOsbWin();
sl@0
    35
public:	
sl@0
    36
	static TInt iId;	
sl@0
    37
private:
sl@0
    38
	static TInt ThreadMain(TAny* aArg);
sl@0
    39
	CDebugOsbWin(const TDesC& aName, TSize aSize);
sl@0
    40
	void ConstructL();
sl@0
    41
	void Copy2Bpp(const TUint32* aDataAddress);
sl@0
    42
	void Copy8Bpp(const TUint32* aDataAddress);
sl@0
    43
	void Copy12Bpp(const TUint32* aDataAddress);
sl@0
    44
	void Copy16Bpp(const TUint32* aDataAddress);
sl@0
    45
	void Copy24Bpp(const TUint32* aDataAddress);
sl@0
    46
	void CopyU24Bpp(const TUint32* aDataAddress);
sl@0
    47
private:
sl@0
    48
	RThread iThread;
sl@0
    49
	TBool iThreadCreated;
sl@0
    50
	TSize iSize;
sl@0
    51
	TBuf<32> iName;
sl@0
    52
	RSemaphore iSem;
sl@0
    53
	TWin32Info* iWin32;
sl@0
    54
	TUint8* iBitmapBits;
sl@0
    55
	CPalette* iPalette;
sl@0
    56
	TInt iHExtra;
sl@0
    57
	TInt iVExtra;
sl@0
    58
	};
sl@0
    59
sl@0
    60
#endif
sl@0
    61
sl@0
    62